Home
last modified time | relevance | path

Searched defs:tail (Results 1 – 5 of 5) sorted by relevance

/bionic/libc/kernel/common/linux/
Dcirc_buf.h25 int tail; 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
Dskbuff.h162 *tail, member
/bionic/libc/bionic/
Dmalloc_debug_check.c128 static struct hdr *tail; 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()
Dfts.c547 FTSENT *cur, *tail; in fts_build() local
/bionic/libc/regex/
Dengine.c299 char *tail; /* string unmatched by rest of RE */ in dissect() local