Searched defs:head (Results 176 - 200 of 455) sorted by relevance

1234567891011>>

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devlist.h171 int head = pc->data_head; local
173 return head;
/external/llvm/include/llvm/ADT/
H A DImmutableList.h31 ImmutableListImpl(const T& head, const ImmutableListImpl* tail = 0) argument
32 : Head(head), Tail(tail) {}
94 /// begin - Returns an iterator referring to the head of the list, or
122 /// getHead - Returns the head of the list.
124 assert (!isEmpty() && "Cannot get the head of an empty list.");
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_bufmgr_cache.c70 struct list_head head; member in struct:pb_cache_buffer
112 LIST_DEL(&buf->head);
122 * Free as many cache buffers from the list head as possible.
136 buf = LIST_ENTRY(struct pb_cache_buffer, curr, head);
162 LIST_ADDTAIL(&buf->head, &mgr->delayed);
280 curr_buf = LIST_ENTRY(struct pb_cache_buffer, curr, head);
297 curr_buf = LIST_ENTRY(struct pb_cache_buffer, curr, head);
312 LIST_DEL(&buf->head);
367 buf = LIST_ENTRY(struct pb_cache_buffer, curr, head);
H A Dpb_bufmgr_debug.c84 struct list_head head; member in struct:pb_debug_buffer
239 LIST_DEL(&buf->head);
351 buf = LIST_ENTRY(struct pb_debug_buffer, curr, head);
424 LIST_ADDTAIL(&buf->head, &mgr->list);
H A Dpb_bufmgr_pool.c90 struct list_head head; member in struct:pool_buffer
114 LIST_ADD(&pool_buf->head, &pool->free);
220 pool_buf = LIST_ENTRY(struct pool_buffer, item, head);
307 LIST_ADDTAIL(&pool_buf->head, &pool->free);
H A Dpb_bufmgr_slab.c65 struct list_head head; member in struct:pb_slab_buffer
83 struct list_head head; member in struct:pb_slab
200 struct list_head *list = &buf->head;
212 if (slab->head.next == &slab->head)
213 LIST_ADDTAIL(&slab->head, &mgr->slabs);
217 list = &slab->head;
337 LIST_INITHEAD(&slab->head);
354 LIST_ADDTAIL(&buf->head, &slab->freeBuffers);
360 LIST_ADDTAIL(&slab->head,
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast_debug.c95 const struct cmd_block *head = bin->head; local
100 while (head) {
101 for (i = 0; i < head->count; i++, j++) {
102 if (head->cmd[i] == LP_RAST_OP_SET_STATE)
103 state = head->arg[i].state;
106 cmd_name(head->cmd[i]),
107 is_blend(state, head, i) ? "blended" : "");
109 head = head
[all...]
H A Dlp_scene.h80 struct cmd_block *head; member in struct:cmd_block_list
99 struct cmd_block *head; member in struct:cmd_bin
116 struct data_block *head; member in struct:data_block_list
206 struct data_block *block = list->head;
240 struct data_block *block = list->head;
271 assert(list->head && list->head->used >= size);
272 list->head->used -= size;
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_mm.c36 struct list_head head; member in struct:mm_slab
138 LIST_INITHEAD(&slab->head);
144 LIST_ADD(&slab->head, &mm_bucket_by_order(cache, chunk_order)->free);
178 slab = LIST_ENTRY(struct mm_slab, bucket->used.next, head);
183 slab = LIST_ENTRY(struct mm_slab, bucket->free.next, head);
185 LIST_DEL(&slab->head);
186 LIST_ADD(&slab->head, &bucket->used);
198 LIST_DEL(&slab->head);
199 LIST_ADD(&slab->head, &bucket->full);
218 LIST_DEL(&slab->head);
260 nouveau_mm_free_slabs(struct list_head *head) argument
[all...]
/external/mesa3d/src/glsl/
H A Dlist.h28 * Each doubly-linked list has a sentinel head and tail node. These nodes
29 * contain no data. The head sentinel can be identified by its \c prev
33 * A list is empty if either the head sentinel's \c next pointer points to the
34 * tail sentinel or the tail sentinel's \c prev poiner points to the head
43 * - A \c head pointer that represents the \c next pointer of the
44 * head sentinel node.
45 * - A \c tail pointer that represents the \c prev pointer of the head
51 * Therefore, if \c head->next is \c NULL or \c tail_prev->prev is \c NULL,
191 * Is this the sentinel at the head of the list?
283 struct exec_node *head; member in struct:exec_list
[all...]
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_dma.c455 void *head; local
488 head = (rmesa->swtcl.bo->ptr + rmesa->dma.current_vertexptr);
491 return head;
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_dma.c455 void *head; local
488 head = (rmesa->swtcl.bo->ptr + rmesa->dma.current_vertexptr);
491 return head;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DRequest.java303 public Builder head() { method in class:Request.Builder
/external/okhttp/okio/src/main/java/okio/
H A DOkBuffer.java48 Segment head; field in class:OkBuffer
130 Segment tail = head.prev;
141 Segment segment = head;
150 head = segment.pop();
162 for (Segment s = head; true; s = s.next) {
172 Segment segment = head;
189 head = segment.pop();
201 Segment segment = head;
221 head = segment.pop();
233 Segment segment = head;
[all...]
/external/openssl/crypto/bn/
H A Dbn_ctx.c102 BN_POOL_ITEM *head, *current, *tail; member in struct:bignum_pool
159 BN_POOL_ITEM *item = ctx->pool.head;
237 BN_POOL_ITEM *pool = ctx->pool.head;
362 p->head = p->current = p->tail = NULL;
368 while(p->head)
371 BIGNUM *bn = p->head->vals;
377 p->current = p->head->next;
378 OPENSSL_free(p->head);
379 p->head = p->current;
386 BN_POOL_ITEM *item = p->head;
[all...]
/external/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c78 SHA_CTX head,tail,md; member in struct:__anon28290
129 SHA1_Init(&key->head); /* handy when benchmarking */
130 key->tail = key->head;
131 key->md = key->head;
290 key->md = key->head;
468 SHA1_Init(&key->head);
469 SHA1_Update(&key->head,ptr,arg);
470 SHA1_Final(hmac_key,&key->head);
477 SHA1_Init(&key->head);
478 SHA1_Update(&key->head,hmac_ke
[all...]
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dfttypes.h559 /* head :: The head (first element) of doubly-linked list. */
565 FT_ListNode head; member in struct:FT_ListRec_
573 #define FT_IS_EMPTY( list ) ( (list).head == 0 )
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dfttypes.h559 /* head :: The head (first element) of doubly-linked list. */
565 FT_ListNode head; member in struct:FT_ListRec_
573 #define FT_IS_EMPTY( list ) ( (list).head == 0 )
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftrfork.c57 unsigned char head[16], head2[16]; local
69 error = FT_Stream_Read( stream, (FT_Byte *)head, 16 );
73 *rdata_pos = rfork_offset + ( ( head[0] << 24 ) |
74 ( head[1] << 16 ) |
75 ( head[2] << 8 ) |
76 head[3] );
77 map_pos = rfork_offset + ( ( head[4] << 24 ) |
78 ( head[5] << 16 ) |
79 ( head[6] << 8 ) |
80 head[
[all...]
/external/qemu/android/
H A Dcmdline-option.c170 ParamList** head = (ParamList**)field; local
177 pl->next = *head;
178 *head = pl;
215 ParamList** head = (ParamList**)((char*)opt + oo->var_offset); local
217 ParamList* cur = *head;
225 *head = prev;
/external/qemu/distrib/mini-glib/include/
H A Dglib.h163 GQueueNode* head; member in struct:_GQueue
/external/qemu/distrib/sdl-1.2.15/src/events/
H A DSDL_events.c45 int head; member in struct:__anon29405
221 SDL_EventQ.head = 0;
270 if ( tail == SDL_EventQ.head ) {
293 if ( spot == SDL_EventQ.head ) {
294 SDL_EventQ.head = (SDL_EventQ.head+1)%MAXEVENTS;
295 return(SDL_EventQ.head);
345 spot = SDL_EventQ.head;
/external/qemu/slirp/
H A Dsocket.c27 solookup(struct socket *head, struct in_addr laddr, u_int lport, argument
32 for (so = head->so_next; so != head; so = so->so_next) {
40 if (so == head)
/external/qemu/slirp-android/
H A Dsocket.c32 solookup(struct socket *head, uint32_t laddr, u_int lport, argument
37 for (so = head->so_next; so != head; so = so->so_next) {
45 if (so == head)
/external/sfntly/cpp/src/sfntly/
H A Dtag.cc28 const int32_t Tag::head = TAG('h', 'e', 'a', 'd'); member in class:sfntly::Tag
75 Tag::head,
87 Tag::head,

Completed in 7846 milliseconds

1234567891011>>