Home
last modified time | relevance | path

Searched defs:head (Results 1 – 13 of 13) sorted by relevance

/bionic/libc/include/sys/
Dqueue.h89 #define LIST_HEAD_INITIALIZER(head) \ argument
101 #define LIST_INIT(head) do { \ argument
120 #define LIST_INSERT_HEAD(head, elm, field) do { \ argument
134 #define LIST_FOREACH(var, head, field) \ argument
142 #define LIST_EMPTY(head) ((head)->lh_first == NULL) argument
143 #define LIST_FIRST(head) ((head)->lh_first) argument
155 #define SLIST_HEAD_INITIALIZER(head) \ argument
166 #define SLIST_INIT(head) do { \ argument
175 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
180 #define SLIST_REMOVE_HEAD(head, field) do { \ argument
[all …]
/bionic/libc/kernel/common/linux/
Dcirc_buf.h17 int head; member
21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1)) argument
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size)) argument
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & (… argument
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail… argument
Dplist.h31 #define PLIST_HEAD_INIT(head, _lock) { .prio_list = LIST_HEAD_INIT((head).prio_list), .node_li… argument
35 #define plist_for_each(pos, head) list_for_each_entry(pos, &(head)->node_list, plist.node_list) argument
37 #define plist_for_each_safe(pos, n, head) list_for_each_entry_safe(pos, n, &(head)->node_list, pl… argument
39 #define plist_for_each_entry(pos, head, mem) list_for_each_entry(pos, &(head)->node_list, mem.pli… argument
41 #define plist_for_each_entry_safe(pos, n, head, m) list_for_each_entry_safe(pos, n, &(head)->node… argument
43 #define plist_first_entry(head, type, member) container_of(plist_first(head), type, member) argument
Dnotifier.h26 struct notifier_block *head; member
31 struct notifier_block *head; member
35 struct notifier_block *head; member
Dgenhd.h44 unsigned char head; member
Dfd.h21 head, member
58 unsigned int device,head,track; member
Dskbuff.h158 unsigned char *head, member
/bionic/libc/bionic/
Dfts.c546 FTSENT *p, *head; in fts_build() local
859 fts_sort(FTS *sp, FTSENT *head, int nitems) in fts_sort()
925 fts_lfree(FTSENT *head) in fts_lfree()
975 fts_padjust(FTS *sp, FTSENT *head) in fts_padjust()
Dmalloc_debug_common.c165 uint8_t* head = *info; in get_malloc_leak_info() local
Ddlmalloc.c1712 size_t head; /* Size and inuse bits. */ member
1918 size_t head; member
2763 tchunkptr head = 0; in do_check_tree() local
/bionic/libc/kernel/common/linux/sunrpc/
Dsched.h83 #define task_for_each(task, pos, head) list_for_each(pos, head) if ((task=list_entry(pos, struc… argument
85 #define task_for_first(task, head) if (!list_empty(head) && ((task=list_entry((head)->next, str… argument
87 #define alltask_for_each(task, pos, head) list_for_each(pos, head) if ((task=list_entry(pos, st… argument
/bionic/libc/kernel/common/linux/mtd/
Dnftl.h38 int head,sect,cyl; member
/bionic/libc/kernel/common/linux/raid/
Dmd_k.h174 #define ITERATE_RDEV_GENERIC(head,rdev,tmp) for ((tmp) = (head).next; (rdev) = (list_entry((t… argument