HomeSort by: relevance | last modified time | path
    Searched defs:TAIL (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/include/xray/
xray_interface.h 27 TAIL = 2,
  /src/lib/libc/include/isc/
list.h 24 #define LIST(type) struct { type *head, *tail; }
26 do { (list).head = NULL; (list).tail = NULL; } while (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...]
  /src/common/dist/zlib/examples/
gznorm.c 98 enum { // BETWEEN -> HEAD -> BLOCK -> TAIL -> BETWEEN -> ...
102 TAIL // reading a gzip trailer
123 size_t tail; // number of trailer bytes read (0..8) local in function:gzip_normalize
348 // Don't need to set prev here since going to TAIL.
378 tail = 0;
380 state = TAIL;
384 case TAIL:
389 tail++;
390 if (tail == 4) {
398 else if (tail == 8)
    [all...]

Completed in 39 milliseconds