/external/libaom/libaom/test/ |
D | lpf_test.cc | 184 uint8_t tmp = GetOuterThresh(&rnd); \ 186 blimit[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, \ 187 tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp }; \ 188 tmp = GetInnerThresh(&rnd); \ 190 limit[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, \ 191 tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp }; \ 192 tmp = GetHevThresh(&rnd); \ 194 thresh[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, \ 195 tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp }; \ 228 uint8_t tmp = GetOuterThresh(&rnd); \ [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/ |
D | GenericListVisitorAdapter.java | 48 List<R> tmp; in visit() local 50 tmp = n.getMembers().accept(this, arg); in visit() 51 if (tmp != null) in visit() 52 result.addAll(tmp); in visit() 55 tmp = n.getModifiers().accept(this, arg); in visit() 56 if (tmp != null) in visit() 57 result.addAll(tmp); in visit() 60 tmp = n.getName().accept(this, arg); in visit() 61 if (tmp != null) in visit() 62 result.addAll(tmp); in visit() [all …]
|
/external/libvpx/libvpx/test/ |
D | lpf_test.cc | 178 uint8_t tmp = GetOuterThresh(&rnd); in TEST_P() local 180 blimit[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, in TEST_P() 181 tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp }; in TEST_P() 182 tmp = GetInnerThresh(&rnd); in TEST_P() 184 limit[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, in TEST_P() 185 tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp }; in TEST_P() 186 tmp = GetHevThresh(&rnd); in TEST_P() 188 thresh[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, in TEST_P() 189 tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp }; in TEST_P() 237 uint8_t tmp = GetOuterThresh(&rnd); in TEST_P() local [all …]
|
/external/llvm-project/llvm/test/Transforms/Reassociate/ |
D | fast-ArrayOutOfBounds.ll | 6 ; CHECK-NEXT: %tmp.2 = fadd float %a3, %a4 7 ; CHECK-NEXT: %tmp.4 = fadd float %tmp.2, %a2 8 ; CHECK-NEXT: %tmp.6 = fadd float %tmp.4, %a1 9 ; CHECK-NEXT: %tmp.8 = fadd float %tmp.6, %a0 10 ; CHECK-NEXT: %tmp.11 = fadd float %a2, %a3 11 ; CHECK-NEXT: %tmp.13 = fadd float %tmp.11, %a1 12 ; CHECK-NEXT: %tmp.15 = fadd float %tmp.13, %a0 13 ; CHECK-NEXT: %tmp.18 = fadd float %a1, %a2 14 ; CHECK-NEXT: %tmp.20 = fadd float %tmp.18, %a0 15 ; CHECK-NEXT: %tmp.23 = fadd float %a0, %a1 [all …]
|
D | 2005-09-01-ArrayOutOfBounds.ll | 7 %tmp.2 = add i32 %a4, %a3 8 %tmp.4 = add i32 %tmp.2, %a2 9 %tmp.6 = add i32 %tmp.4, %a1 10 %tmp.8 = add i32 %tmp.6, %a0 11 %tmp.11 = add i32 %a3, %a2 12 %tmp.13 = add i32 %tmp.11, %a1 13 %tmp.15 = add i32 %tmp.13, %a0 14 %tmp.18 = add i32 %a2, %a1 15 %tmp.20 = add i32 %tmp.18, %a0 16 %tmp.23 = add i32 %a1, %a0 [all …]
|
/external/llvm/test/Transforms/Reassociate/ |
D | fast-ArrayOutOfBounds.ll | 6 ; CHECK-NEXT: %tmp.2 = fadd float %a3, %a4 7 ; CHECK-NEXT: %tmp.4 = fadd float %tmp.2, %a2 8 ; CHECK-NEXT: %tmp.6 = fadd float %tmp.4, %a1 9 ; CHECK-NEXT: %tmp.8 = fadd float %tmp.6, %a0 10 ; CHECK-NEXT: %tmp.11 = fadd float %a2, %a3 11 ; CHECK-NEXT: %tmp.13 = fadd float %tmp.11, %a1 12 ; CHECK-NEXT: %tmp.15 = fadd float %tmp.13, %a0 13 ; CHECK-NEXT: %tmp.18 = fadd float %a1, %a2 14 ; CHECK-NEXT: %tmp.20 = fadd float %tmp.18, %a0 15 ; CHECK-NEXT: %tmp.23 = fadd float %a0, %a1 [all …]
|
D | 2005-09-01-ArrayOutOfBounds.ll | 7 %tmp.2 = add i32 %a4, %a3 8 %tmp.4 = add i32 %tmp.2, %a2 9 %tmp.6 = add i32 %tmp.4, %a1 10 %tmp.8 = add i32 %tmp.6, %a0 11 %tmp.11 = add i32 %a3, %a2 12 %tmp.13 = add i32 %tmp.11, %a1 13 %tmp.15 = add i32 %tmp.13, %a0 14 %tmp.18 = add i32 %a2, %a1 15 %tmp.20 = add i32 %tmp.18, %a0 16 %tmp.23 = add i32 %a1, %a0 [all …]
|
D | inverses.ll | 4 %tmp.2 = and i32 %b, %a 5 %tmp.4 = xor i32 %a, -1 7 %tmp.5 = and i32 %tmp.2, %tmp.4 8 ret i32 %tmp.5 14 %tmp.1 = and i32 %a, 1234 15 %tmp.2 = and i32 %b, %tmp.1 16 %tmp.4 = xor i32 %a, -1 18 %tmp.5 = and i32 %tmp.2, %tmp.4 19 ret i32 %tmp.5 25 %tmp.1 = add i32 %a, 1234 [all …]
|
/external/libevent/test/ |
D | regress.gen.c | 56 struct msg *tmp; in msg_new_with_arg() local 57 if ((tmp = malloc(sizeof(struct msg))) == NULL) { in msg_new_with_arg() 61 tmp->base = &msg_base__; in msg_new_with_arg() 63 tmp->from_name_data = NULL; in msg_new_with_arg() 64 tmp->from_name_set = 0; in msg_new_with_arg() 66 tmp->to_name_data = NULL; in msg_new_with_arg() 67 tmp->to_name_set = 0; in msg_new_with_arg() 69 tmp->attack_data = NULL; in msg_new_with_arg() 70 tmp->attack_set = 0; in msg_new_with_arg() 72 tmp->run_data = NULL; in msg_new_with_arg() [all …]
|
/external/elfutils/tests/ |
D | run-addr2line-i-test.sh | 58 /tmp/x.cpp:5 62 /tmp/x.cpp:6 66 /tmp/x.cpp:10 70 /tmp/x.cpp:11 74 /tmp/x.cpp:5 75 /tmp/x.cpp:15 79 /tmp/x.cpp:10 80 /tmp/x.cpp:20 84 /tmp/x.cpp:5 85 /tmp/x.cpp:15 [all …]
|
/external/webrtc/common_audio/signal_processing/ |
D | resample_fractional.c | 51 int32_t tmp; in WebRtcSpl_Resample48khzTo32khz() local 56 tmp = 1 << 14; in WebRtcSpl_Resample48khzTo32khz() 57 tmp += kCoefficients48To32[0][0] * In[0]; in WebRtcSpl_Resample48khzTo32khz() 58 tmp += kCoefficients48To32[0][1] * In[1]; in WebRtcSpl_Resample48khzTo32khz() 59 tmp += kCoefficients48To32[0][2] * In[2]; in WebRtcSpl_Resample48khzTo32khz() 60 tmp += kCoefficients48To32[0][3] * In[3]; in WebRtcSpl_Resample48khzTo32khz() 61 tmp += kCoefficients48To32[0][4] * In[4]; in WebRtcSpl_Resample48khzTo32khz() 62 tmp += kCoefficients48To32[0][5] * In[5]; in WebRtcSpl_Resample48khzTo32khz() 63 tmp += kCoefficients48To32[0][6] * In[6]; in WebRtcSpl_Resample48khzTo32khz() 64 tmp += kCoefficients48To32[0][7] * In[7]; in WebRtcSpl_Resample48khzTo32khz() [all …]
|
/external/llvm-project/polly/test/ScopInfo/ |
D | polly-timeout-parameter-bounds.ll | 6 ; CHECK-NEXT: [tmp] -> { Stmt_bb9[] }; 8 ; CHECK-NEXT: [tmp] -> { Stmt_bb9[] -> [0] }; 10 ; CHECK-NEXT: [tmp] -> { Stmt_bb9[] -> MemRef_tmp8[] }; 13 ; CHECK-NEXT: [tmp] -> { Stmt_bb12[] : 1073741824*floor((536870912 + tmp)/1073741824) … 15 ; CHECK-NEXT: [tmp] -> { Stmt_bb12[] -> [1] }; 17 ; CHECK-NEXT: [tmp] -> { Stmt_bb12[] -> MemRef_tmp8[] }; 20 ; CHECK-NEXT: [tmp] -> { Stmt_bb15[] : -268435455 + tmp <= 1073741824*floor((536870912… 22 ; CHECK-NEXT: [tmp] -> { Stmt_bb15[] -> [2] }; 24 ; CHECK-NEXT: [tmp] -> { Stmt_bb15[] -> MemRef_tmp8[] }; 27 ; CHECK-NEXT: [tmp] -> { Stmt_bb18[] : -134217727 + tmp <= 1073741824*floor((536870912… [all …]
|
/external/libhevc/common/ |
D | ihevc_trans_macros.h | 39 …LWORD64 tmp; … 53 …tmp = (LWORD64)(abs(inp)); … 54 …tmp = tmp * (quant_coeff); … 55 …tmp = tmp + (((LWORD64)q_add) << (q_bits - QUANT_ROUND_FACTOR_Q)); … 56 …tmp = tmp >> q_bits; … 58 …tmp = tmp * sign; … 59 …out = (WORD16) CLIP_S16(tmp); … 64 …LWORD64 tmp; … 78 …tmp = (LWORD64)(abs(inp)); … 79 …tmp = tmp * (quant_coeff); … [all …]
|
/external/angle/third_party/abseil-cpp/absl/debugging/internal/ |
D | demangle_test.cc | 43 char tmp[10]; in TEST() local 44 EXPECT_TRUE(Demangle("_Z6foobarv", tmp, sizeof(tmp))); in TEST() 46 EXPECT_STREQ("foobar()", tmp); in TEST() 47 EXPECT_TRUE(Demangle("_Z6foobarv", tmp, 9)); in TEST() 48 EXPECT_STREQ("foobar()", tmp); in TEST() 49 EXPECT_FALSE(Demangle("_Z6foobarv", tmp, 8)); // Not enough. in TEST() 50 EXPECT_FALSE(Demangle("_Z6foobarv", tmp, 1)); in TEST() 51 EXPECT_FALSE(Demangle("_Z6foobarv", tmp, 0)); in TEST() 53 EXPECT_FALSE(Demangle("_Z1000000", tmp, 9)); in TEST() 62 char tmp[20]; in TEST() local [all …]
|
/external/llvm/test/CodeGen/Generic/ |
D | 2003-05-28-ManyArgs.ll | 45 …%tmp.101 = getelementptr %struct..s_placer_opts, %struct..s_placer_opts* %placer_opts, i64 0, i32 … 46 %tmp.105 = getelementptr [300 x i8], [300 x i8]* %net_file, i64 0, i64 0 ; <i8*> [#uses=1] 47 %tmp.106 = getelementptr [300 x i8], [300 x i8]* %arch_file, i64 0, i64 0 ; <i8*> [#uses=1] 48 %tmp.107 = getelementptr [300 x i8], [300 x i8]* %place_file, i64 0, i64 0 ; <i8*> [#uses=1] 49 %tmp.108 = getelementptr [300 x i8], [300 x i8]* %route_file, i64 0, i64 0 ; <i8*> [#uses=1] 50 …%tmp.109 = getelementptr { i32, float, float, float, float, float, float, float, float, float, flo… 51 …%tmp.112 = getelementptr %struct..s_placer_opts, %struct..s_placer_opts* %placer_opts, i64 0, i32 … 52 …%tmp.114 = getelementptr %struct..s_placer_opts, %struct..s_placer_opts* %placer_opts, i64 0, i32 … 53 …%tmp.118 = getelementptr %struct..s_router_opts, %struct..s_router_opts* %router_opts, i64 0, i32 … 54 %tmp.135 = load i32, i32* %operation ; <i32> [#uses=1] [all …]
|
/external/llvm-project/llvm/test/CodeGen/Generic/ |
D | 2003-05-28-ManyArgs.ll | 45 …%tmp.101 = getelementptr %struct..s_placer_opts, %struct..s_placer_opts* %placer_opts, i64 0, i32 … 46 %tmp.105 = getelementptr [300 x i8], [300 x i8]* %net_file, i64 0, i64 0 ; <i8*> [#uses=1] 47 %tmp.106 = getelementptr [300 x i8], [300 x i8]* %arch_file, i64 0, i64 0 ; <i8*> [#uses=1] 48 %tmp.107 = getelementptr [300 x i8], [300 x i8]* %place_file, i64 0, i64 0 ; <i8*> [#uses=1] 49 %tmp.108 = getelementptr [300 x i8], [300 x i8]* %route_file, i64 0, i64 0 ; <i8*> [#uses=1] 50 …%tmp.109 = getelementptr { i32, float, float, float, float, float, float, float, float, float, flo… 51 …%tmp.112 = getelementptr %struct..s_placer_opts, %struct..s_placer_opts* %placer_opts, i64 0, i32 … 52 …%tmp.114 = getelementptr %struct..s_placer_opts, %struct..s_placer_opts* %placer_opts, i64 0, i32 … 53 …%tmp.118 = getelementptr %struct..s_router_opts, %struct..s_router_opts* %router_opts, i64 0, i32 … 54 %tmp.135 = load i32, i32* %operation ; <i32> [#uses=1] [all …]
|
/external/capstone/arch/TMS320C64x/ |
D | TMS320C64xGenDisassemblerTables.inc | 616 InsnType tmp; \ 620 tmp = fieldname(insn, 13, 4); \ 621 if (DecodeNop(MI, tmp, Address, Decoder) == MCDisassembler_Fail) return MCDisassembler_Fail; \ 622 tmp = fieldname(insn, 29, 3); \ 623 …if (DecodeCondRegister(MI, tmp, Address, Decoder) == MCDisassembler_Fail) return MCDisassembler_Fa… 624 tmp = fieldname(insn, 28, 1); \ 625 …if (DecodeCondRegisterZero(MI, tmp, Address, Decoder) == MCDisassembler_Fail) return MCDisassemble… 626 tmp = fieldname(insn, 1, 1); \ 627 if (DecodeSide(MI, tmp, Address, Decoder) == MCDisassembler_Fail) return MCDisassembler_Fail; \ 628 tmp = fieldname(insn, 0, 1); \ [all …]
|
/external/llvm-project/llvm/test/CodeGen/PowerPC/ |
D | rlwimi.ll | 7 %tmp.3 = shl i32 %x, 16 ; <i32> [#uses=1] 8 %tmp.7 = and i32 %y, 65535 ; <i32> [#uses=1] 9 %tmp.9 = or i32 %tmp.7, %tmp.3 ; <i32> [#uses=1] 10 ret i32 %tmp.9 15 %tmp.7 = and i32 %x, 65535 ; <i32> [#uses=1] 16 %tmp.3 = shl i32 %y, 16 ; <i32> [#uses=1] 17 %tmp.9 = or i32 %tmp.7, %tmp.3 ; <i32> [#uses=1] 18 ret i32 %tmp.9 23 %tmp.3 = lshr i32 %x, 16 ; <i32> [#uses=1] 24 %tmp.6 = and i32 %y, -65536 ; <i32> [#uses=1] [all …]
|
D | rlwimi2.ll | 9 %tmp.1 = shl i32 %srcA, 15 ; <i32> [#uses=1] 10 %tmp.4 = and i32 %tmp.1, 32505856 ; <i32> [#uses=1] 11 %tmp.6 = and i32 %srcA, 31775 ; <i32> [#uses=1] 12 %tmp.7 = or i32 %tmp.4, %tmp.6 ; <i32> [#uses=1] 13 %tmp.9 = shl i32 %srcB, 15 ; <i32> [#uses=1] 14 %tmp.12 = and i32 %tmp.9, 32505856 ; <i32> [#uses=1] 15 %tmp.14 = and i32 %srcB, 31775 ; <i32> [#uses=1] 16 %tmp.15 = or i32 %tmp.12, %tmp.14 ; <i32> [#uses=1] 17 %tmp.18 = mul i32 %tmp.7, %alpha ; <i32> [#uses=1] 18 %tmp.20 = sub i32 32, %alpha ; <i32> [#uses=1] [all …]
|
/external/llvm/test/CodeGen/PowerPC/ |
D | rlwimi.ll | 7 %tmp.3 = shl i32 %x, 16 ; <i32> [#uses=1] 8 %tmp.7 = and i32 %y, 65535 ; <i32> [#uses=1] 9 %tmp.9 = or i32 %tmp.7, %tmp.3 ; <i32> [#uses=1] 10 ret i32 %tmp.9 15 %tmp.7 = and i32 %x, 65535 ; <i32> [#uses=1] 16 %tmp.3 = shl i32 %y, 16 ; <i32> [#uses=1] 17 %tmp.9 = or i32 %tmp.7, %tmp.3 ; <i32> [#uses=1] 18 ret i32 %tmp.9 23 %tmp.3 = lshr i32 %x, 16 ; <i32> [#uses=1] 24 %tmp.6 = and i32 %y, -65536 ; <i32> [#uses=1] [all …]
|
D | rlwimi2.ll | 9 %tmp.1 = shl i32 %srcA, 15 ; <i32> [#uses=1] 10 %tmp.4 = and i32 %tmp.1, 32505856 ; <i32> [#uses=1] 11 %tmp.6 = and i32 %srcA, 31775 ; <i32> [#uses=1] 12 %tmp.7 = or i32 %tmp.4, %tmp.6 ; <i32> [#uses=1] 13 %tmp.9 = shl i32 %srcB, 15 ; <i32> [#uses=1] 14 %tmp.12 = and i32 %tmp.9, 32505856 ; <i32> [#uses=1] 15 %tmp.14 = and i32 %srcB, 31775 ; <i32> [#uses=1] 16 %tmp.15 = or i32 %tmp.12, %tmp.14 ; <i32> [#uses=1] 17 %tmp.18 = mul i32 %tmp.7, %alpha ; <i32> [#uses=1] 18 %tmp.20 = sub i32 32, %alpha ; <i32> [#uses=1] [all …]
|
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/internal/ |
D | VarInt.java | 109 int tmp; in getVarInt() local 110 if ((tmp = src.get()) >= 0) { in getVarInt() 111 return tmp; in getVarInt() 113 int result = tmp & 0x7f; in getVarInt() 114 if ((tmp = src.get()) >= 0) { in getVarInt() 115 result |= tmp << 7; in getVarInt() 117 result |= (tmp & 0x7f) << 7; in getVarInt() 118 if ((tmp = src.get()) >= 0) { in getVarInt() 119 result |= tmp << 14; in getVarInt() 121 result |= (tmp & 0x7f) << 14; in getVarInt() [all …]
|
/external/lz4/tests/ |
D | Makefile | 110 @$(RM) -rf core *.o *.test tmp* \ 201 ls -ls tmp* 215 @echo -n > tmp-lfc-empty 216 @echo hi > tmp-lfc-nonempty 217 cat tmp-lfc-nonempty tmp-lfc-empty tmp-lfc-nonempty > tmp-lfc-src 218 $(LZ4) -zq tmp-lfc-empty -c > tmp-lfc-empty.lz4 219 $(LZ4) -zq tmp-lfc-nonempty -c > tmp-lfc-nonempty.lz4 220 cat tmp-lfc-nonempty.lz4 tmp-lfc-empty.lz4 tmp-lfc-nonempty.lz4 > tmp-lfc-concat.lz4 221 $(LZ4) -d tmp-lfc-concat.lz4 -c > tmp-lfc-result 222 $(CMP) tmp-lfc-src tmp-lfc-result [all …]
|
/external/autotest/client/deps/fakegudev/src/ |
D | test-fakesyscalls.sh | 8 FAKE_SYSCALLS_DBG=/tmp/fake_syscalls.dbg 13 FILE_REDIRECTIONS_PRELOAD=${FILE_REDIRECTIONS_PRELOAD}:/tmp/foo1=/tmp/foo2 14 FILE_REDIRECTIONS_PRELOAD=${FILE_REDIRECTIONS_PRELOAD}:/tmp/foo3 15 FILE_REDIRECTIONS_PRELOAD=${FILE_REDIRECTIONS_PRELOAD}:/tmp/foo4=. 16 FILE_REDIRECTIONS_PRELOAD=${FILE_REDIRECTIONS_PRELOAD}:/tmp/foo5=/tmp/foo6 19 rm -f /tmp/foo1 /tmp/foo2 /tmp/foo3 /tmp/foo4 /tmp/foo5 /tmp/foo6 /tmp/foo99 23 echo LD_PRELOAD=${FAKE_SYSCALLS_LIB} ${TEST_EXE} /tmp/foo1 /tmp/foo2 24 LD_PRELOAD=${FAKE_SYSCALLS_LIB} ${TEST_EXE} /tmp/foo1 /tmp/foo2 31 echo LD_PRELOAD=${FAKE_SYSCALLS_LIB} ${TEST_EXE} /tmp/foo3 /tmp/foo3 32 LD_PRELOAD=${FAKE_SYSCALLS_LIB} ${TEST_EXE} /tmp/foo3 /tmp/foo3 [all …]
|
/external/zstd/tests/ |
D | playTests.sh | 65 rm -f tmp.zst tmp.md5.1 tmp.md5.2 67 datagen $1 $local_p > tmp 68 < tmp $MD5SUM > tmp.md5.1 69 zstd --ultra -v$local_c -c tmp | zstd -d$local_d | $MD5SUM > tmp.md5.2 70 $DIFF -q tmp.md5.1 tmp.md5.2 162 datagen > tmp 164 zstd -f tmp # trivial compression case, creates tmp.zst 166 zstd -df tmp.zst # trivial decompression case (overwrites tmp) 168 zstd -99 -f tmp # too large compression level, automatic sized down 169 zstd -5000000000 -f tmp && die "too large numeric value : must fail" [all …]
|