HomeSort by relevance Sort by last modified time
    Searched defs:HEAD (Results 1 - 10 of 10) 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)
38 #define HEAD(list) ((list).head)
40 #define EMPTY(list) ((list).head == NULL)
45 if ((list).head != NULL) \
46 (list).head->link.prev = (elt); \
50 (elt)->link.next = (list).head; \
51 (list).head = (elt); \
60 (list).head = (elt);
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Tag.java 23 public static final Tag HEAD = new TagImpl ("HEAD");
  /libcore/luni/src/main/java/org/apache/xml/serializer/
ElemDesc.java 95 /** Bit position if this element type is a head element (i.e. H1, H2, etc.) */
96 static final int HEAD = (1 << 18);
107 /** Bit position if this element type is a header element (i.e. HEAD). */
  /external/chromium/third_party/zlib/
inflate.h 21 HEAD, /* i: waiting for magic header */
59 HEAD -> (gzip) or (zlib)
86 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 21 HEAD, /* i: waiting for magic header */
59 HEAD -> (gzip) or (zlib)
86 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
  /external/zlib/examples/
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...]
  /external/zlib/
inflate.h 21 HEAD, /* i: waiting for magic header */
61 HEAD -> (gzip) or (zlib) or (raw)
90 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
  /external/bluetooth/glib/tests/
queue-test.c 26 if (!queue->head)
29 g_assert (!queue->head);
33 for (list = queue->head; list != NULL; list = list->next)
51 g_assert (last == queue->head);
54 for (list = queue->head; list != NULL; list = list->next)
70 for (list = queue->head; list != NULL; list = list->next)
155 enum { OFF_QUEUE, HEAD, TAIL, MIDDLE, LAST } where;
160 where = g_random_int_range (HEAD, LAST);
168 case HEAD:
221 GList *head; member in struct:QueueInfo
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HttpURLConnectionImpl.java 74 public static final String HEAD = "HEAD";
95 HEAD,
417 if (connected && method != HEAD && responseCode >= HTTP_BAD_REQUEST) {
700 if (method != HEAD
    [all...]
  /external/emma/lib/
emma.jar 

Completed in 120 milliseconds