HomeSort by relevance Sort by last modified time
    Searched defs:d4 (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/
aix-weak-2a.s 18 .globl d4
19 .csect d4[DS]
20 d4: label
aix-weak-2b.s 20 .weak d4
21 d4 = 0xeeee4444 define
  /external/clang/test/SemaCXX/
constant-expression-cxx1z.cpp 22 constexpr D d4 = {}; member in namespace:BaseClassAggregateInit
23 static_assert(d4.a == 10 && d4.b == 30 && d4.c == 29 && d4.q == 0 && d4.k == 0);
string-init.cpp 25 char32_t d4[] = U"a"; // No error. local
  /external/llvm/test/MC/Mips/
section-size.s 33 d4: .byte 1 label
  /external/tensorflow/tensorflow/core/lib/hash/
hash_test.cc 29 const unsigned char d4[4] = {0xe1, 0x80, 0xb9, 0x32}; local
50 {0x16174eb3u, 0x8f7ed82ffc21071full, d4, sizeof(d4), 0xbc9f1d34},
  /external/valgrind/none/tests/s390x/
test_sig.c 46 double d1,d2,d3,d4,d5; local
49 d1 = d2 = d3 = d4 = d5 = 1;
59 printf("floating point is now: %f %f %f %f %f\n", d1, d2, d3, d4, d5);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
NodeComparatorTest.java 35 ICoverageNode d4 = new MockNode(60); local
39 Arrays.asList(d3, d5, d1, d4, d2));
40 assertEquals(Arrays.asList(d1, d2, d3, d4, d5), result);
  /external/python/cpython3/Lib/test/
test_userdict.py 11 d4 = {"one": None, "two": None} variable
39 self.assertEqual(collections.UserDict.fromkeys('one two'.split()), d4)
40 self.assertEqual(collections.UserDict().fromkeys('one two'.split()), d4)
  /external/valgrind/massif/tests/
alloc-fns.c 18 void d4(int n) { malloc(n); } function
19 void d3(int n) { d4(n); }
33 d4(400);
  /prebuilts/go/darwin-x86/test/
nowritebarrier.go 72 d4()
76 func d4() { func
  /prebuilts/go/linux-x86/test/
nowritebarrier.go 72 d4()
76 func d4() { func
  /art/test/703-floating-point-div/src/
Main.java 38 double d4 = Double.MIN_NORMAL; local
49 expectEquals(Double.doubleToRawLongBits(dPi/d4), 0x7fe921fb54442d18L);
  /external/clang/test/OpenMP/
threadprivate_messages.cpp 121 static double d4; local
138 #pragma omp threadprivate(d4) // expected-error {{'#pragma omp threadprivate' cannot be an immediate substatement}}
  /external/libvpx/libvpx/vp8/common/arm/neon/
dequant_idct_neon.c 26 int16x4_t d2, d3, d4, d5, d10, d11, d12, d13; local
78 d4 = vqsub_s16(d13, d10);
81 d2tmp0 = vtrn_s32(vreinterpret_s32_s16(d2), vreinterpret_s32_s16(d4));
106 d4 = vqsub_s16(d13, d10);
111 d4 = vrshr_n_s16(d4, 3);
114 d2tmp0 = vtrn_s32(vreinterpret_s32_s16(d2), vreinterpret_s32_s16(d4));
shortidct4x4llm_neon.c 28 int16x4_t d2, d3, d4, d5, d10, d11, d12, d13; local
36 d4 = vld1_s16(input + 8);
40 q1s16 = vcombine_s16(d2, d4); // Swap d3 d4 here
58 d4 = vqsub_s16(d13, d10);
61 v2tmp0 = vtrn_s32(vreinterpret_s32_s16(d2), vreinterpret_s32_s16(d4));
87 d4 = vqsub_s16(d13, d10);
92 d4 = vrshr_n_s16(d4, 3);
95 v2tmp0 = vtrn_s32(vreinterpret_s32_s16(d2), vreinterpret_s32_s16(d4));
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
vpx_scaled_convolve8_neon.c 78 const uint8x8x4_t d4 = vld4_u8(temp); local
80 vreinterpret_u32_u8(d4.val[0]), 0);
82 vreinterpret_u32_u8(d4.val[1]), 0);
84 vreinterpret_u32_u8(d4.val[2]), 0);
86 vreinterpret_u32_u8(d4.val[3]), 0);
  /art/test/080-oom-throw/src/
Main.java 40 double d1, d2, d3, d4, d5, d6, d7, d8; // Bloat this object so we fill the heap faster. field in class:Main.InstanceMemEater
  /art/test/705-register-conflict/src/
Main.java 28 double d0 = 0, d1 = 0, d2 = 0, d3 = 0, d4 = 0, d5 = 0, d6 = 0, d7 = 0; local
37 d4 = d3 + 1;
38 d5 = d4 + 1;
68 return d0 + d1 + d2 + d3 + d4 + d5 + d6 + d7
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_userdict.py 10 d4 = {"one": None, "two": None} variable
37 self.assertEqual(UserDict.UserDict.fromkeys('one two'.split()), d4)
38 self.assertEqual(UserDict.UserDict().fromkeys('one two'.split()), d4)
  /external/clang/test/Sema/
string-init.c 30 char32_t d4[] = U"a"; // No error. local
  /external/python/cpython2/Lib/test/
test_userdict.py 11 d4 = {"one": None, "two": None} variable
40 self.assertEqual(UserDict.UserDict.fromkeys('one two'.split()), d4)
41 self.assertEqual(UserDict.UserDict().fromkeys('one two'.split()), d4)
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
itoa.h 63 const uint32_t d4 = (c % 100) << 1; local
75 *buffer++ = cDigitsLut[d4];
76 *buffer++ = cDigitsLut[d4 + 1];
99 const uint32_t d4 = (c % 100) << 1; local
107 *buffer++ = cDigitsLut[d4];
108 *buffer++ = cDigitsLut[d4 + 1];
158 const uint32_t d4 = (c % 100) << 1; local
170 *buffer++ = cDigitsLut[d4];
171 *buffer++ = cDigitsLut[d4 + 1];
185 const uint32_t d4 = (c0 % 100) << 1 local
259 const uint32_t d4 = (c0 % 100) << 1; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_userdict.py 10 d4 = {"one": None, "two": None} variable
37 self.assertEqual(UserDict.UserDict.fromkeys('one two'.split()), d4)
38 self.assertEqual(UserDict.UserDict().fromkeys('one two'.split()), d4)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_userdict.py 10 d4 = {"one": None, "two": None} variable
37 self.assertEqual(UserDict.UserDict.fromkeys('one two'.split()), d4)
38 self.assertEqual(UserDict.UserDict().fromkeys('one two'.split()), d4)

Completed in 1605 milliseconds

1 2 3 4