/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
|
/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/llvm-project/compiler-rt/lib/msan/tests/ |
D | msan_test.cpp | 135 typedef unsigned int U4; typedef 147 U4 origin = __msan_get_origin(&x); in TrackingOrigins() 209 T *GetPoisonedO(int i, U4 origin, T val = 0) { in GetPoisonedO() 278 EXPECT_POISONED(*GetPoisoned<U4>()); in TEST() 391 U4 *p = GetPoisoned<U4>(); in TEST() 422 EXPECT_NOT_POISONED(applyNot<U4>(0x0, 0x0)); in TEST() 423 EXPECT_NOT_POISONED(applyNot<U4>(0xFFFFFFFF, 0x0)); in TEST() 424 EXPECT_POISONED(applyNot<U4>(0xFFFFFFFF, 0xFFFFFFFF)); in TEST() 425 EXPECT_NOT_POISONED(applyNot<U4>(0xFF000000, 0x0FFFFFFF)); in TEST() 426 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/llvm-project/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/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/llvm-project/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/ |
D | move_convert.pass.cpp | 120 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 124 static_assert(!std::is_constructible<U1, U4&&>::value, ""); in test_sfinae() 136 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 141 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/clang/test/CXX/class/class.union/ |
D | p1.cpp | 99 union U4 { union 102 int U4::i1 = 10;
|
/external/llvm-project/clang/test/CXX/class/class.union/ |
D | p1.cpp | 99 union U4 { union 102 int U4::i1 = 10;
|
/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/llvm-project/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/ |
D | move_convert.pass.cpp | 216 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 220 static_assert(!std::is_assignable<U1, U4&&>::value, ""); in test_sfinae() 231 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 236 static_assert(std::is_nothrow_assignable<U1, U4&&>::value, ""); in test_sfinae() 248 using U4 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef 253 static_assert(std::is_assignable<U1, U4&&>::value, ""); in test_sfinae()
|
/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/llvm-project/clang/test/SemaCXX/ |
D | err_typecheck_assign_const.cpp | 61 struct U4 { struct 66 U4 u4; in test6() argument
|
/external/clang/test/CodeGen/ |
D | xcore-stringtype.c | 159 union U4{union U1 u1;}; union 163 void unionType4(union U4 u4) {} in unionType4()
|
/external/llvm-project/clang/test/CodeGen/ |
D | xcore-stringtype.c | 159 union U4{union U1 u1;}; union 163 void unionType4(union U4 u4) {} in unionType4()
|
/external/llvm-project/llvm/test/tools/llvm-opt-report/ |
D | func-2.test | 10 ; CHECK-NEXT: U4 | ^ 11 ; CHECK-NEXT: U4 | ^
|
D | func-x.test | 12 ; CHECK-NEXT: 3 U4 | for (int i = 0; i < n; ++i) 33 ; CHECK-NODEM-NEXT: 3 U4 | for (int i = 0; i < n; ++i)
|
/external/llvm-project/clang/test/Sema/ |
D | static-assert.c | 48 typedef UNION(float, 0.5f) U4; // expected-error {{expected a type}} \ typedef
|
/external/clang/test/Sema/ |
D | static-assert.c | 42 typedef UNION(float, 0.5f) U4; // expected-error {{expected a type}} typedef
|
/external/pcre/dist2/testdata/ |
D | grepoutput8 | 22 ---------------------------- Test U4 ------------------------------
|
/external/llvm-project/mlir/test/mlir-cpu-runner/ |
D | unranked_memref.mlir | 62 %U4 = memref_cast %I8 : memref<i8> to memref<*xi8> 63 call @print_memref_i8(%U4) : (memref<*xi8>) -> ()
|
/external/llvm-project/compiler-rt/lib/asan/tests/ |
D | asan_test_utils.h | 59 typedef uint32_t U4; typedef
|