Searched defs:h4 (Results 1 - 24 of 24) sorted by relevance

/external/clang/test/Parser/
H A Dattributes.c41 void (*h4)(void (*f4)(__attribute__(()))); // expected-error {{expected parameter declarator}} variable
/external/clang/test/Sema/
H A Dconstant-builtins.c21 int h4 = __builtin_bswap32(0x1234) == 0x34120000 ? 1 : f(); variable
H A Dwarn-missing-prototypes.c19 int h4(int);
20 int h4();
25 int h4();
30 int h4(int x) { return x; } function
H A Dconstant-builtins-2.c172 int h4 = __builtin_bswap32(0x1234) == 0x34120000 ? 1 : f(); variable
/external/clang/test/Analysis/diagnostics/Inputs/include/
H A Dreport-issues-within-main-file.h38 int h4 = 0; local
39 h4 = in/h4;
40 h4++;
/external/clang/test/SemaCXX/
H A Daddress-of-temporary.cpp39 void h4() { consume(AZ{}); } function in namespace:PointerToArrayDecay
H A Dcxx0x-initializer-constructor.cpp194 H h4 = {1, 1}; // expected-error {{constructor is explicit}} member in struct:objects::memberinit
H A Dreturn-noreturn.cpp96 int h4(int x) { function in namespace:abort_struct_complex_cfgs
/external/jemalloc/include/jemalloc/internal/
H A Dhash.h169 uint32_t h4 = seed; local
199 h3 = hash_rotl_32(h3, 15); h3 += h4;
202 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4;
204 h4 = hash_rotl_32(h4, 13); h4 += h1;
205 h4 = h4*5 + 0x32ac3b17;
221 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4;
244 h1 ^= len; h2 ^= len; h3 ^= len; h4
[all...]
/external/skia/tests/
H A DSkNxTest.cpp261 auto h4 = Sk4h(15, 17, 257, 65535); local
262 auto f4 = SkNx_cast<float>(h4);
271 auto h4 = SkNx_cast<uint16_t>(f4); local
272 REPORTER_ASSERT(r, h4[0] == 15);
273 REPORTER_ASSERT(r, h4[1] == 17);
274 REPORTER_ASSERT(r, h4[2] == 257);
275 REPORTER_ASSERT(r, h4[3] == 65535);
/external/v8/test/mjsunit/
H A Dglobal-infinity-strict.js91 function h4() { return (1/0) == Infinity; } function
92 test(true, h4);
H A Dglobal-infinity.js82 function h4() { return (1/0) == Infinity; } function
83 test(true, h4);
H A Dglobal-nan-strict.js91 function h4() { return (0/0) == NaN; } function
92 test(false, h4);
H A Dglobal-nan.js82 function h4() { return (0/0) == NaN; } function
83 test(false, h4);
H A Dglobal-undefined-strict.js89 function h4() { return void 0 == undefined; } function
90 test(true, h4);
H A Dglobal-undefined.js90 function h4() { return void 0 == undefined; } function
91 test(true, h4);
/external/boringssl/src/crypto/poly1305/
H A Dpoly1305.c65 uint32_t h0, h1, h2, h3, h4; member in struct:poly1305_state_st
100 state->h4 += (t3 >> 8) | (1 << 24);
105 mul32x32_64(state->h4, state->s1);
108 mul32x32_64(state->h4, state->s2);
111 mul32x32_64(state->h4, state->s3);
114 mul32x32_64(state->h4, state->s4);
117 mul32x32_64(state->h4, state->r0);
131 state->h4 = (uint32_t)t[4] & 0x3ffffff;
163 state->h4 += (t3 >> 8);
208 state->h4
[all...]
/external/openssh/
H A Dpoly1305.c36 uint32_t h0,h1,h2,h3,h4; local
70 h4 = 0;
87 h4 += (t3 >> 8) | (1 << 24);
91 t[0] = mul32x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x32_64(h4,s1);
92 t[1] = mul32x32_64(h0,r1) + mul32x32_64(h1,r0) + mul32x32_64(h2,s4) + mul32x32_64(h3,s3) + mul32x32_64(h4,s2);
93 t[2] = mul32x32_64(h0,r2) + mul32x32_64(h1,r1) + mul32x32_64(h2,r0) + mul32x32_64(h3,s4) + mul32x32_64(h4,s3);
94 t[3] = mul32x32_64(h0,r3) + mul32x32_64(h1,r2) + mul32x32_64(h2,r1) + mul32x32_64(h3,r0) + mul32x32_64(h4,s4);
95 t[4] = mul32x32_64(h0,r4) + mul32x32_64(h1,r3) + mul32x32_64(h2,r2) + mul32x32_64(h3,r1) + mul32x32_64(h4,r0);
101 t[4] += b; h4 = (uint32_t)t[4] & 0x3ffffff; b = (uint32_t)(t[4] >> 26);
124 h4
[all...]
H A Dumac.c475 UINT64 h1,h2,h3,h4; local
487 h4 = *((UINT64 *)hp + 3);
502 h4 += MUL64((k12 + d0), (k16 + d4));
507 h4 += MUL64((k13 + d1), (k17 + d5));
512 h4 += MUL64((k14 + d2), (k18 + d6));
517 h4 += MUL64((k15 + d3), (k19 + d7));
529 ((UINT64 *)hp)[3] = h4;
/external/llvm/include/llvm/ADT/
H A DHashing.h262 uint64_t h0, h1, h2, h3, h4, h5, h6; member in struct:llvm::hashing::detail::hash_state
271 state.h6 = hash_16_bytes(state.h4, state.h5);
293 h1 = rotate(h1 + h4 + fetch64(s + 48), 42) * k1;
297 h3 = h4 * k1;
298 h4 = h0 + h5;
299 mix_32_bytes(s, h3, h4);
310 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0);
/external/libvpx/libvpx/vp9/encoder/mips/msa/
H A Dvp9_fdct16x16_msa.c89 v8i16 h0, h1, h2, h3, h4, h5, h6, h7, h10, h11; local
98 MADD_BF(g7, g5, g15, g13, k0, k1, k2, k0, h4, h5, h6, h7);
131 BUTTERFLY_4(h0, h2, h6, h4, out8, out9, out11, out10);
267 v8i16 h0, h1, h2, h3, h4, h5, h6, h7, h10, h11; local
279 MADD_BF(g7, g5, g15, g13, k0, k1, k2, k0, h4, h5, h6, h7);
312 BUTTERFLY_4(h0, h2, h6, h4, out8, out9, out11, out10);
/external/libvpx/libvpx/vpx_dsp/mips/
H A Didct16x16_msa.c331 v8i16 h0, h1, h2, h3, h4, h5, h6, h7, h8, h9, h10, h11; local
399 MADD_BF(g7, g5, g15, g13, k0, k1, k2, k0, h4, h5, h6, h7);
400 BUTTERFLY_4(h0, h2, h6, h4, out8, out9, out11, out10);
/external/boringssl/src/crypto/curve25519/
H A Dcurve25519.c63 int64_t h4 = load_3(s + 13) << 2; local
82 carry3 = (h3 + (int64_t) (1<<24)) >> 25; h4 += carry3; h3 -= carry3 << 25;
88 carry4 = (h4 + (int64_t) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26;
96 h[4] = h4;
131 int32_t h4 = h[4]; local
154 q = (h4 + q) >> 26;
168 carry3 = h3 >> 25; h4 += carry3; h3 -= carry3 << 25;
169 carry4 = h4 >> 26; h5 += carry4; h4
428 int64_t h4 = f0g4+f1g3_2 +f2g2 +f3g1_2 +f4g0 +f5g9_38+f6g8_19+f7g7_38+f8g6_19+f9g5_38; local
598 int64_t h4 = f0f4_2+f1f3_4 +f2f2 +f5f9_76+f6f8_38+f7f7_38; local
855 int64_t h4 = f0f4_2+f1f3_4 +f2f2 +f5f9_76+f6f8_38+f7f7_38; local
4735 int64_t h4 = f4 * (int64_t) 121666; local
[all...]
/external/v8/test/cctest/heap/
H A Dtest-heap.cc546 Handle<Object> h4; local
557 h4 = global_handles->Create(*u);
566 CHECK((*h4)->IsHeapNumber());
572 CHECK_EQ(*h4, *h2);
574 GlobalHandles::Destroy(h4.location());

Completed in 1848 milliseconds