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

  /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)
39 #define HEAD(list) ((list).head)
41 #define EMPTY(list) ((list).head == NULL)
46 if ((list).head != NULL) \
47 (list).head->link.prev = (elt); \
51 (elt)->link.next = (list).head; \
52 (list).head = (elt); \
61 (list).head = (elt);
    [all...]
  /src/common/dist/zlib/examples/
gznorm.c 98 enum { // BETWEEN -> HEAD -> BLOCK -> TAIL -> BETWEEN -> ...
100 HEAD, // reading a gzip header
175 state = HEAD;
176 // Fall through to HEAD when some or all of the header is
179 case HEAD:
gzlog.c 316 #define HEAD sizeof(log_gzhead) /* should be 16 */
318 /* initial gzip extra field content (52 == HEAD + EXTRA + 1) */
413 unsigned char buf[HEAD + EXTRA];
416 read(log->fd, buf, HEAD + EXTRA) != HEAD + EXTRA ||
417 memcmp(buf, log_gzhead, HEAD)) {
420 log->first = PULL8(buf + HEAD);
421 log->last = PULL8(buf + HEAD + 8);
422 log->ccrc = PULL4(buf + HEAD + 16);
423 log->clen = PULL4(buf + HEAD + 20)
    [all...]
  /src/games/worm/
worm.c 59 #define HEAD '@'
74 static struct body *head, *tail, goody; variable in typeref:struct:body *
176 head = newlink();
177 head->x = start_len % (COLS-5) + 2;
178 head->y = LINES / 2;
179 head->next = NULL;
180 display(head, HEAD);
181 for (i = 0, bp = head; i < start_len; i++, bp = np) {
268 x = head->x
    [all...]
  /src/common/dist/zlib/
inflate.h 21 HEAD = 16180, /* i: waiting for magic header */
61 HEAD -> (gzip) or (zlib) or (raw)
94 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state

Completed in 54 milliseconds