/external/compiler-rt/lib/asan/tests/ |
D | asan_asm_test.cc | 121 DECLARE_ASM_WRITE(U4, "4", "movl", "r"); 126 DECLARE_ASM_READ(U4, "4", "movl", "=r"); 131 DECLARE_ASM_REP_MOVS(U4, "movsl"); 176 U4 AsmLoad(U4 *a) { in AsmLoad() 177 U4 r; in AsmLoad() 182 void AsmStore(U4 r, U4 *a) { in AsmStore() 211 U4* buf = new U4[2]; in TEST() 220 TestAsmWrite<U4>("WRITE of size 4"); in TEST() 228 TestAsmRead<U4>("READ of size 4"); in TEST() 263 TestAsmRepMovs<U4>("READ of size 4", "WRITE of size 4"); in TEST()
|
D | asan_test_utils.h | 60 typedef uint32_t U4; typedef
|
D | asan_oob_test.cc | 74 OOBTest<U4>(); in TEST()
|
/external/libsrtp2/crypto/cipher/ |
D | aes.c | 1323 static const uint32_t U4[256] = { variable 1950 tmp0 = (U4[(state->v32[0] >> 24)] & 0xff000000) ^ in aes_inv_final_round() 1951 (U4[(state->v32[3] >> 16) & 0xff] & 0x00ff0000) ^ in aes_inv_final_round() 1952 (U4[(state->v32[2] >> 8) & 0xff] & 0x0000ff00) ^ in aes_inv_final_round() 1953 (U4[(state->v32[1] ) & 0xff] & 0x000000ff) ^ in aes_inv_final_round() 1956 tmp1 = (U4[(state->v32[1] >> 24)] & 0xff000000) ^ in aes_inv_final_round() 1957 (U4[(state->v32[0] >> 16) & 0xff] & 0x00ff0000) ^ in aes_inv_final_round() 1958 (U4[(state->v32[3] >> 8) & 0xff] & 0x0000ff00) ^ in aes_inv_final_round() 1959 (U4[(state->v32[2] ) & 0xff] & 0x000000ff) ^ in aes_inv_final_round() 1962 tmp2 = (U4[(state->v32[2] >> 24)] & 0xff000000) ^ in aes_inv_final_round() [all …]
|
/external/ow2-asm/asm-util/src/test/resources/ |
D | jdk5.AllStructures.txt | 4 …lang/Number;U2::Ljava/util/List<Ljava/lang/String;>;U3::Ljava/util/List<*>;U4::Ljava/util/List<+Lj… 5 …U2 extends java.util.List<java.lang.String>, U3 extends java.util.List<?>, U4 extends java.util.Li… 52 // declaration: f4 extends U4 77 // declaration: this extends jdk5.AllStructures<U0, U1, U2, U3, U4, U5, U6> 94 // declaration: this extends jdk5.AllStructures<U0, U1, U2, U3, U4, U5, U6> 114 // declaration: this extends jdk5.AllStructures<U0, U1, U2, U3, U4, U5, U6> 135 // declaration: this extends jdk5.AllStructures<U0, U1, U2, U3, U4, U5, U6> 140 …lang/Number;U2::Ljava/util/List<Ljava/lang/String;>;U3::Ljava/util/List<*>;U4::Ljava/util/List<+Lj… 141 …U4 extends java.util.List<? extends java.lang.Number>, U5 extends java.util.List<? super java.lang… 149 // declaration: this extends jdk5.AllStructures<U0, U1, U2, U3, U4, U5, U6> [all …]
|
/external/ow2-asm/asm-test/src/resources/java/jdk5/ |
D | AllStructures.java | 73 U4 extends List<? extends Number>, 86 private U4 f4; 114 U4 extends List<? extends Number>, 124 List<U4> p4, in genericMethod() argument 127 AllStructures<U0, U1, U2, U3, U4, U5, U6>.InnerClass p7, in genericMethod() 128 AllStructures<U0, U1, U2, U3, U4, U5, U6>.GenericInnerClass<U1> p8) in genericMethod()
|
/external/compiler-rt/lib/msan/tests/ |
D | msan_test.cc | 126 typedef unsigned int U4; typedef 138 U4 origin = __msan_get_origin(&x); in TrackingOrigins() 194 T *GetPoisonedO(int i, U4 origin, T val = 0) { in GetPoisonedO() 263 EXPECT_POISONED(*GetPoisoned<U4>()); in TEST() 376 U4 *p = GetPoisoned<U4>(); in TEST() 407 EXPECT_NOT_POISONED(applyNot<U4>(0x0, 0x0)); in TEST() 408 EXPECT_NOT_POISONED(applyNot<U4>(0xFFFFFFFF, 0x0)); in TEST() 409 EXPECT_POISONED(applyNot<U4>(0xFFFFFFFF, 0xFFFFFFFF)); in TEST() 410 EXPECT_NOT_POISONED(applyNot<U4>(0xFF000000, 0x0FFFFFFF)); in TEST() 411 EXPECT_NOT_POISONED(applyNot<U4>(0xFF000000, 0x00FFFFFF)); in TEST() [all …]
|
/external/clang/test/CXX/special/class.inhctor/ |
D | p3.cpp | 63 template<typename T> struct U4 : T4<T> { struct 68 U4<void> u4a = {0}; 69 U4<void> u4b = {0, 0}; // expected-error {{chosen constructor is explicit}}
|
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/ |
D | move_convert.pass.cpp | 117 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 121 static_assert(!std::is_constructible<U1, U4&&>::value, ""); in test_sfinae() 133 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 138 static_assert(std::is_constructible<U1, U4&&>::value, ""); in test_sfinae()
|
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/ |
D | move_convert.pass.cpp | 121 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 125 static_assert(!std::is_constructible<U1, U4&&>::value, ""); in test_sfinae() 137 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 142 static_assert(std::is_constructible<U1, U4&&>::value, ""); in test_sfinae()
|
/external/clang/test/SemaCXX/ |
D | err_typecheck_assign_const.cpp | 61 struct U4 { struct 66 U4 u4; in test6() argument
|
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
D | rijndael-alg-fst.c | 113 ^ *((const word32*)U4[w[3]]); in rijndaelKeyEncToDec() 120 ^ *((const word32*)U4[w[3]]); in rijndaelKeyEncToDec() 127 ^ *((const word32*)U4[w[3]]); in rijndaelKeyEncToDec() 134 ^ *((const word32*)U4[w[3]]); in rijndaelKeyEncToDec() 450 ^ *((const word32*)U4[a[0][3]]); in rijndaelDecryptRound() 456 ^ *((const word32*)U4[a[1][3]]); in rijndaelDecryptRound() 462 ^ *((const word32*)U4[a[2][3]]); in rijndaelDecryptRound() 468 ^ *((const word32*)U4[a[3][3]]); in rijndaelDecryptRound()
|
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/ |
D | move_convert.pass.cpp | 217 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 221 static_assert(!std::is_assignable<U1, U4&&>::value, ""); in test_sfinae() 232 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 237 static_assert(std::is_nothrow_assignable<U1, U4&&>::value, ""); in test_sfinae() 249 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 254 static_assert(std::is_assignable<U1, U4&&>::value, ""); in test_sfinae()
|
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/ |
D | move_convert.pass.cpp | 215 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 219 static_assert(!std::is_assignable<U1, U4&&>::value, ""); in test_sfinae() 230 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 235 static_assert(std::is_nothrow_assignable<U1, U4&&>::value, ""); in test_sfinae() 247 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 252 static_assert(std::is_assignable<U1, U4&&>::value, ""); in test_sfinae()
|
/external/clang/test/CXX/class/class.union/ |
D | p1.cpp | 99 union U4 { union 102 int U4::i1 = 10;
|
/external/clang/test/CodeGen/ |
D | xcore-stringtype.c | 159 union U4{union U1 u1;}; union 163 void unionType4(union U4 u4) {} in unionType4()
|
/external/clang/test/Sema/ |
D | static-assert.c | 42 typedef UNION(float, 0.5f) U4; // expected-error {{expected a type}} typedef
|
/external/pcre/testdata/ |
D | grepoutput8 | 22 ---------------------------- Test U4 ------------------------------
|
/external/rust/crates/libm/src/math/ |
D | lgamma_r.rs | 119 const U4: f64 = 2.28963728064692451092e-01; /* 0x3FCD4EAE, 0xF6010924 */ constant 270 p1 = y * (U0 + y * (U1 + y * (U2 + y * (U3 + y * (U4 + y * U5))))); in lgamma_r()
|
D | lgammaf_r.rs | 54 const U4: f32 = 2.2896373272e-01; /* 0x3e6a7578 */ constant 205 p1 = y * (U0 + y * (U1 + y * (U2 + y * (U3 + y * (U4 + y * U5))))); in lgammaf_r()
|
/external/turbine/javatests/com/google/turbine/lower/testdata/ |
D | const_all.test | 15 public static final boolean U4 = !false;
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/ |
D | p1.cpp | 59 union U4 {} constexpr u4 = {}; union
|
/external/ComputeLibrary/src/core/NEON/kernels/detail/ |
D | NEColorConvertHelper.inl | 429 //ta.val[1] = U0 U2 U4 U6 ... 485 //ta_uv.val[0] = U0 U2 U4 U6 ... 570 //ta_u.val[0] = U0 U2 U4 U6 ... 629 //ta.val[1] = U0 U2 U4 U6 ... 688 //ta_uv.val[0] = U0 U2 U4 U6 ... 736 //ta_uv.val[0] = U0 U2 U4 U6 ... 782 //ta.val[1] = U0 U2 U4 U6 ... 845 //ta_uv.val[0] = U0 U2 U4 U6 ... 903 //ta_u = U0 U2 U4 U6 ...
|
/external/walt/hardware/kicad/walt_footprints.pretty/ |
D | BMI160.kicad_mod | 2 (fp_text reference U4 (at 0 2.75) (layer F.SilkS)
|
/external/cronet/net/data/ssl/symantec/roots/ |
D | e6b8f8766485f807ae7f8dac1670461f07c0a13eef3a1ff717538d7abad391b4.pem | 75 XjIeIqkiRUuwZi4wzJ9l/fzLganx4Duvo4bRierERXlQXa7pIXSSTYtZgo+U4+lK
|