HomeSort by relevance Sort by last modified time
    Searched defs:head (Results 351 - 375 of 815) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
pb_bufmgr_slab.c 65 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, &mgr->slabs)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_rast_debug.c 95 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->next
    [all...]
lp_scene.h 80 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/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_mm.c 36 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);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
native_helper.c 61 unsigned int head; member in struct:resource_surface
324 screen->fence_reference(screen, &rsurf->swap_fences[rsurf->head++],
326 rsurf->head &= EGL_SWAP_FENCES_MASK;
  /external/chromium_org/third_party/mesa/src/src/glsl/
list.h 28 * 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/chromium_org/third_party/mesa/src/src/glx/
dri_common.c 357 struct glx_config head, *tail, *m; local
359 tail = &head;
360 head.next = NULL;
372 return head.next;
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_ctx.c 102 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/chromium_org/third_party/openssl/openssl/crypto/evp/
e_aes_cbc_hmac_sha1.c 78 SHA_CTX head,tail,md; member in struct:__anon15546
129 SHA1_Init(&key->head); /* handy when benchmarking */
130 key->tail = key->head;
131 key->md = key->head;
290 key->md = key->head;
467 SHA1_Init(&key->head);
468 SHA1_Update(&key->head,ptr,arg);
469 SHA1_Final(hmac_key,&key->head);
476 SHA1_Init(&key->head);
477 SHA1_Update(&key->head,hmac_key,sizeof(hmac_key))
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
thread_cache.cc 231 void *tail, *head; local
232 src->PopRange(batch_size, &head, &tail);
233 Static::central_cache()[cl].InsertRange(head, tail, batch_size);
236 void *tail, *head; local
237 src->PopRange(N, &head, &tail);
238 Static::central_cache()[cl].InsertRange(head, tail, N);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
thread_cache.cc 225 void *tail, *head; local
226 src->PopRange(batch_size, &head, &tail);
227 Static::central_cache()[cl].InsertRange(head, tail, batch_size);
230 void *tail, *head; local
231 src->PopRange(N, &head, &tail);
232 Static::central_cache()[cl].InsertRange(head, tail, N);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-dbgfmt.c 193 dwarf2_head *head; local
196 head = yasm_xmalloc(sizeof(dwarf2_head));
197 head->start_prevbc = yasm_section_bcs_last(sect);
199 bc = yasm_bc_create_common(&dwarf2_head_bc_callback, head, 0);
205 head->debug_ptr = debug_ptr;
208 head->debug_ptr = NULL;
210 head->with_address = with_address;
211 head->with_segment = with_segment;
217 head->end_prevbc = bc;
219 return head;
257 dwarf2_head *head = (dwarf2_head *)bc->contents; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
dfa.h 85 State *head, **tail; member in struct:DFA
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-bind.cpp 59 template<typename Head, typename... Tail>
60 class tuple<Head, Tail...> : private tuple<Tail...> {
68 tuple(typename add_const_reference<Head>::type v,
74 : m_head(other.head()), inherited(other.tail()) { }
78 m_head = other.head();
83 typename add_reference<Head>::type head() { return m_head; } function in class:tuple
84 typename add_reference<const Head>::type head() const { return m_head; } function in class:tuple
89 Head m_head
    [all...]
example-tuple.cpp 59 template<typename Head, typename... Tail>
60 class tuple<Head, Tail...> : private tuple<Tail...> {
68 tuple(typename add_const_reference<Head>::type v,
74 : m_head(other.head()), inherited(other.tail()) { }
78 m_head = other.head();
83 typename add_reference<Head>::type head() { return m_head; } function in class:tuple
84 typename add_reference<const Head>::type head() const { return m_head; } function in class:tuple
89 Head m_head
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_java.cc 32 SyncVar *head; member in struct:__tsan::BlockDesc
36 , head() {
45 SyncVar *s = head;
129 SyncVar *s = b->head;
139 s->next = b->head;
140 b->head = s;
245 d->head = s->head;
246 for (SyncVar *sync = d->head; sync; sync = sync->next) {
251 s->head = 0
    [all...]
  /external/e2fsprogs/lib/blkid/
tag.c 102 * We return the head tag for this tag type.
106 blkid_tag head = NULL, tmp; local
116 printf(" found cache tag head %s\n", type));
117 head = tmp;
121 return head;
132 blkid_tag t = 0, head = 0; local
177 head = blkid_find_head_cache(dev->bid_cache,
179 if (!head) {
180 head = blkid_new_tag();
181 if (!head)
332 blkid_tag head; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
dosio.h 32 unsigned short head; member in struct:__anon19246
  /external/eigen/Eigen/src/OrderingMethods/
Amd.h 64 Index cs_tdfs(Index j, Index k, Index *head, const Index *next, Index *post, Index *stack)
67 if(!head || !next || !post || !stack) return (-1); /* check inputs */
72 i = head[p]; /* i = youngest child of p */
80 head[p] = next[i]; /* remove i from children of p */
117 Index* head = W + 3*(n+1); local
134 head[i] = -1; // degree list i is empty
169 if(head[d] != -1) last[head[d]] = i;
170 next[i] = head[d]; /* put node i in degree list d */
171 head[d] = i
    [all...]
  /external/freetype/include/freetype/
fttypes.h 565 FT_ListNode head; member in struct:FT_ListRec_
    [all...]
  /external/freetype/src/base/
ftrfork.c 57 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[7] )
    [all...]
  /external/fsck_msdos/
dosfs.h 91 cl_t head; /* pointer to start of chain */ member in struct:fatEntry
128 cl_t head; /* cluster no */ member in struct:dosDirEntry
  /external/grub/stage2/
bios.c 106 int head;
111 head = sector / geometry->sectors;
112 head_offset = head % geometry->heads;
113 cylinder_offset = head / geometry->heads;
104 int head; local