Home
last modified time | relevance | path

Searched defs:head (Results 1 – 14 of 14) 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.h24 int head; member
27 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1)) argument
29 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size)) argument
30 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & (… argument
31 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail… argument
Dplist.h36 #define PLIST_HEAD_INIT(head, _lock) { .prio_list = LIST_HEAD_INIT((head).prio_list), .node_li… argument
39 #define plist_for_each(pos, head) list_for_each_entry(pos, &(head)->node_list, plist.node_list) argument
40 #define plist_for_each_safe(pos, n, head) list_for_each_entry_safe(pos, n, &(head)->node_list, pl… argument
41 #define plist_for_each_entry(pos, head, mem) list_for_each_entry(pos, &(head)->node_list, mem.pli… argument
42 #define plist_for_each_entry_safe(pos, n, head, m) list_for_each_entry_safe(pos, n, &(head)->node… argument
44 #define plist_first_entry(head, type, member) container_of(plist_first(head), type, member) argument
Dnotifier.h34 struct notifier_block *head; member
39 struct notifier_block *head; member
42 struct notifier_block *head; member
Dgenhd.h49 unsigned char head; member
Dfd.h27 head, member
62 unsigned int device,head,track; member
Dskbuff.h160 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_check.c129 static struct hdr *head; variable
204 static inline void add_locked(struct hdr *hdr, struct hdr **tail, struct hdr **head) in add_locked()
215 static inline int del_locked(struct hdr *hdr, struct hdr **tail, struct hdr **head) in del_locked()
334 struct hdr **tail, struct hdr **head, unsigned *cnt, in del_and_check_locked()
Dmalloc_debug_common.c165 uint8_t* head = *info; in get_malloc_leak_info() local
Ddlmalloc.c1728 size_t head; /* Size and inuse bits. */ member
1934 size_t head; member
2804 tchunkptr head = 0; in do_check_tree() local
/bionic/libc/kernel/common/linux/sunrpc/
Dsched.h94 #define task_for_each(task, pos, head) list_for_each(pos, head) if ((task=list_entry(pos, struc… argument
95 #define task_for_first(task, head) if (!list_empty(head) && ((task=list_entry((head)->next, str… argument
96 #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.h46 int head,sect,cyl; member
/bionic/libc/kernel/common/linux/raid/
Dmd_k.h199 #define ITERATE_RDEV_GENERIC(head,rdev,tmp) for ((tmp) = (head).next; (rdev) = (list_entry((t… argument