Home
last modified time | relevance | path

Searched defs:tail (Results 1 – 25 of 326) sorted by relevance

12345678910>>...14

/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/RISCV/
Dtail-call-invalid.s4 tail 1234 # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label
5 tail %pcrel_hi(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label
6 tail %pcrel_lo(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label
7 tail %pcrel_hi(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label
8 tail %pcrel_lo(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label
9 tail %hi(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label
10 tail %lo(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label
11 tail %hi(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label
12 tail %lo(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label
Dtail-call.s17 tail foo label
22 tail bar label
31 tail zero label
37 tail f1 label
43 tail ra label
/external/mesa3d/src/compiler/nir/
Dnir_worklist.c111 unsigned tail = (w->start + w->count - 1) % w->size; in nir_block_worklist_push_tail() local
122 unsigned tail = (w->start + w->count - 1) % w->size; in nir_block_worklist_peek_tail() local
132 unsigned tail = (w->start + w->count - 1) % w->size; in nir_block_worklist_pop_tail() local
Dnir_lower_indirect_derefs.c73 nir_deref_var *deref, nir_deref *tail, in emit_load_store()
127 for (nir_deref *tail = deref->deref.child; tail; tail = tail->child) { in deref_has_indirect() local
Dnir_lower_locals_to_regs.c105 nir_deref *tail = &deref->deref; in get_reg_for_deref() local
143 nir_deref *tail = &deref->deref; in get_deref_reg_src() local
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
DListSubListTester.java224 List<E> tail = list.subList(1, size); in testSubList_get() local
248 List<E> tail = list.subList(1, size); in testSubList_contains() local
266 List<E> tail = list.subList(1, size); in testSubList_indexOf() local
292 List<E> tail = list.subList(1, size); in testSubList_lastIndexOf() local
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DListSubListTester.java228 List<E> tail = list.subList(1, size); in testSubList_get() local
252 List<E> tail = list.subList(1, size); in testSubList_contains() local
270 List<E> tail = list.subList(1, size); in testSubList_indexOf() local
296 List<E> tail = list.subList(1, size); in testSubList_lastIndexOf() local
/external/iproute2/tc/
Dq_dsmark.c31 struct rtattr *tail; in dsmark_parse_opt() local
90 struct rtattr *tail; in dsmark_parse_class_opt() local
Dq_gred.c51 struct rtattr *tail; in init_gred() local
130 struct rtattr *tail; in gred_parse_opt() local
Dq_htb.c70 struct rtattr *tail; in htb_parse_opt() local
123 struct rtattr *tail; in htb_parse_class_opt() local
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dp2.cpp13 void recurse_until_fail(const Head &, const Tail &...tail) { // expected-note{{candidate function t… in recurse_until_fail()
/external/brotli/c/enc/
Dcompress_fragment_two_pass.c123 const uint32_t tail = insertlen - 2; in EmitInsertLen() local
130 const uint32_t tail = insertlen - 66; in EmitInsertLen() local
152 const size_t tail = copylen - 6; in EmitCopyLen() local
159 const size_t tail = copylen - 70; in EmitCopyLen() local
177 const size_t tail = copylen - 8; in EmitCopyLenLastDistance() local
185 const size_t tail = copylen - 8; in EmitCopyLenLastDistance() local
193 const size_t tail = copylen - 72; in EmitCopyLenLastDistance() local
Dcompress_fragment.c188 const size_t tail = insertlen - 2; in EmitInsertLen() local
196 const size_t tail = insertlen - 66; in EmitInsertLen() local
237 const size_t tail = copylen - 6; in EmitCopyLen() local
245 const size_t tail = copylen - 70; in EmitCopyLen() local
268 const size_t tail = copylen - 8; in EmitCopyLenLastDistance() local
276 const size_t tail = copylen - 8; in EmitCopyLenLastDistance() local
284 const size_t tail = copylen - 72; in EmitCopyLenLastDistance() local
/external/e2fsprogs/contrib/android/
Dbase_fs.h11 struct block_range *tail; member
/external/u-boot/fs/jffs2/
Dmergesort.c15 struct b_node *p, *q, *e, **tail; in sort_list() local
/external/grpc-grpc/test/core/slice/
Dslice_test.cc168 grpc_slice tail) { in check_head_tail()
179 grpc_slice head, tail; in test_slice_split_head_works() local
207 grpc_slice head, tail; in test_slice_split_tail_works() local
/external/u-boot/include/
Dmembuff.h36 char *tail; /** current buffer tail */ member
Dcircbuf.h15 char *tail; /* pointer to space for next element */ member
/external/jemalloc_new/include/jemalloc/internal/
Dhash.h102 const uint8_t *tail = (const uint8_t *) (data + nblocks*4); in hash_x86_32() local
173 const uint8_t *tail = (const uint8_t *) (data + nblocks*16); in hash_x86_128() local
258 const uint8_t *tail = (const uint8_t*)(data + nblocks*16); in hash_x64_128() local
/external/python/cpython2/Modules/_sqlite/
Dstatement.c56 const char* tail; in pysqlite_statement_create() local
333 const char* tail; in pysqlite_statement_recompile() local
440 static int pysqlite_check_remaining_sql(const char* tail) in pysqlite_check_remaining_sql()
/external/jemalloc/include/jemalloc/internal/
Dhash.h135 const uint8_t *tail = (const uint8_t *) (data + nblocks*4); in hash_x86_32() local
207 const uint8_t *tail = (const uint8_t *) (data + nblocks*16); in hash_x86_128() local
293 const uint8_t *tail = (const uint8_t*)(data + nblocks*16); in hash_x64_128() local
/external/antlr/runtime/ObjC/Framework/
DUnbufferedCommonTreeNodeStream.h56 NSUInteger tail; variable
/external/selinux/checkpolicy/
Dqueue.h26 queue_node_ptr_t tail; member
/external/libaom/libaom/aom_dsp/
Dgrain_table.h49 aom_film_grain_table_entry_t *tail; member
/external/curl/lib/
Dllist.h38 struct curl_llist_element *tail; member

12345678910>>...14