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

  /bionic/libc/private/isc/
list.h 24 #define LIST(type) struct { type *head, *tail; }
26 do { (list).head = NULL; (list).tail = NULL; } while (/*CONSTCOND*/0)
39 #define TAIL(list) ((list).tail)
48 (list).tail = (elt); \
57 if ((list).tail != NULL) \
58 (list).tail->link.next = (elt); \
61 (elt)->link.prev = (list).tail; \
63 (list).tail = (elt); \
72 (list).tail = (elt)->link.prev;
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 753 Code = UnOpInit::TAIL;
771 || Code == UnOpInit::TAIL
790 || Code == UnOpInit::TAIL) {
    [all...]
Record.cpp 810 case TAIL: {
865 case TAIL: Result = "!tail"; break;
    [all...]
  /external/bluetooth/glib/tests/
queue-test.c 27 g_assert (!queue->tail);
28 if (!queue->tail)
40 g_assert (last == queue->tail);
44 for (list = queue->tail; list != NULL; list = list->prev)
58 for (list = queue->tail; list != NULL; list = list->prev)
66 for (list = queue->tail; list != NULL; list = list->prev)
155 enum { OFF_QUEUE, HEAD, TAIL, MIDDLE, LAST } where;
172 case TAIL:
220 GList *tail; member in struct:QueueInfo
238 queues[i].tail = NULL
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h     [all...]

Completed in 76 milliseconds