/external/compiler-rt/test/builtins/Unit/ppc/ |
floatditf_test.c | 13 DD computed; local 18 computed.ld = __floatditf(tests[i].input); 20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo)) 24 printf("\tComputed %La = ( %a , %a )\n", computed.ld, computed.hi, computed.lo);
|
floatunditf_test.c | 13 DD computed; local 18 computed.ld = __floatunditf(tests[i].input); 20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo)) 24 printf("\tComputed %La = ( %a , %a )\n", computed.ld, computed.hi, computed.lo);
|
/external/guava/guava-tests/test/com/google/common/cache/ |
NullCacheTest.java | 43 Object computed = new Object(); local 47 .build(constantLoader(computed)); 50 assertSame(computed, cache.getUnchecked(key)); 53 assertSame(computed, notification.getValue()); 60 Object computed = new Object(); local 64 .build(constantLoader(computed)); 67 assertSame(computed, cache.getUnchecked(key)); 70 assertSame(computed, notification.getValue()); 77 Object computed = new Object(); local 81 .build(constantLoader(computed)); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_sha.py | 20 computed = obj.hexdigest() 21 self.assertTrue(computed == digest) 26 self.assertTrue(computed == computed_again) 33 self.assertTrue(computed == hexd)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_sha.py | 20 computed = obj.hexdigest() 21 self.assertTrue(computed == digest) 26 self.assertTrue(computed == computed_again) 33 self.assertTrue(computed == hexd)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_sha.py | 20 computed = obj.hexdigest() 21 self.assertTrue(computed == digest) 26 self.assertTrue(computed == computed_again) 33 self.assertTrue(computed == hexd)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_sha.py | 20 computed = obj.hexdigest() 21 self.assertTrue(computed == digest) 26 self.assertTrue(computed == computed_again) 33 self.assertTrue(computed == hexd)
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/ |
rd-v10_32o-2.d | 4 # Check that branch offsets are computed as for v32. The
|
/external/jemalloc/test/unit/ |
hash.c | 71 uint32_t computed, expected; local 122 computed = (final[0] << 0) | (final[1] << 8) | (final[2] << 16) | 138 assert_u32_eq(computed, expected, 140 hash_variant_string(variant), expected, computed);
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug337.go | 17 len("foo") // ERROR "len|value computed is not used"
|
bug357.go | 18 false // ERROR "false evaluated but not used|value computed is not used"
|
bug379.go | 17 1 + 2 // ERROR "1 \+ 2 evaluated but not used|value computed is not used"
|
issue9076.go | 7 // Issue 9076: cmd/gc shows computed values in error messages instead of original expression.
|
bug381.go | 29 unsafe.Alignof(0) // ERROR "unsafe\.Alignof|value computed is not used"
|
bug417.go | 8 // the size of the type was known before it had been computed.
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug337.go | 17 len("foo") // ERROR "len|value computed is not used"
|
bug357.go | 18 false // ERROR "false evaluated but not used|value computed is not used"
|
bug379.go | 17 1 + 2 // ERROR "1 \+ 2 evaluated but not used|value computed is not used"
|
issue9076.go | 7 // Issue 9076: cmd/gc shows computed values in error messages instead of original expression.
|
bug381.go | 29 unsafe.Alignof(0) // ERROR "unsafe\.Alignof|value computed is not used"
|
bug417.go | 8 // the size of the type was known before it had been computed.
|
/prebuilts/go/darwin-x86/misc/cgo/test/ |
issue5242.go | 5 // Issue 5242. Cgo incorrectly computed the alignment of structs
|
/prebuilts/go/linux-x86/misc/cgo/test/ |
issue5242.go | 5 // Issue 5242. Cgo incorrectly computed the alignment of structs
|
/libcore/luni/src/test/java/libcore/java/math/ |
BigDecimalTest.java | 57 BigDecimal computed = parsed.divide(BigDecimal.ONE); local 58 assertEquals("Unexpected precision for computed value " + value, 59 expectedPrecision, computed.precision());
|
/libcore/ojluni/src/test/java/util/stream/ |
TestDoubleSumAverage.java | 148 private static int compareUlpDifference(double expected, double computed, double threshold) { 151 if (Double.compare(expected, computed) == 0) 155 computed, expected); 160 double ulpDifference = Math.abs(expected - computed) / Math.ulp(expected);
|