HomeSort by relevance Sort by last modified time
    Searched defs:head (Results 576 - 600 of 818) sorted by null

<<21222324252627282930>>

  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 108 final IItem head = (IItem) m_queue.removeFirst (); local
110 head.accept (this, null);
    [all...]
  /bionic/libc/kernel/common/linux/
fd.h 27 head, member in struct:floppy_struct
62 unsigned int device,head,track; member in struct:format_descr
  /development/ndk/platforms/android-3/include/linux/
fd.h 21 head, member in struct:floppy_struct
58 unsigned int device,head,track; member in struct:format_descr
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 184 * @return The head of the list, which may have changed.
187 MultistepExprHolder head,
193 return head;
198 return head;
201 MultistepExprHolder meh = head;
261 return head;
292 protected ElemTemplateElement findCommonAncestor(MultistepExprHolder head)
295 int numExprs = head.getLength();
304 MultistepExprHolder next = head;
350 if(areEqual && isNotSameAsOwner(head, first) && first.canAcceptVariables()
602 MultistepExprHolder head = null; local
    [all...]
  /external/blktrace/btt/
globals.h 70 struct list_head head; member in struct:io_list
101 struct list_head head; /* on: qranges OR cranges */ member in struct:range_info
227 struct list_head *head);
output.c 325 struct seek_mode_info *head; member in struct:o_seek_info
333 while ((this = sip->head) != NULL) {
334 sip->head = this->next;
372 for (smip = sip->head; smip; smip = smip->next) {
381 new->next = sip->head;
382 sip->head = new;
804 rip = list_entry(p, struct range_info, head);
  /external/chromium_org/chrome/utility/importer/
ie_importer_win.cc 97 size_t head = 0; local
101 if (head >= idlist_size || !BinaryRead(&id_cb, offset + head, blob))
105 head += id_cb;
  /external/chromium_org/chrome_frame/test/
chrome_frame_test_utils.cc 555 size_t head = lower.find("<head>"); local
556 if (head == std::string::npos) {
557 // Add missing head section.
560 head = html + strlen("<html>");
561 html_data->insert(head, "<head></head>");
567 if (head != std::string::npos) {
569 head + strlen("<head>")
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/xray/
xray.c 74 int head; member in struct:XRayTraceFrame
489 capture->frame.head = 0;
521 return capture->frame.head;
560 int head = capture->frame.head; local
561 int index = XRayFrameGetPrev(capture, head);
565 if (capture->frame.head == capture->frame.tail)
566 return capture->frame.head;
568 while (index != head) {
594 i = capture->frame.head;
    [all...]
  /external/chromium_org/net/spdy/
spdy_test_util_common.cc 311 std::string head = "fakesignature"; local
315 signature->insert(signature->end(), head.begin(), head.end());
725 return ConstructHeaderBlock("HEAD", url, &content_length);
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-open-type-private.hh 375 this->head = this->start;
395 (int) (this->head - this->start),
404 unsigned int len = this->head - this->start;
414 if (unlikely (this->ran_out_of_room || this->end - this->head < ptrdiff_t (size))) {
418 memset (this->head, 0, size);
419 char *ret = this->head;
420 this->head += size;
433 Type *ret = reinterpret_cast<Type *> (this->head);
451 assert (this->start <= (char *) &obj && (char *) &obj <= this->head && (char *) &obj + size >= this->head);
472 char *start, *end, *head; member in struct:OT::hb_serialize_context_t
503 const Type *head; member in struct:OT::Supplier
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_mipmap_tree.c 852 struct intel_resolve_map *head = &mt->hiz_map; local
855 head->next = malloc(sizeof(*head->next));
856 head->next->prev = head;
857 head->next->next = NULL;
858 head = head->next;
860 head->level = level;
861 head->layer = layer
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
attrib.c 186 * Insert it into the linked list named by 'head'.
189 save_attrib_data(struct gl_attrib_node **head,
196 /* insert at head */
197 n->next = *head;
198 *head = n;
209 struct gl_attrib_node *head; local
224 head = NULL;
230 save_attrib_data(&head, GL_ACCUM_BUFFER_BIT, attr);
241 save_attrib_data(&head, GL_COLOR_BUFFER_BIT, attr);
249 save_attrib_data(&head, GL_CURRENT_BIT, attr)
1506 struct gl_attrib_node *head; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
ssl_ciph.c 705 static void ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr,
709 if (curr == *head)
710 *head=curr->next;
721 static void ll_append_head(CIPHER_ORDER **head, CIPHER_ORDER *curr,
724 if (curr == *head) return;
731 (*head)->prev=curr;
732 curr->next= *head;
734 *head=curr;
897 CIPHER_ORDER *head)
911 ciph_curr = head;
969 CIPHER_ORDER *head, *tail, *curr, *curr2, *last; local
1403 CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-symline.c 245 static void cv8_set_symhead_end(cv8_symhead *head, yasm_bytecode *end_prevbc);
561 cv8_symhead *head; local
582 head = cv8_add_symhead(info.debug_symline, CV8_FILE_STRTAB, 1);
597 cv8_set_symhead_end(head, yasm_section_bcs_last(info.debug_symline));
607 head = cv8_add_symhead(info.debug_symline, CV8_FILE_INFO, 0);
616 cv8_set_symhead_end(head, yasm_section_bcs_last(info.debug_symline));
626 head = cv8_add_symhead(info.debug_symline, CV8_LINE_NUMS, 0);
630 cv8_set_symhead_end(head, yasm_section_bcs_last(info.debug_symline));
636 head = cv8_add_symhead(info.debug_symline, CV8_DEBUG_SYMS, 0);
642 yasm__xstrdup("yasm HEAD"));
682 cv8_symhead *head; local
735 cv8_symhead *head = (cv8_symhead *)bc->contents; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-line.c 696 dwarf2_head *head; local
715 head = yasm_dwarf2__add_head(dbgfmt_dwarf2, info.debug_line, NULL, 0, 0);
748 yasm_dwarf2__set_head_end(head, yasm_section_bcs_last(info.debug_line));
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 748 typedef T1 head; typedef in struct:clang::ast_matchers::internal::TypeList
750 /// \brief A sub list with the tail. ie everything but the head.
759 static const bool value = llvm::is_base_of<head, T>::value ||
    [all...]
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 375 this->head = this->start;
395 (int) (this->head - this->start),
404 unsigned int len = this->head - this->start;
414 if (unlikely (this->ran_out_of_room || this->end - this->head < ptrdiff_t (size))) {
418 memset (this->head, 0, size);
419 char *ret = this->head;
420 this->head += size;
433 Type *ret = reinterpret_cast<Type *> (this->head);
451 assert (this->start <= (char *) &obj && (char *) &obj <= this->head && (char *) &obj + size >= this->head);
472 char *start, *end, *head; member in struct:OT::hb_serialize_context_t
503 const Type *head; member in struct:OT::Supplier
    [all...]
  /external/ipsec-tools/src/racoon/
racoonctl.c 402 struct admin_com *head; local
404 buf = vmalloc(sizeof(*head));
408 head = (struct admin_com *)buf->v;
409 head->ac_len = buf->l;
410 head->ac_cmd = ADMIN_RELOAD_CONF;
411 head->ac_errno = 0;
412 head->ac_proto = 0;
423 struct admin_com *head; local
441 buf = vmalloc(sizeof(*head));
445 head = (struct admin_com *)buf->v
460 struct admin_com *head; local
481 struct admin_com *head; local
510 struct admin_com *head; local
539 struct admin_com *head; local
594 struct admin_com *head; local
649 struct admin_com *head; local
835 struct admin_com *head; local
    [all...]
  /external/javassist/src/main/javassist/bytecode/
SignatureAttribute.java 109 int head = 0; local
135 newdesc.append(desc.substring(head, j));
139 head = i;
143 if (head == 0)
147 if (head < len)
148 newdesc.append(desc.substring(head, len));
  /external/jpeg/
jdmarker.c 1260 unsigned char *head; local
    [all...]
  /external/kernel-headers/original/linux/
fd.h 16 head, /* nr of heads */ member in struct:floppy_struct
33 spec1, /* stepping rate, head unload time */
67 unsigned int device,head,track; member in struct:format_descr
123 /* Spec2 is (HLD<<1 | ND), where HLD is head load time (1=2ms, 2=4 ms
127 unsigned long hlt; /* Head load/settle time, msec */
128 unsigned long hut; /* Head unload time (remnant of
  /external/libpcap/
gencode.h 242 struct block *head; member in struct:block
  /external/linux-tools-perf/util/
header.c 133 #define dsos__for_each_with_build_id(pos, head) \
134 list_for_each_entry(pos, head, node) \
139 static int __dsos__write_buildid_table(struct list_head *head, pid_t pid,
144 dsos__for_each_with_build_id(pos, head) {
326 static int __dsos__cache_build_ids(struct list_head *head, const char *debugdir)
331 dsos__for_each_with_build_id(pos, head)
678 struct list_head *head; local
693 head = &machine->kernel_dsos;
697 head = &machine->kernel_dsos;
702 head = &machine->user_dsos
    [all...]
session.c 500 struct list_head *head = &os->samples; local
510 list_for_each_entry_safe(iter, tmp, head, list) {
526 if (list_empty(head)) {
530 list_entry(head->prev, struct sample_queue, list);
916 u64 head; local
922 head = 0;
957 (skip = perf_session__process_event(self, &event, ops, head)) < 0) {
959 head, event.header.size, event.header.type);
964 if (unlikely(head & 7))
965 head &= ~7ULL
1013 u64 head, page_offset, file_offset, file_pos, progress_next; local
    [all...]

Completed in 475 milliseconds

<<21222324252627282930>>