Searched defs:head (Results 1 - 25 of 455) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Ddisable-tail-calls.c9 List *find(List *head, int data) { argument
10 if (!head)
12 if (head->data == data)
13 return head;
15 return find(head->next, data);
H A D2008-08-07-AlignPadding1.c16 PyGC_Head head; member in struct:gc_generation
21 #define GEN_HEAD(n) (&generations[n].head)
H A Dunion-init.c16 PyGC_Head head; member in struct:gc_generation
23 #define GEN_HEAD(n) (&generations[n].head)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dmemory_pool.h38 unsigned char * head; member in struct:memory_pool
/external/icu/icu4c/source/layout/
H A DLEInsertionList.h143 * The head of the insertion list.
147 InsertionRecord *head; member in class:LEInsertionList
/external/ipsec-tools/src/racoon/
H A Dlogger.h38 int head; member in struct:log
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dmemory_pool.h38 unsigned char * head; member in struct:memory_pool
/external/chromium_org/media/formats/common/
H A Doffset_byte_queue.h17 // of many different meanings of "offset", "head", etc.
32 // It is an error if the offset is before the current head. It's not an error
42 // including the case where |max_offset| is less than the current head.
47 // The head and tail positions, in terms of the file's absolute offsets.
49 int64 head() { return head_; } function in class:media::OffsetByteQueue
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Du_execmem.c44 static unsigned int head = 0; variable
132 if (head + size > EXEC_MAP_SIZE)
136 addr = exec_mem + head;
137 head += size;
/external/mesa3d/src/mapi/mapi/
H A Du_execmem.c44 static unsigned int head = 0; variable
132 if (head + size > EXEC_MAP_SIZE)
136 addr = exec_mem + head;
137 head += size;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRUnbufferedCommonTreeNodeStream.h55 NSUInteger head; variable
71 @property (assign, getter=getHead, setter=setHead:) NSUInteger head; variable
H A DFastQueue.h68 public T head() { return get(0); } function in class:FastQueue
/external/blktrace/btt/
H A Ddevmap.c25 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/checkpolicy/
H A Dqueue.h25 queue_node_ptr_t head; member in struct:queue_info
/external/chromium_org/content/public/common/
H A Dresource_response.h45 ResourceResponseHead head; member in struct:content::ResourceResponse
/external/chromium_org/sandbox/linux/bpf_dsl/
H A Dcons.h22 // Return this node's head element.
23 const T& head() const { return head_; } function in class:sandbox::Cons
28 // Construct a new List using |head| and |tail|.
29 static List Make(const T& head, List tail) { argument
30 return make_scoped_refptr(new const Cons<T>(head, tail));
34 Cons(const T& head, List tail) : head_(head), tail_(tail) {} argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeScopeTest.cpp52 RefPtrWillBeRawPtr<Element> head = document->createElement("head", nullAtom, ASSERT_NO_EXCEPTION); local
53 html->appendChild(head);
57 RefPtrWillBeRawPtr<ShadowRoot> shadowRootA = head->createShadowRoot(ASSERT_NO_EXCEPTION);
75 RefPtrWillBeRawPtr<Element> head = document->createElement("head", nullAtom, ASSERT_NO_EXCEPTION); local
76 html->appendChild(head);
80 RefPtrWillBeRawPtr<ShadowRoot> shadowRootY = head->createShadowRoot(ASSERT_NO_EXCEPTION);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_fifo.h33 size_t head; member in struct:util_fifo
45 fifo->head = 0;
60 if (++fifo->head >= fifo->size)
61 fifo->head = 0;
63 array[fifo->head] = ptr;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_resolve_map.c36 intel_resolve_map_set(struct intel_resolve_map *head, argument
41 struct intel_resolve_map **tail = &head->next;
42 struct intel_resolve_map *prev = head;
66 intel_resolve_map_get(struct intel_resolve_map *head, argument
70 struct intel_resolve_map *item = head->next;
99 intel_resolve_map_clear(struct intel_resolve_map *head) argument
101 struct intel_resolve_map *next = head->next;
110 head->next = NULL;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_resolve_map.c36 intel_resolve_map_set(struct intel_resolve_map *head, argument
41 struct intel_resolve_map **tail = &head->next;
42 struct intel_resolve_map *prev = head;
66 intel_resolve_map_get(struct intel_resolve_map *head, argument
70 struct intel_resolve_map *item = head->next;
99 intel_resolve_map_clear(struct intel_resolve_map *head) argument
101 struct intel_resolve_map *next = head->next;
110 head->next = NULL;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_resolve_map.c36 intel_resolve_map_set(struct intel_resolve_map *head, argument
41 struct intel_resolve_map **tail = &head->next;
42 struct intel_resolve_map *prev = head;
66 intel_resolve_map_get(struct intel_resolve_map *head, argument
70 struct intel_resolve_map *item = head->next;
99 intel_resolve_map_clear(struct intel_resolve_map *head) argument
101 struct intel_resolve_map *next = head->next;
110 head->next = NULL;
/external/chromium_org/third_party/ots/src/
H A Dloca.cc7 #include "head.h"
24 if (!file->maxp || !file->head) {
33 if (file->head->index_to_loc_format == 0) {
71 const OpenTypeHEAD *head = file->head; local
73 if (!head) {
77 if (head->index_to_loc_format == 0) {
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dfree_list.cc56 // empty list, the new list head becomes that which is pointed to by
57 // the former head's |next| pointer. If the list is doubly linked, the
58 // new head |previous| pointer gets changed from pointing to the former
59 // head to NULL.
71 // |*head|. |head| will be modified to point to the new head.
73 // to the last node in the range. |n| must be <= FL_Size(|*head|)
74 // If |n| > 0, |head| must not be NULL.
75 void FL_PopRange(void **head, in argument
99 FL_PushRange(void **head, void *start, void *end) argument
119 FL_Size(void *head) argument
[all...]
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_peeloff.c35 __FBSDID("$FreeBSD: head/sys/netinet/sctp_peeloff.c 269858 2014-08-12 11:30:16Z tuexen $");
55 sctp_can_peel_off(struct socket *head, sctp_assoc_t assoc_id) argument
61 if (head == NULL) {
65 inp = (struct sctp_inpcb *)head->so_pcb;
93 sctp_do_peeloff(struct socket *head, struct socket *so, sctp_assoc_t assoc_id) argument
99 inp = (struct sctp_inpcb *)head->so_pcb;
176 sctp_get_peeloff(struct socket *head, sctp_assoc_t assoc_id, int *error) argument
191 inp = (struct sctp_inpcb *)head->so_pcb;
206 CURVNET_SET(head->so_vnet);
208 newso = sonewconn(head, SS_ISCONNECTE
[all...]
/external/clang/test/Modules/Inputs/
H A Dtemplates-top.h8 node *head; member in class:List

Completed in 5035 milliseconds

1234567891011>>