HomeSort by relevance Sort by last modified time
    Searched refs:HEAD (Results 1 - 25 of 51) sorted by null

1 2 3

  /dalvik/vm/mterp/x86-atom/
OP_INVOKE_OBJECT_INIT_RANGE.S 26 <<<<<<< HEAD:vm/mterp/x86-atom/OP_INVOKE_OBJECT_INIT_RANGE.S
  /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/apache-xml/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/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/
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/srec/tools/test_swiarb/
test_swiarb.c 45 #define printf_vector(HEAD, FMT, PTR, NN) { unsigned int iI; printf(HEAD); for(iI=0;iI<(NN);iI++) printf(FMT, PTR[iI]); printf("\n"); }
  /external/dhcpcd/mk/
dist.mk 4 GITREF?= HEAD
  /sdk/eclipse/buildConfig/
build.properties 169 mapsCheckoutTag=HEAD
183 # For example fetchTag=CVS=HEAD, SVN=v20050101
184 # fetchTag=HEAD
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Tag.java 23 public static final Tag HEAD = new TagImpl ("HEAD");
  /external/chromium/chrome/common/net/
url_fetcher.h 67 HEAD,
url_fetcher.cc 295 // Some servers may treat HEAD requests as GET requests. To free up the
299 if (request_->status().is_success() && (request_type_ != HEAD))
342 // See comments re: HEAD requests in OnResponseStarted().
343 if (!request_->status().is_io_pending() || (request_type_ == HEAD)) {
399 case HEAD:
400 request_->set_method("HEAD");
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLElement01.js 80 Retrieve the id attribute of the HEAD element and examine its value.
99 nodeList = doc.getElementsByTagName("head");
104 assertEquals("idLink","Test-HEAD",vid);
HTMLElement117.js 80 Retrieve the class attribute of the HEAD element and examine its value.
99 nodeList = doc.getElementsByTagName("head");
104 assertEquals("classNameLink","HEAD-class",vclassname);
HTMLElement30.js 80 Retrieve the title attribute of the HEAD element and examine its value.
99 nodeList = doc.getElementsByTagName("head");
104 assertEquals("titleLink","HEAD Element",vtitle);
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLElement01.js 80 Retrieve the id attribute of the HEAD element and examine its value.
99 nodeList = doc.getElementsByTagName("head");
104 assertEquals("idLink","Test-HEAD",vid);
HTMLElement117.js 80 Retrieve the class attribute of the HEAD element and examine its value.
99 nodeList = doc.getElementsByTagName("head");
104 assertEquals("classNameLink","HEAD-class",vclassname);
HTMLElement30.js 80 Retrieve the title attribute of the HEAD element and examine its value.
99 nodeList = doc.getElementsByTagName("head");
104 assertEquals("titleLink","HEAD Element",vtitle);
  /external/chromium/chrome/browser/
alternate_nav_url_fetcher.cc 62 URLFetcher::HEAD, this));
intranet_redirect_detector.cc 83 URLFetcher* fetcher = new URLFetcher(random_url, URLFetcher::HEAD, this);
  /libcore/luni/src/main/java/java/net/
HttpURLConnection.java 223 * Other HTTP methods ({@code OPTIONS}, {@code HEAD}, {@code PUT}, {@code
259 HttpEngine.HEAD,
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
basic-block.h 33 /* Head of register set linked list. */
46 #define INIT_REG_SET(HEAD) bitmap_initialize (HEAD, &reg_obstack)
49 #define CLEAR_REG_SET(HEAD) bitmap_clear (HEAD)
74 #define CLEAR_REGNO_REG_SET(HEAD, REG) bitmap_clear_bit (HEAD, REG)
77 #define SET_REGNO_REG_SET(HEAD, REG) bitmap_set_bit (HEAD, REG)
385 These are always the head and tail of the basic block list. *
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
basic-block.h 33 /* Head of register set linked list. */
46 #define INIT_REG_SET(HEAD) bitmap_initialize (HEAD, &reg_obstack)
49 #define CLEAR_REG_SET(HEAD) bitmap_clear (HEAD)
74 #define CLEAR_REGNO_REG_SET(HEAD, REG) bitmap_clear_bit (HEAD, REG)
77 #define SET_REGNO_REG_SET(HEAD, REG) bitmap_set_bit (HEAD, REG)
385 These are always the head and tail of the basic block list. *
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
basic-block.h 33 /* Head of register set linked list. */
46 #define INIT_REG_SET(HEAD) bitmap_initialize (HEAD, &reg_obstack)
49 #define CLEAR_REG_SET(HEAD) bitmap_clear (HEAD)
74 #define CLEAR_REGNO_REG_SET(HEAD, REG) bitmap_clear_bit (HEAD, REG)
77 #define SET_REGNO_REG_SET(HEAD, REG) bitmap_set_bit (HEAD, REG)
385 These are always the head and tail of the basic block list. *
    [all...]
  /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/blktrace/
Makefile 65 git-tar-tree HEAD btrace-1.0 > btrace-1.0.tar

Completed in 2096 milliseconds

1 2 3