/external/llvm/test/CodeGen/Mips/ |
dsp-r1.ll | 7 %1 = tail call i32 @llvm.mips.extr.w(i64 %a0, i32 15) 17 %1 = tail call i32 @llvm.mips.extr.w(i64 %a0, i32 %a1) 25 %1 = tail call i32 @llvm.mips.extr.r.w(i64 %a0, i32 15) 35 %1 = tail call i32 @llvm.mips.extr.s.h(i64 %a0, i32 %a1) 45 %1 = tail call i32 @llvm.mips.extr.rs.w(i64 %a0, i32 15) 55 %1 = tail call i32 @llvm.mips.extr.rs.w(i64 %a0, i32 %a1) 63 %1 = tail call i32 @llvm.mips.extr.s.h(i64 %a0, i32 15) 71 %1 = tail call i32 @llvm.mips.extr.r.w(i64 %a0, i32 %a1) 79 %1 = tail call i32 @llvm.mips.extp(i64 %a0, i32 15) 89 %1 = tail call i32 @llvm.mips.extp(i64 %a0, i32 %a1 [all...] |
brind.ll | 12 %puts = tail call i32 @puts(i8* getelementptr inbounds ([2 x i8]* @str, i32 0, i32 0)) 17 %puts5 = tail call i32 @puts(i8* getelementptr inbounds ([2 x i8]* @str5, i32 0, i32 0)) 22 %puts6 = tail call i32 @puts(i8* getelementptr inbounds ([2 x i8]* @str6, i32 0, i32 0)) 27 %puts7 = tail call i32 @puts(i8* getelementptr inbounds ([2 x i8]* @str7, i32 0, i32 0)) 34 %puts8 = tail call i32 @puts(i8* getelementptr inbounds ([2 x i8]* @str8, i32 0, i32 0))
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/ |
ORAddressTest.java | 40 String tail = Integer.toHexString(0x000000ff & data[i]); local 41 if (tail.length() == 1) { 42 tail = "0" + tail; 44 System.out.print(prefix + "0x" + tail + delimiter);
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
TestUtils.java | 51 String tail = Integer.toHexString(0x000000ff & data[i]); local 52 if (tail.length() == 1) { 53 tail = "0" + tail; 55 System.out.print(prefix + "0x" + tail + delimiter);
|
/external/chromium_org/media/formats/common/ |
offset_byte_queue.h | 33 // if the current offset is beyond tail(), but you will of course get back 43 // Returns false if |max_offset| > tail() (although all bytes currently 47 // The head and tail positions, in terms of the file's absolute offsets. 48 // tail() is an exclusive bound. 50 int64 tail() { return head_ + size_; } function in class:media::OffsetByteQueue
|
offset_byte_queue_unittest.cc | 36 EXPECT_EQ(512, queue_->tail()); 52 EXPECT_EQ(queue_->tail() - 400, size); 64 EXPECT_EQ(512, queue_->tail()); 68 EXPECT_EQ(512, queue_->tail()); 73 EXPECT_EQ(queue_->tail() - 400, size);
|
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/sqlite/src/test/ |
memleak.test | 67 set tail [file tail $testfile] 68 if {[lsearch -exact $EXCLUDE $tail]>=0} continue 77 puts -nonewline memory-leak-test-$tail... 82 fail_test memory-leak-test-$tail
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/ |
p9-0x.cpp | 7 template<unsigned N, typename Head, typename ...Tail> 8 struct get_nth_type<N, Head, Tail...> : get_nth_type<N-1, Tail...> { }; 10 template<typename Head, typename ...Tail> 11 struct get_nth_type<0, Head, Tail...> {
|
/external/llvm/test/CodeGen/AArch64/ |
arm64-big-endian-eh.ll | 26 %2 = tail call i8* @__cxa_begin_catch(i8* %1) #2 31 tail call void @__cxa_end_catch() 50 tail call void @__clang_call_terminate(i8* %5) #3 64 %2 = tail call i8* @__cxa_begin_catch(i8* %0) #2 65 tail call void @_ZSt9terminatev() #3
|
arm64-fcopysign.ll | 10 %0 = tail call float @copysignf(float %x, float %y) nounwind readnone 20 %0 = tail call double @copysign(double %x, double %y) nounwind readnone 32 %tmp = tail call double @copysign( double %a, double %tmp2 ) nounwind readnone 42 %0 = tail call double (...)* @bar() nounwind 44 %2 = tail call float @copysignf(float 5.000000e-01, float %1) nounwind readnone
|
f16-convert.ll | 10 %tmp1 = tail call float @llvm.convert.from.fp16(i16 %tmp) 21 %tmp1 = tail call float @llvm.convert.from.fp16(i16 %tmp) 35 %tmp1 = tail call float @llvm.convert.from.fp16(i16 %tmp) 48 %tmp1 = tail call float @llvm.convert.from.fp16(i16 %tmp) 61 %tmp1 = tail call float @llvm.convert.from.fp16(i16 %tmp) 73 %tmp1 = tail call float @llvm.convert.from.fp16(i16 %tmp) 86 %tmp1 = tail call float @llvm.convert.from.fp16(i16 %tmp) 98 %tmp1 = tail call float @llvm.convert.from.fp16(i16 %tmp) 111 %tmp1 = tail call float @llvm.convert.from.fp16(i16 %tmp) 123 %tmp1 = tail call float @llvm.convert.from.fp16(i16 %tmp [all...] |
/external/llvm/test/CodeGen/ARM/ |
big-endian-eh-unwind.ll | 26 %2 = tail call i8* @__cxa_begin_catch(i8* %1) #2 31 tail call void @__cxa_end_catch() 50 tail call void @__clang_call_terminate(i8* %5) #3 64 %2 = tail call i8* @__cxa_begin_catch(i8* %0) #2 65 tail call void @_ZSt9terminatev() #3
|
fcopysign.ll | 14 %0 = tail call float @copysignf(float %x, float %y) nounwind readnone 28 %0 = tail call double @copysign(double %x, double %y) nounwind readnone 39 %1 = tail call double @copysign(double %0, double %z) nounwind readnone 51 %0 = tail call double (...)* @bar() nounwind 53 %2 = tail call float @copysignf(float 5.000000e-01, float %1) nounwind readnone
|
/external/llvm/test/CodeGen/PowerPC/ |
copysignl.ll | 7 %call = tail call ppc_fp128 @copysignl(ppc_fp128 %a, ppc_fp128 %b) #0 21 %call = tail call double @copysign(double %a, double %conv) #0 34 %call = tail call ppc_fp128 @copysignl(ppc_fp128 %conv, ppc_fp128 %b) #0 46 %call = tail call ppc_fp128 @copysignl(ppc_fp128 %conv, ppc_fp128 %conv1) #0 58 %call = tail call ppc_fp128 @copysignl(ppc_fp128 %conv, ppc_fp128 %conv1) #0
|
ppc64-calls.ll | 16 tail call void @foo() nounwind 26 tail call void @foo_weak() nounwind 35 tail call void %fp() nounwind 50 tail call void inttoptr (i64 1024 to void ()*)() nounwind 65 %call = tail call double @sin(double %x) nounwind
|
/external/llvm/test/CodeGen/X86/ |
peep-test-4.ll | 17 tail call void @foo(i32 %sub) 35 tail call void @foo(i32 %ashr) 53 tail call void @foo(i32 %ashr) 71 tail call void @foo(i32 %ashr) 89 tail call void @foo(i32 %shl) 107 tail call void @foo(i32 %shl) 149 tail call void @foo(i32 %andn) 163 %bextr = tail call i32 @llvm.x86.bmi.bextr.32(i32 %x, i32 %y) 168 tail call void @foo(i32 %bextr) 182 %popcnt = tail call i32 @llvm.ctpop.i32(i32 %x [all...] |
sibcall-5.ll | 15 %0 = tail call double @sin(double %a) nounwind readonly 26 %0 = tail call float @sinf(float %a) nounwind readonly 51 %3 = tail call { double, double } bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to { double, double } (i8*, i8*)*)(i8* %2, i8* %1) optsize 54 %6 = tail call double @floor(double %4) optsize 55 %7 = tail call double @floor(double %5) optsize
|
/external/llvm/test/MC/ARM/ |
elf-reloc-02.ll | 32 %0 = tail call i32 (...)* @write(i32 1, i8* getelementptr inbounds ([7 x i8]* @.str, i32 0, i32 0), i32 6) nounwind 33 %1 = tail call i32 (...)* @write(i32 1, i8* getelementptr inbounds ([8 x i8]* @.str1, i32 0, i32 0), i32 7) nounwind 34 %2 = tail call i32 (...)* @write(i32 1, i8* getelementptr inbounds ([13 x i8]* @.str2, i32 0, i32 0), i32 12) nounwind 35 %3 = tail call i32 (...)* @write(i32 1, i8* getelementptr inbounds ([7 x i8]* @.str3, i32 0, i32 0), i32 6) nounwind 36 tail call void @exit(i32 55) noreturn nounwind
|
/external/llvm/test/Transforms/DeadStoreElimination/ |
free.ll | 16 tail call void @free(i8* %1) 28 tail call void @free(i8* %1) 50 %alloc1 = tail call noalias i8* @malloc(i64 4) nounwind 58 tail call void @free(i8* %alloc1) nounwind 67 tail call void @free(i8* undef) nounwind
|
pr11390.ll | 9 %call = tail call i64 @strlen(i8* %name) nounwind readonly 10 %call1 = tail call i64 @strlen(i8* %domain) nounwind readonly 14 %call4 = tail call noalias i8* @malloc(i64 %add3) nounwind 20 tail call void @llvm.memcpy.p0i8.p0i8.i64(i8* %call4, i8* %name, i64 %call, i32 1, i1 false) 25 tail call void @llvm.memcpy.p0i8.p0i8.i64(i8* %add.ptr5, i8* %domain, i64 %call1, i32 1, i1 false)
|
/external/llvm/test/Transforms/InstCombine/ |
invoke.ll | 19 %0 = tail call i64 @llvm.objectsize.i64(i8* %call, i1 false) 26 tail call void @__cxa_call_unexpected(i8* %2) noreturn nounwind 39 %0 = tail call i64 @llvm.objectsize.i64(i8* %call, i1 false) 46 tail call void @__cxa_call_unexpected(i8* %2) noreturn nounwind 63 tail call void @__cxa_call_unexpected(i8* %2) noreturn nounwind
|
/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];
|
/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);
|
/bionic/libc/upstream-netbsd/lib/libc/include/isc/ |
list.h | 24 #define LIST(type) struct { type *head, *tail; } 26 do { (list).head = NULL; (list).tail = NULL; } while (/*CONSTCOND*/0) 40 #define TAIL(list) ((list).tail) 49 (list).tail = (elt); \ 58 if ((list).tail != NULL) \ 59 (list).tail->link.next = (elt); \ 62 (elt)->link.prev = (list).tail; \ 64 (list).tail = (elt); \ 73 INSIST((list).tail == (elt)); [all...] |