Home
last modified time | relevance | path

Searched refs:U4 (Results 1 – 25 of 54) sorted by relevance

123

/external/compiler-rt/lib/asan/tests/
Dasan_asm_test.cc121 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()
Dasan_test_utils.h60 typedef uint32_t U4; typedef
/external/libsrtp2/crypto/cipher/
Daes.c1323 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/
Dmsan_test.cpp135 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/
Dp3.cpp63 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/
Dp3.cpp63 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/
Dmsan_test.cc126 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/
Dmove_convert.pass.cpp120 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/
Dmove_convert.pass.cpp121 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/
Derr_typecheck_assign_const.cpp61 struct U4 { struct
66 U4 u4; in test6() argument
/external/clang/test/CXX/class/class.union/
Dp1.cpp99 union U4 { union
102 int U4::i1 = 10;
/external/llvm-project/clang/test/CXX/class/class.union/
Dp1.cpp99 union U4 { union
102 int U4::i1 = 10;
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
Dmove_convert.pass.cpp217 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/
Dmove_convert.pass.cpp216 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/
Drijndael-alg-fst.c113 ^ *((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/
Derr_typecheck_assign_const.cpp61 struct U4 { struct
66 U4 u4; in test6() argument
/external/clang/test/CodeGen/
Dxcore-stringtype.c159 union U4{union U1 u1;}; union
163 void unionType4(union U4 u4) {} in unionType4()
/external/llvm-project/clang/test/CodeGen/
Dxcore-stringtype.c159 union U4{union U1 u1;}; union
163 void unionType4(union U4 u4) {} in unionType4()
/external/llvm-project/llvm/test/tools/llvm-opt-report/
Dfunc-2.test10 ; CHECK-NEXT: U4 | ^
11 ; CHECK-NEXT: U4 | ^
Dfunc-x.test12 ; 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/
Dstatic-assert.c48 typedef UNION(float, 0.5f) U4; // expected-error {{expected a type}} \ typedef
/external/clang/test/Sema/
Dstatic-assert.c42 typedef UNION(float, 0.5f) U4; // expected-error {{expected a type}} typedef
/external/pcre/dist2/testdata/
Dgrepoutput822 ---------------------------- Test U4 ------------------------------
/external/llvm-project/mlir/test/mlir-cpu-runner/
Dunranked_memref.mlir62 %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/
Dasan_test_utils.h59 typedef uint32_t U4; typedef

123