Home
last modified time | relevance | path

Searched refs:head (Results 1 – 25 of 31) sorted by relevance

12

/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/sys/
H A Dqueue.h89 #define LIST_HEAD_INITIALIZER(head) \ argument
101 #define LIST_INIT(head) do { \ argument
102 (head)->lh_first = NULL; \
120 #define LIST_INSERT_HEAD(head, elm, field) do { \ argument
121 if (((elm)->field.le_next = (head)->lh_first) != NULL) \
122 (head)->lh_first->field.le_prev = &(elm)->field.le_next;\
123 (head)->lh_first = (elm); \
124 (elm)->field.le_prev = &(head)->lh_first; \
134 #define LIST_FOREACH(var, head, field) \ argument
135 for ((var) = ((head)->lh_first); \
[all …]
/utopia/UTPA2-700.0.x/projects/tools/lint/aeon_include/sys/
H A Dqueue.h114 #define SLIST_HEAD_INITIALIZER(head) \ argument
125 #define SLIST_EMPTY(head) ((head)->slh_first == NULL) argument
127 #define SLIST_FIRST(head) ((head)->slh_first) argument
129 #define SLIST_FOREACH(var, head, field) \ argument
130 for ((var) = SLIST_FIRST((head)); \
134 #define SLIST_INIT(head) do { \ argument
135 SLIST_FIRST((head)) = NULL; \
143 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
144 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
145 SLIST_FIRST((head)) = (elm); \
[all …]
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/include/
H A DdrvList.h95 struct list_head *head) in __list_splice() argument
99 struct list_head *at = head->next; in __list_splice()
101 first->prev = head; in __list_splice()
102 head->next = first; in __list_splice()
108 static __inline__ void list_splice(struct list_head *list, struct list_head *head) in list_splice() argument
111 __list_splice(list, head); in list_splice()
115 struct list_head *head) in list_splice_init() argument
118 __list_splice(list, head); in list_splice_init()
129 #define list_for_each_prev(pos, head) \ argument
130 for (pos = (head)->prev, prefetch(pos->prev); pos != (head); \
[all …]
/utopia/UTPA2-700.0.x/modules/msos/msos/ucos/
H A Ddlmalloc.c1647 size_t head; /* Size and inuse bits. */
1715 #define cinuse(p) ((p)->head & CINUSE_BIT)
1716 #define pinuse(p) ((p)->head & PINUSE_BIT)
1717 #define chunksize(p) ((p)->head & ~(INUSE_BITS))
1719 #define clear_pinuse(p) ((p)->head &= ~PINUSE_BIT)
1720 #define clear_cinuse(p) ((p)->head &= ~CINUSE_BIT)
1727 #define next_chunk(p) ((mchunkptr)( ((char*)(p)) + ((p)->head & ~INUSE_BITS)))
1731 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
1739 ((p)->head = (s|PINUSE_BIT), set_foot(p, s))
1746 (!((p)->head & PINUSE_BIT) && ((p)->prev_foot & IS_MMAPPED_BIT))
[all …]
H A Ddlmalloc.h62 size_t head; /* Size and inuse bits. */ member
130 #define cinuse(p) ((p)->head & CINUSE_BIT)
131 #define pinuse(p) ((p)->head & PINUSE_BIT)
132 #define chunksize(p) ((p)->head & ~(INUSE_BITS))
134 #define clear_pinuse(p) ((p)->head &= ~PINUSE_BIT)
135 #define clear_cinuse(p) ((p)->head &= ~CINUSE_BIT)
142 #define next_chunk(p) ((mchunkptr)( ((unsigned long)(p)) + ((p)->head & ~INUSE_BITS)))
146 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
154 ((p)->head = (s|PINUSE_BIT), set_foot(p, s))
161 (!((p)->head & PINUSE_BIT) && ((p)->prev_foot & IS_MMAPPED_BIT))
H A Dmem_priv.h185 struct memdq head; member
301 struct memdq *hdq=&pThis->head; in Cyg_Mempool_Implementation__insert_free_block()
398 struct memdq *hdq = &pThis->head, *dq = (struct memdq *)pThis->bottom; in Cyg_Mempool_Implementation__Create()
432 struct memdq *dq = &pThis->head; in Cyg_Mempool_Implementation__try_alloc()
449 CYG_ASSERT(dq == &pThis->head, "bad free block"); in Cyg_Mempool_Implementation__try_alloc()
673 struct memdq *dq = &pThis->head; in Cyg_Mempool_Implementation__get_status()
680 CYG_ASSERT(dq == &pThis->head, "bad free block"); in Cyg_Mempool_Implementation__get_status()
H A Dmem.h107 struct cyg_mempool_var_memdq head; member
/utopia/UTPA2-700.0.x/modules/msos/msos/linux/
H A Ddlmalloc.c2149 size_t head; /* Size and inuse bits. */ member
2219 #define cinuse(p) ((p)->head & CINUSE_BIT)
2220 #define pinuse(p) ((p)->head & PINUSE_BIT)
2221 #define is_inuse(p) (((p)->head & INUSE_BITS) != PINUSE_BIT)
2222 #define is_mmapped(p) (((p)->head & INUSE_BITS) == 0)
2224 #define chunksize(p) ((p)->head & ~(FLAG_BITS))
2226 #define clear_pinuse(p) ((p)->head &= ~PINUSE_BIT)
2233 #define next_chunk(p) ((mchunkptr)( ((char*)(p)) + ((p)->head & ~FLAG_BITS)))
2237 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
2245 ((p)->head = (s|PINUSE_BIT), set_foot(p, s))
[all …]
H A Dmem_priv.h185 struct memdq head; member
301 struct memdq *hdq=&pThis->head; in Cyg_Mempool_Implementation__insert_free_block()
395 struct memdq *hdq = &pThis->head, *dq = (struct memdq *)pThis->bottom; in Cyg_Mempool_Implementation__Create()
428 struct memdq *dq = &pThis->head; in Cyg_Mempool_Implementation__try_alloc()
445 CYG_ASSERT(dq == &pThis->head, "bad free block"); in Cyg_Mempool_Implementation__try_alloc()
669 struct memdq *dq = &pThis->head; in Cyg_Mempool_Implementation__get_status()
676 CYG_ASSERT(dq == &pThis->head, "bad free block"); in Cyg_Mempool_Implementation__get_status()
H A Dmem.h107 struct cyg_mempool_var_memdq head; member
/utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/
H A Dqconf.cc1013 QString head, debug, help; in menuInfo() local
1018 head += "<big><b>"; in menuInfo()
1019 head += print_filter(_(_menu->prompt->text)); in menuInfo()
1020 head += "</b></big>"; in menuInfo()
1022 head += " ("; in menuInfo()
1024 head += QString().sprintf("<a href=\"s%p\">", sym); in menuInfo()
1025 head += print_filter(sym->name); in menuInfo()
1027 head += "</a>"; in menuInfo()
1028 head += ")"; in menuInfo()
1031 head += "<big><b>"; in menuInfo()
[all …]
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/
H A DdrvEhciHcd.c3560 struct list_head *head, in qh_urb_transaction() argument
3668 list_add_tail (&qtd->qtd_list, head); in qh_urb_transaction()
3786 list_add_tail (&qtd->qtd_list, head); in qh_urb_transaction()
3988 list_add_tail (&qtd->qtd_list, head); in qh_urb_transaction()
4160 list_add_tail (&qtd->qtd_list, head); in qh_urb_transaction()
4267 return head; in qh_urb_transaction()
4271 qtd_list_free (ehci, urb, head); in qh_urb_transaction()
4990 struct ehci_qh *head; in qh_link_async() local
5042 head = ehci->async; in qh_link_async()
5045 if (!head->qh_next.qh) { in qh_link_async()
[all …]
/utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel/
H A Dmem_priv.h185 struct memdq head; member
301 struct memdq *hdq=&pThis->head; in Cyg_Mempool_Implementation__insert_free_block()
399 hdq = &pThis->head; in Cyg_Mempool_Implementation__Create()
434 struct memdq *dq = &pThis->head; in Cyg_Mempool_Implementation__try_alloc()
452 CYG_ASSERT(dq == &pThis->head, "bad free block"); in Cyg_Mempool_Implementation__try_alloc()
679 struct memdq *dq = &pThis->head; in Cyg_Mempool_Implementation__get_status()
686 CYG_ASSERT(dq == &pThis->head, "bad free block"); in Cyg_Mempool_Implementation__get_status()
H A Dmem.h107 struct cyg_mempool_var_memdq head; member
/utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel_V2/
H A Dmem_priv.h186 struct memdq head; member
302 struct memdq *hdq=&pThis->head; in Cyg_Mempool_Implementation__insert_free_block()
400 hdq = &pThis->head; in Cyg_Mempool_Implementation__Create()
435 struct memdq *dq = &pThis->head; in Cyg_Mempool_Implementation__try_alloc()
453 CYG_ASSERT(dq == &pThis->head, "bad free block"); in Cyg_Mempool_Implementation__try_alloc()
680 struct memdq *dq = &pThis->head; in Cyg_Mempool_Implementation__get_status()
687 CYG_ASSERT(dq == &pThis->head, "bad free block"); in Cyg_Mempool_Implementation__get_status()
H A Dmem.h107 struct cyg_mempool_var_memdq head; member
/utopia/UTPA2-700.0.x/projects/build/scripts/
H A Dsetlocalversion46 if test -d .git && head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
65 printf '%s%s' -g $head
71 printf -- '-svn%s' "`git svn find-rev $head`"
H A Dver_linux65 ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \
H A Ddecodecode92 faultline=`cat $T.dis | head -1 | cut -d":" -f2`
/utopia/UTPA2-700.0.x/projects/build/scripts/dtc/
H A Dlivetree.c65 struct property *head = NULL; in reverse_properties() local
70 p->next = head; in reverse_properties()
71 head = p; in reverse_properties()
74 return head; in reverse_properties()
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/
H A DdrvEhciHcd.c3230 struct list_head *head, in ms_qh_urb_transaction_EHSET() argument
3248 ms_insert_list_before (&pQtd->qtd_list, head); in ms_qh_urb_transaction_EHSET()
3268 return head; in ms_qh_urb_transaction_EHSET()
3317 ms_insert_list_before (&pQtd->qtd_list, head); in ms_qh_urb_transaction_EHSET()
3347 ms_insert_list_before (&pQtd->qtd_list, head); in ms_qh_urb_transaction_EHSET()
3357 return head; in ms_qh_urb_transaction_EHSET()
3361 ms_qtd_register_free (ehci, head); in ms_qh_urb_transaction_EHSET()
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/
H A Dfd.h15 head, /* nr of heads */ member
66 unsigned int device,head,track; member
/utopia/UTPA2-700.0.x/modules/gpd/drv/gpd/
H A Dzlib.h747 gz_headerp head));
893 gz_headerp head));
H A Dinflate.h163 gz_headerp head; /* where to save gzip header information */ member
/utopia/UTPA2-700.0.x/projects/tools/lint/aeon_include/
H A Dstdio.h155 int __print_mvreg_V4HI(const char *head, int mvreg);
156 int __print_mvreg_V8QI(const char *head, int mvreg);

12