HomeSort by relevance Sort by last modified time
    Searched full:head (Results 226 - 250 of 3883) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/fsck_msdos/
fat.c 420 clearchain(struct bootblock *boot, struct fatEntry *fat, cl_t head)
424 for (p = head; p >= CLUST_FIRST && p < boot->NumClusters; p = q) {
425 if (fat[p].head != head)
428 fat[p].next = fat[p].head = CLUST_FREE;
434 tryclear(struct bootblock *boot, struct fatEntry *fat, cl_t head, cl_t *trunc)
436 if (ask(1, "Clear chain starting at %u", head)) {
437 clearchain(boot, fat, head);
452 cl_t head, p, h, n; local
460 for (head = CLUST_FIRST; head < boot->NumClusters; head++)
654 cl_t head; local
    [all...]
  /external/kernel-headers/original/asm-arm/
procinfo.h 27 * arch/arm/mm/proc-*.S and arch/arm/kernel/head.S
32 unsigned long __cpu_mm_mmu_flags; /* used by head.S */
33 unsigned long __cpu_io_mmu_flags; /* used by head.S */
34 unsigned long __cpu_flush; /* used by head.S */
  /external/skia/include/core/
SkDeque.h 50 struct Head;
59 SkDeque::Head* fHead;
65 Head* fFront;
66 Head* fBack;
  /hardware/ti/omap3/dspbridge/inc/
list.h 60 #define LST_IsEmpty(l) (((l)->head.next == &(l)->head))
71 struct LST_ELEM head; member in struct:LST_LIST
85 * at the head of the list pointing to the head of the list, itself.
155 * Pops the head off the list and returns a pointer to it.
158 * Else, removes the element at the head of the list, making the next
159 * element the head of the list.
160 * The head is removed by making the tail element of the list point its
161 * "next" pointer at the next element after the head, and by making th
    [all...]
  /hardware/ti/omap3/dspbridge/libbridge/inc/
list.h 60 #define LST_IsEmpty(l) (((l)->head.next == &(l)->head))
71 struct LST_ELEM head; member in struct:LST_LIST
85 * at the head of the list pointing to the head of the list, itself.
155 * Pops the head off the list and returns a pointer to it.
158 * Else, removes the element at the head of the list, making the next
159 * element the head of the list.
160 * The head is removed by making the tail element of the list point its
161 * "next" pointer at the next element after the head, and by making th
    [all...]
  /external/bluetooth/hcidump/parser/
hidp.c 39 static char *type2str(uint8_t head)
41 switch (head & 0xf0) {
67 static char *result2str(uint8_t head)
69 switch (head & 0x0f) {
89 static char *operation2str(uint8_t head)
91 switch (head & 0x0f) {
109 static char *report2str(uint8_t head)
111 switch (head & 0x03) {
125 static char *protocol2str(uint8_t head)
127 switch (head & 0x01)
    [all...]
  /external/blktrace/btt/
devmap.c 25 struct list_head head; member in struct:devmap
44 list_add_tail(&dmp->head, &all_devmaps);
55 struct devmap *dmp = list_entry(p, struct devmap, head);
87 struct devmap *dmp = list_entry(p, struct devmap, head);
89 list_del(&dmp->head);
  /external/srec/seti/sltsEngine/src/
linklist_impl.c 131 if(list->head == NULL){
132 /* if list is empty, assign to head */
133 list->head = newnode;
134 (list->head)->next = NULL;
135 (list->head)->prev = NULL;
138 list->curr = list->head;
139 list->tail = list->head;
160 }else if(list->curr == list->head){
161 /* insert at head */
162 newnode->next = list->head;
    [all...]
  /external/ipsec-tools/src/racoon/
genlist.c 50 genlist_insert (struct genlist *head, void *data)
54 TAILQ_INSERT_HEAD(head, entry, chain);
59 genlist_append (struct genlist *head, void *data)
63 TAILQ_INSERT_TAIL(head, entry, chain);
68 genlist_foreach (struct genlist *head, genlist_func_t func, void *arg)
72 TAILQ_FOREACH(p, head, chain) {
82 genlist_next (struct genlist *head, struct genlist_entry **buf)
86 if (head)
87 p = TAILQ_FIRST(head);
96 genlist_free (struct genlist *head, genlist_freedata_t func
    [all...]
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...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnSentence.java 116 * @param head The top clause of this sentence
119 public WnnSentence(WnnClause head, WnnSentence tail) {
122 this.id = head.id;
123 this.candidate = head.candidate;
124 this.stroke = head.stroke;
125 this.frequency = head.frequency;
126 this.partOfSpeech = head.partOfSpeech;
127 this.attribute = head.attribute;
129 this.elements.add(head);
132 this.id = head.id
    [all...]
  /external/quake/quake/src/QW/progs/
combat.qc 255 local entity head;
258 head = findradius(inflictor.origin, damage+40);
260 while (head)
262 //bprint (PRINT_HIGH, head.classname);
264 //bprint (PRINT_HIGH, head.netname);
267 if (head != ignore)
269 if (head.takedamage)
271 org = head.origin + (head.mins + head.maxs)*0.5;
    [all...]
  /external/opencore/baselibs/gen_data_structures/src/
sorted_list.h 83 if (NULL == head) return 0;
84 iterator = head;
85 element = head->data;
98 if (!head) return 0;
99 iterator = head;
113 SortedListElement<LLClass> *head; member in class:SortedList
126 iterator = head = tail = NULL;
132 while (num_elements && head)
134 tmp = head->next;
135 OSCL_DELETE(head);
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/decoder/
UnboundedFifoByteBuffer.java 58 protected int head; field in class:UnboundedFifoByteBuffer
85 head = 0;
97 if (tail < head) {
98 size = buffer.length - head + tail;
100 size = tail - head;
127 for (int i = head; i != tail;) {
139 head = 0;
162 return buffer[head];
176 byte element = buffer[head];
178 head++;
    [all...]
  /external/oprofile/libabi/
opimport.cpp 110 struct opd_header * head = local
116 memcpy(head->magic, src + abi.need("offsetof_header_magic"), 4);
119 ext.extract(head->version, src, "sizeof_u32", "offsetof_header_version");
120 ext.extract(head->cpu_type, src, "sizeof_u32", "offsetof_header_cpu_type");
121 ext.extract(head->ctr_event, src, "sizeof_u32", "offsetof_header_ctr_event");
122 ext.extract(head->ctr_um, src, "sizeof_u32", "offsetof_header_ctr_um");
123 ext.extract(head->ctr_count, src, "sizeof_u32", "offsetof_header_ctr_count");
124 ext.extract(head->is_kernel, src, "sizeof_u32", "offsetof_header_is_kernel");
126 head->cpu_speed = 0.0;
127 ext.extract(head->mtime, src, "sizeof_time_t", "offsetof_header_mtime")
    [all...]
  /external/webkit/WebCore/platform/
DeprecatedPtrListImpl.cpp 73 head(0),
88 head = copyList(impl.head, tail);
109 for (DeprecatedListNode *node = head; node; node = next) {
116 head = 0;
131 node = head;
150 // inserting at head
151 node->next = head;
152 if (head) {
153 head->prev = node
    [all...]
  /cts/tests/assets/webkit/
embedded_image.html 17 <head>
19 </head>
javascript.html 17 <head>
19 </head>
jsalert.html 17 <head>
19 </head>
jsconfirm.html 17 <head>
19 </head>
jsform.html 17 <head>
19 </head>
jsprompt.html 18 <head>
20 </head>
jsunload.html 17 <head>
19 </head>
jswindow.html 17 <head>
19 </head>
network_state.html 17 <head>
28 </head>

Completed in 49 milliseconds

1 2 3 4 5 6 7 8 91011>>