HomeSort by relevance Sort by last modified time
    Searched defs:tail (Results 51 - 75 of 778) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mesa3d/src/compiler/nir/
nir_worklist.c 111 unsigned tail = (w->start + w->count - 1) % w->size; local
113 w->blocks[tail] = block;
122 unsigned tail = (w->start + w->count - 1) % w->size; local
124 return w->blocks[tail];
132 unsigned tail = (w->start + w->count - 1) % w->size; local
136 BITSET_CLEAR(w->blocks_present, w->blocks[tail]->index);
137 return w->blocks[tail];
  /external/mesa3d/src/gallium/auxiliary/util/
u_fifo.h 34 size_t tail; member in struct:util_fifo
46 fifo->tail = 0;
78 if (++fifo->tail >= fifo->size)
79 fifo->tail = 0;
81 *ptr = array[fifo->tail];
  /external/mesa3d/src/gallium/drivers/swr/
swr_fence.h 45 struct swr_fence_work *tail; member in struct:swr_fence::__anon30154
  /external/mesa3d/src/util/
u_vector.h 47 uint32_t tail; member in struct:u_vector
60 return (queue->head - queue->tail) / queue->element_size;
66 assert(vector->tail < vector->head);
75 return (void *)((char *)vector->data + (vector->tail & (vector->size - 1)));
86 for (uint32_t __u_vector_offset = (queue)->tail; \
  /external/selinux/checkpolicy/
queue.h 26 queue_node_ptr_t tail; member in struct:queue_info
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
SlotIndexes.cpp 136 IndexListEntry *tail = getTail(); local
141 } while (curEntry != tail && curEntry->getIndex() <= index);
  /external/syslinux/core/fs/ntfs/
runlist.h 34 static struct runlist *tail; variable in typeref:struct:runlist
63 tail = n;
65 tail->next = n;
66 tail = n;
  /external/syslinux/core/include/
mbox.h 22 struct semaphore tail_sem; /* Tail pointer semaphore */
25 void **tail; /* Tail pointer */ member in struct:mailbox
  /external/vulkan-validation-layers/loader/
murmurhash.c 46 const uint8_t *tail = NULL; // tail - last 8 bytes local
53 tail = (const uint8_t *)(d + l * 4); // last 8 byte chunk of `key'
76 k ^= (tail[2] << 16);
78 k ^= (tail[1] << 8);
81 k ^= tail[0];
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
queue.c 46 Node *tail; member in struct:Queue
55 q->head = q->tail = NULL;
95 q->tail->next = new_node;
98 q->tail = new_node;
117 q->head = q->tail = NULL;
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
queue.c 44 Node *tail; member in struct:Queue
53 q->head = q->tail = NULL;
90 q->tail->next = new_node;
93 q->tail = new_node;
111 q->head = q->tail = NULL;
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestUtils.java 52 String tail = Integer.toHexString(0x000000ff & data[i]); local
53 if (tail.length() == 1) {
54 tail = "0" + tail;
56 System.out.print(prefix + "0x" + tail + delimiter);
  /prebuilts/go/darwin-x86/src/crypto/aes/
asm_s390x.s 50 CMPBLT R4, $8, tail
59 tail: label
67 BR tail
104 BLT tail
113 tail: label
120 BR tail
  /prebuilts/go/darwin-x86/src/runtime/
memclr_386.s 18 tail: label
64 JMP tail
134 JNE tail
memmove_386.s 40 tail: label
94 JMP tail
129 JMP tail
  /prebuilts/go/linux-x86/src/crypto/aes/
asm_s390x.s 50 CMPBLT R4, $8, tail
59 tail: label
67 BR tail
104 BLT tail
113 tail: label
120 BR tail
  /prebuilts/go/linux-x86/src/runtime/
memclr_386.s 18 tail: label
64 JMP tail
134 JNE tail
memmove_386.s 40 tail: label
94 JMP tail
129 JMP tail
  /art/runtime/base/
scoped_arena_allocator.cc 63 Arena* tail = top_arena_->next_; local
66 top_arena_->next_ = tail;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
SList.h 59 SListNode *head, *tail; member in class:SList
61 SList() {head=tail=NULL;}
62 virtual ~SList() {head=tail=NULL;}
ast.c 258 register AST *child, *sibling=NULL, *tail=NULL /* MR20 */, *w; local
275 if ( sibling == NULL ) {sibling = child; tail = w;}
276 else {tail->right = child; tail = w;}
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
ASTBase.cpp 134 register ASTBase *child, *sibling=NULL, *tail, *w; local
147 if ( sibling == NULL ) {sibling = child; tail = w;}
148 else {tail->_right = child; tail = w;}
SList.h 59 SListNode *head, *tail; member in class:SList
61 SList() {head=tail=NULL;}
62 virtual ~SList() {head=tail=NULL;}
ast.c 258 register AST *child, *sibling=NULL, *tail=NULL /* MR20 */, *w; local
275 if ( sibling == NULL ) {sibling = child; tail = w;}
276 else {tail->right = child; tail = w;}
  /external/clang/test/SemaTemplate/
example-typelist.cpp 7 template<typename Head, typename Tail = nil>
10 typedef Tail tail; typedef in struct:cons
27 template<typename Head, typename Tail>
28 struct length<cons<Head, Tail> > {
29 static const unsigned value = length<Tail>::value + 1;
50 typedef typename reverse<typename T::tail>::type reversed_tail;
52 typedef typename reverse<typename reversed_tail::tail>::type most_of_tail;
83 struct find : find<typename List::tail, T> { };
85 template<typename Tail, typename T
    [all...]

Completed in 1273 milliseconds

1 23 4 5 6 7 8 91011>>