HomeSort by relevance Sort by last modified time
    Searched defs:TAIL (Results 1 - 2 of 2) sorted by null

  /bionic/libc/upstream-netbsd/lib/libc/include/isc/
list.h 24 #define LIST(type) struct { type *head, *tail; }
26 do { (list).head = NULL; (list).tail = NULL; } while (/*CONSTCOND*/0)
40 #define TAIL(list) ((list).tail)
49 (list).tail = (elt); \
58 if ((list).tail != NULL) \
59 (list).tail->link.next = (elt); \
62 (elt)->link.prev = (list).tail; \
64 (list).tail = (elt); \
73 INSIST((list).tail == (elt));
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 884 enum UnaryOp { CAST, HEAD, TAIL, EMPTY };
    [all...]

Completed in 135 milliseconds