Home
last modified time | relevance | path

Searched refs:U1 (Results 1 – 25 of 74) sorted by relevance

123

/external/valgrind/main/memcheck/tests/
Dsh-mem-random.c13 typedef unsigned char U1; typedef
37 U8 build(int size, U1 byte) in build()
63 U1 make_defined ( U1 x ) in make_defined()
65 volatile U1 xx = x; in make_defined()
70 void check(U1* arr, int n, char* who) in check()
73 U1* shadow = malloc(n); in check()
74 U1 arr_i; in check()
100 static inline U1 randomU1 ( void ) in randomU1()
109 void do_test_at ( U1* arr ) in do_test_at()
120 arr[i] = (U1)build(1, randomU1()); in do_test_at()
[all …]
Dsh-mem.c12 typedef unsigned char U1; typedef
38 U8 build(int size, U1 byte) in build()
68 void check_all(U4 x, U4 y, U1 expected_byte, U1 expected_byte_alt, in check_all()
71 U1 sh[SZB_OF_a]; // Used for getting a[]'s V bits in check_all()
89 U1 *undefA, expected_byte, expected_byte_alt; in main()
101 assert( ((U1*)(&a[0])) < ((U1*)(32ULL * 1024*1024*1024)/*32G*/) ); in main()
105 assert(1 == sizeof(U1)); in main()
143 Ty* aNb = (Ty*)(((U1*)aN) + h); /* set offset from a[] */ \ in main()
144 Ty* bNb = (Ty*)(((U1*)bN) + h); /* set offset from b[] */ \ in main()
208 DO(1, U1, U1, /*isF4*/0); in main()
Dsh-mem.stderr.exp1 -- NNN: 1 U1 U1 ------------------------
/external/chromium_org/third_party/opus/src/src/
Dmlp_train.h64 float U1, U2, S, x; in randn() local
66 U1 = ((float)rand())/RAND_MAX; in randn()
68 U1 = 2*U1-1; in randn()
70 S = U1*U1 + U2*U2; in randn()
72 x = sd*sqrt(-2 * log(S) / S) * U1; in randn()
/external/clang/test/CXX/class/class.union/
Dp2-0x.cpp5 union U1 { union
14 constexpr int U1::k1;
15 constexpr int U1::k2;
16 int U1::k3;
18 const double U1::k4;
19 const double U1::k5;
/external/srtp/crypto/cipher/
Daes.c399 static uint32_t U1[256] = { variable
937 static uint32_t U1[256] = { variable
1444 U1[T4[(tmp >> 16) & 0xff] & 0xff] ^ in aes_expand_decryption_key()
1451 U1[T4[(tmp >> 16) & 0xff] & 0xff] ^ in aes_expand_decryption_key()
1458 U1[T4[(tmp >> 16) & 0xff] & 0xff] ^ in aes_expand_decryption_key()
1465 U1[T4[(tmp >> 16) & 0xff] & 0xff] ^ in aes_expand_decryption_key()
1473 ^ U1[aes_sbox[expanded_key[i].v8[1]]] in aes_expand_decryption_key()
1478 ^ U1[aes_sbox[expanded_key[i].v8[5]]] in aes_expand_decryption_key()
1483 ^ U1[aes_sbox[expanded_key[i].v8[9]]] in aes_expand_decryption_key()
1488 ^ U1[aes_sbox[expanded_key[i].v8[13]]] in aes_expand_decryption_key()
[all …]
/external/compiler-rt/lib/asan/tests/
Dasan_oob_test.cc70 OOBTest<U1>(); in TEST()
113 oob_test<U1>(10, -1); in TEST()
117 oob_test<U1>(kLargeMalloc, -1); in TEST()
121 oob_test<U1>(10, 10); in TEST()
125 oob_test<U1>(kLargeMalloc, kLargeMalloc); in TEST()
Dasan_test.cc166 EXPECT_DEATH(uaf_test<U1>(1, 0), uaf_string); in TEST()
167 EXPECT_DEATH(uaf_test<U1>(10, 0), uaf_string); in TEST()
168 EXPECT_DEATH(uaf_test<U1>(10, 10), uaf_string); in TEST()
169 EXPECT_DEATH(uaf_test<U1>(kLargeMalloc, 0), uaf_string); in TEST()
170 EXPECT_DEATH(uaf_test<U1>(kLargeMalloc, kLargeMalloc / 2), uaf_string); in TEST()
1162 uaf_test<U1>(10, 0); in TEST()
1165 uaf_test<U1>(10, -2); in TEST()
1168 uaf_test<U1>(10, 10); in TEST()
1172 uaf_test<U1>(kLargeMalloc, 0); in TEST()
Dasan_test_utils.h62 typedef uint8_t U1; typedef
/external/openfst/src/test/
Dalgo_test.h90 VectorFst<Arc> U1(T1); in TestRational()
91 Union(&U1, T2); in TestRational()
93 CHECK(Equiv(U1, U2)); in TestRational()
126 VectorFst<Arc> U1(T1); in TestRational()
127 Union(&U1, T2); in TestRational()
128 Union(&U1, T3); in TestRational()
135 CHECK(Equiv(U1, U4)); in TestRational()
140 UnionFst<Arc> U1(T1, T2); in TestRational()
141 UnionFst<Arc> U2(U1, T3); in TestRational()
152 UnionFst<Arc> U1(T1, T2); in TestRational()
[all …]
/external/clang/test/SemaObjC/
Dclass-proto-1.m26 @class U1, U2; // expected-note {{forward declaration of class here}}
28 @interface E3 : U1 @end // expected-error {{attempting to use the forward class 'U1' as superclass …
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
D067-nested-ifdef-ifndef.c6 #ifdef U1
34 #ifndef U1
/external/mesa3d/src/glsl/glcpp/tests/
D067-nested-ifdef-ifndef.c6 #ifdef U1
34 #ifndef U1
/external/dropbear/libtommath/
Dbn_mp_exteuclid.c21 int mp_exteuclid(mp_int *a, mp_int *b, mp_int *U1, mp_int *U2, mp_int *U3) in mp_exteuclid() argument
70 if (U1 != NULL) { mp_exch(U1, &u1); } in mp_exteuclid()
/external/srtp/tables/
Daes_tables.c139 uint32_t U0[256], U1[256], U2[256], U3[256], U4[256]; variable
168 U1[i] = tmp.value; in aes_compute_inv_tables()
223 printf("0x%x, ", U1[i]); in main()
265 printf("0x%lx, ", U1[i]); in main()
/external/clang/test/SemaTemplate/
Dfriend-template.cpp125 template<class U1, class U2, class U3, class T>
126 friend A<U1, U2, U3>& inner::f0(A<U1, U2, U3>&, T);
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
Drijndael-alg-fst.c110 *((const word32*)U1[w[0]]) in rijndaelKeyEncToDec()
117 *((const word32*)U1[w[0]]) in rijndaelKeyEncToDec()
124 *((const word32*)U1[w[0]]) in rijndaelKeyEncToDec()
131 *((const word32*)U1[w[0]]) in rijndaelKeyEncToDec()
447 *((const word32*)U1[a[0][0]]) in rijndaelDecryptRound()
453 *((const word32*)U1[a[1][0]]) in rijndaelDecryptRound()
459 *((const word32*)U1[a[2][0]]) in rijndaelDecryptRound()
465 *((const word32*)U1[a[3][0]]) in rijndaelDecryptRound()
/external/clang/test/Analysis/Inputs/
Dsystem-header-simulator-cxx.h17 template<class U1, class U2>
18 pair(const pair<U1, U2> &other) : first(other.first), second(other.second) {} in pair()
/external/clang/test/SemaCXX/
Dinherit.cpp21 union U1 : public A { }; // expected-error{{unions cannot have base classes}} union
/external/clang/test/Sema/
Dstatic-assert.c39 typedef UNION(unsigned, struct A) U1; typedef
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowLocation.java262 double U1 = Math.atan((1.0 - f) * Math.tan(lat1)); in computeDistanceAndBearing() local
265 double cosU1 = Math.cos(U1); in computeDistanceAndBearing()
267 double sinU1 = Math.sin(U1); in computeDistanceAndBearing()
/external/checkpolicy/
Dpolicy_scan.l205 U1 { return(U1); }
/external/chromium_org/third_party/tlslite/tlslite/utils/
Drijndael.py165 U1 = [] variable
183 U1.append(mul4(t, iG[0]))
279 Kd[r][j] = U1[(tt >> 24) & 0xFF] ^ \
/external/compiler-rt/lib/msan/tests/
Dmsan_test.cc58 typedef unsigned char U1; typedef
223 EXPECT_POISONED(*GetPoisoned<U1>()); in TEST()
224 EXPECT_POISONED(*GetPoisoned<U1>()); in TEST()
225 EXPECT_POISONED(*GetPoisoned<U1>()); in TEST()
328 ((U1*)p)[1] = 0; in TEST()
329 ((U1*)p)[2] = 0xff; in TEST()
367 EXPECT_NOT_POISONED(applyNot<U1>(0x0, 0x0)); in TEST()
368 EXPECT_NOT_POISONED(applyNot<U1>(0xFF, 0xFE)); in TEST()
369 EXPECT_NOT_POISONED(applyNot<U1>(0xFF, 0x0)); in TEST()
370 EXPECT_POISONED(applyNot<U1>(0xFF, 0xFF)); in TEST()
[all …]
/external/protobuf/gtest/include/gtest/internal/
Dgtest-tuple.h.pump154 template <typename U0, typename U1>
155 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}
167 template <typename U0, typename U1>
168 tuple& operator=(const ::std::pair<U0, U1>& p) {

123