Home
last modified time | relevance | path

Searched refs:res2 (Results 1 – 25 of 62) sorted by relevance

123

/external/valgrind/main/none/tests/x86/
Dfxtract.c5 double arg, res1, res2; variable
14 "\tfstpl " VG_SYM(res2) "\n"
21 res1 = res2 = 0.0; in try()
23 printf("%17.10e -> %14.10f %14.10f\n", arg, res1, res2); in try()
/external/valgrind/main/memcheck/tests/
Dbuflen_check.c8 int res1, res2, res3; in main() local
18 res2 = getsockname(res1, NULL, &len); /* NULL is bogus */ in main()
20 if (res2 == -1) { in main()
Dsh-mem-random.c42 U8 res = 0xffffffffffffffffULL, res2; in build() local
57 res2 = res; in build()
58 (void)VALGRIND_MAKE_MEM_DEFINED(&res2, 8); // avoid the 'undefined' warning in build()
59 assert(res2 == shres); in build()
Dsh-mem.c43 U8 res = 0xffffffffffffffffULL, res2; in build() local
58 res2 = res; in build()
59 (void)VALGRIND_MAKE_MEM_DEFINED(&res2, 8); // avoid the 'undefined' warning in build()
60 assert(res2 == shres); in build()
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
DMacTest.java406 byte [] res2 = new byte[res1.length + 10]; in testMac11()
407 macs[i].doFinal(res2, 0); in testMac11()
410 .concat(Integer.toString(j)), res1[j], res2[j]); in testMac11()
433 byte [] res2 = macs[i].doFinal(); in testMac12()
434 assertEquals("Results are not the same", res1.length, res2.length); in testMac12()
436 assertEquals("Results are not the same", res1[t], res2[t]); in testMac12()
438 res2 = macs[i].doFinal(upd); in testMac12()
441 assertEquals("Results are not the same", res1.length, res2.length); in testMac12()
443 assertEquals("Results are not the same", res1[t], res2[t]); in testMac12()
507 byte [] res2; in testMac14()
[all …]
/external/icu4c/test/intltest/
Dtchcfmt.cpp50 UnicodeString res1, res2; in TestSimpleExample() local
67 res2 = " ??? "; in TestSimpleExample()
68 … it_logln(UnicodeString("") + ix + UnicodeString(" -> ") + res1 + UnicodeString(" -> ") + res2); in TestSimpleExample()
173 UnicodeString res1, res2; in TestComplexExample() local
211 res2 = pattform->format(testArgs, 3, str, fpos, status ); in TestComplexExample()
218 it_logln(i + UnicodeString(" -> ") + res2); in TestComplexExample()
219 if (res2 != checkstr[i - start]) { in TestComplexExample()
221 …it_errln(UnicodeString("*** ") + i + UnicodeString(" -> '") + res2 + UnicodeString("' unlike '") +… in TestComplexExample()
277 res2 = pattform->format(testArgs, 3, str, fpos, status ); in TestComplexExample()
284 it_logln(UnicodeString() + i + UnicodeString(" -> ") + res2); in TestComplexExample()
[all …]
Dnmfmapts.cpp122 UnicodeString res1, res2, res3, res4, res5, res6; in testAPI() local
128 res2 = cur_fr->format(l, res2); in testAPI()
129 logln((UnicodeString) "" + (int32_t) l + " formatted to " + res2); in testAPI()
330 UnicodeString res0, res1, res2, res3, res4, res5; in testRegistration() local
337 f2->format(n, res2); in testRegistration()
348 logln((UnicodeString)"f2 src cur: " + res2); in testRegistration()
369 if (res5 != res2) { in testRegistration()
379 if (res2 != ures5) { in testRegistration()
Dsdtfmtts.cpp144 UnicodeString res1, res2; in testAPI() local
151 res2 = cust1.format(fD, res2, pos2, status); in testAPI()
155 logln((UnicodeString) "" + fD.getDate() + " formatted to " + res2); in testAPI()
Ddtfmapts.cpp164 UnicodeString res1, res2, res3; in testAPI() local
174 res2 = it->format(d, res2, pos2); in testAPI()
175 logln( (UnicodeString) "" + d + " formatted to " + res2); in testAPI()
Ddcfmapts.cpp136 UnicodeString res1, res2, res3, res4; in testAPI() local
142 res2 = pat.format(l, res2, pos2); in testAPI()
143 logln((UnicodeString) "" + (int32_t) l + " formatted to " + res2); in testAPI()
/external/valgrind/main/none/tests/amd64/
Dfxtract.c5 double arg, res1, res2; variable
22 res1 = res2 = 0.0; in try()
24 printf("%17.10e -> %14.10f %14.10f\n", arg, res1, res2); in try()
/external/dropbear/libtomcrypt/testprof/
Dpkcs_1_test.c8 int res1, res2, res3, prng_idx, hash_idx, err; in pkcs_1_test() local
67 DO(pkcs_1_pss_decode(buf[0], l3, buf[1], l1, saltlen, hash_idx, modlen, &res2)); in pkcs_1_test()
72 if (!(res1 == 1 && res2 == 0 && res3 == 0)) { in pkcs_1_test()
73 fprintf(stderr, "PSS failed: %d, %d, %d, %lu, %lu\n", res1, res2, res3, l3, saltlen); in pkcs_1_test()
/external/llvm/test/Transforms/ScalarRepl/
D2008-06-05-loadstore-agg.ll13 %res2 = insertvalue { i32, i32 } %res1, i32 2, 1 ; <{ i32, i32 }> [#uses=1]
15 store { i32, i32 } %res2, { i32, i32 }* %target
26 %res2 = insertvalue [ 2 x i32 ] %res1, i32 2, 1 ; <{ i32, i32 }> [#uses=1]
28 store [ 2 x i32 ] %res2, [ 2 x i32 ]* %target
/external/eigen/test/eigen2/
Dproduct.h51 res2 = ColSquareMatrixType::Random(cols, cols); in product() local
123 res2 = square2; in product()
124 res2 += (m1.transpose() * m2).lazy(); in product()
125 VERIFY_IS_APPROX(res2, square2 + m1.transpose() * m2); in product()
129 VERIFY(areNotApprox(res2,square2 + m2.transpose() * m1)); in product()
/external/llvm/test/Bitcode/
Dptest-new.ll8 %res2 = call i32 @llvm.x86.sse41.ptestz(<2 x i64> %bar, <2 x i64> %bar)
11 %add1 = add i32 %res1, %res2
12 %add2 = add i32 %add1, %res2
Dptest-old.ll8 %res2 = call i32 @llvm.x86.sse41.ptestz(<4 x float> %bar, <4 x float> %bar)
11 %add1 = add i32 %res1, %res2
12 %add2 = add i32 %add1, %res2
/external/eigen/test/
Dproduct.h49 res2 = ColSquareMatrixType::Random(cols, cols); in product() local
129 res2 = square2; in product()
130 res2.noalias() += m1.transpose() * m2; in product()
131 VERIFY_IS_APPROX(res2, square2 + m1.transpose() * m2); in product()
134 VERIFY(areNotApprox(res2,square2 + m2.transpose() * m1)); in product()
/external/llvm/test/CodeGen/X86/
DWidenArith.ll17 %res2 = fcmp olt <8 x float> %c1, %d
18 %andr = and <8 x i1>%res1, %res2
/external/eigen/Eigen/src/Core/arch/NEON/
DPacketMath.h253 float32x4x2_t vtrn1, vtrn2, res1, res2;
261 res2 = vzipq_f32(vtrn1.val[1], vtrn2.val[1]);
265 sum2 = vaddq_f32(res2.val[0], res2.val[1]);
287 int32x4x2_t vtrn1, vtrn2, res1, res2;
295 res2 = vzipq_s32(vtrn1.val[1], vtrn2.val[1]);
299 sum2 = vaddq_s32(res2.val[0], res2.val[1]);
/external/valgrind/main/VEX/test/
Dtest-i386.c936 int res, res2;\
943 : "=r" (res), "=r" (res2) : "m" (seg), "0" (res));\
944 printf(op ": Z=%d %08x\n", res2, res & ~(mask));\
952 int res, res2;
1016 : "=r" (res), "=r" (res2)
1019 printf("SS[tmp] = %02x\n", res2);
1025 : "=r" (res), "=g" (res2)
1027 printf("FS:reg = %04x:%08x\n", res2, res);
1051 int res, res2;
1071 : "=a" (res), "=c" (res2)
[all …]
Dtest-amd64.c974 int res, res2;\
981 : "=r" (res), "=r" (res2) : "m" (seg), "0" (res));\
982 printf(op ": Z=%d %08x\n", res2, res & ~(mask));\
990 int res, res2;
1054 : "=r" (res), "=r" (res2)
1057 printf("SS[tmp] = %02x\n", res2);
1063 : "=r" (res), "=g" (res2)
1065 printf("FS:reg = %04x:%08x\n", res2, res);
1089 int res, res2;
1109 : "=a" (res), "=c" (res2)
[all …]
/external/iproute2/include/netinet/
Dtcp.h105 u_int16_t res2:2; member
109 u_int16_t res2:2; member
/external/ipsec-tools/src/racoon/
Deaytest.c600 vchar_t *buf, *iv, *res1, *res2; in ciphertest_1() local
625 res2 = (decrypt)(res1, key, iv); in ciphertest_1()
626 if (res2 == NULL) { in ciphertest_1()
631 PVDUMP(res2); in ciphertest_1()
633 if (memcmp(data->v, res2->v, data->l)) { in ciphertest_1()
640 vfree(res2); in ciphertest_1()
/external/qemu/
Dsoftmmu_template.h195 DATA_TYPE res, res1, res2; in glue() local
218 res2 = glue(glue(slow_ld, SUFFIX), MMUSUFFIX)(addr2, in glue()
222 res = (res1 << shift) | (res2 >> ((DATA_SIZE * 8) - shift)); in glue()
224 res = (res1 >> shift) | (res2 << ((DATA_SIZE * 8) - shift)); in glue()
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
DSDL_mintaudio_mcsn.h44 unsigned long res2; member

123