Searched defs:h3 (Results 1 - 25 of 27) sorted by relevance

12

/external/clang/test/PCH/Inputs/
H A Dchain-macro-override1.h8 #define h3() macro
9 #undef h3 macro
/external/clang/test/OpenMP/
H A Dsimd_metadata.c120 void h3(float *c, float *a, float *b, int size) function
122 // CHECK-LABEL: define void @h3
144 // Metadata for h3:
/external/clang/test/Parser/
H A Dattributes.c40 void (*h3)(void (*f3)(__attribute__(()) x)); // expected-warning {{defaults to 'int'}} variable
/external/clang/test/Sema/
H A Dconstant-builtins.c20 int h3 = __builtin_bswap16(0x1234) == 0x3412 ? 1 : f(); variable
H A Dwarn-missing-prototypes.c18 int h3();
24 int h3(int x);
29 int h3(int x) { return x; } // expected-warning{{no previous prototype for function 'h3'}} function
H A Dconstant-builtins-2.c171 int h3 = __builtin_bswap16(0x1234) == 0x3412 ? 1 : f(); variable
/external/clang/test/Analysis/diagnostics/Inputs/include/
H A Dreport-issues-within-main-file.h30 int h3 = 0; local
31 h3 = in/h3;
32 h3++;
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-back-references.cpp62 PInt3Func h3(PInt3Func x, PInt3Func y, int* z) { return 0; } function
63 // CHECK: "\01?h3@@YAP6APAHPAH0@ZP6APAH00@Z10@Z"
H A Dstatic-init.cpp44 void h3() { function
H A Dmangle-ms.cpp107 extern int * const __restrict h3 = &a; variable
108 // CHECK-DAG: @"\01?h3@@3QIAHIA"
109 // X64-DAG: @"\01?h3@@3QEIAHEIA"
/external/clang/test/SemaCXX/
H A Daddress-of-temporary.cpp38 void h3() { consume((A){}); } function in namespace:PointerToArrayDecay
H A Dreturn-noreturn.cpp92 int h3(int x) { function in namespace:abort_struct_complex_cfgs
/external/jemalloc/include/jemalloc/internal/
H A Dhash.h164 uint32_t h3 = seed; local
190 h2 = hash_rotl_32(h2, 17); h2 += h3;
193 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
195 h3 = hash_rotl_32(h3, 15); h3 += h4;
196 h3 = h3*5 + 0x96cd1c35;
223 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
240 h1 ^= len; h2 ^= len; h3
[all...]
/external/libmojo/mojo/public/cpp/system/tests/
H A Dcore_unittest.cc75 Handle h3; local
80 handle_to_int[h3] = 3;
89 EXPECT_FALSE(handle_to_int.find(h3) == handle_to_int.end());
90 EXPECT_EQ(3, handle_to_int[h3]);
367 ScopedMessagePipeHandle h3; local
368 if (CreateMessagePipe(nullptr, &h2, &h3) != MOJO_RESULT_OK)
369 CreateMessagePipe(nullptr, &h2, &h3); // Must be old EDK.
371 // Write a message to |h2|, before we send |h3|.
381 // And also a message to |h3|.
383 WriteMessageRaw(h3
421 ScopedMessagePipeHandle h3; local
[all...]
/external/boringssl/src/crypto/poly1305/
H A Dpoly1305.c47 uint32_t h0, h1, h2, h3, h4; member in struct:poly1305_state_st
86 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff;
91 mul32x32_64(state->h2, state->s3) + mul32x32_64(state->h3, state->s2) +
94 mul32x32_64(state->h2, state->s4) + mul32x32_64(state->h3, state->s3) +
97 mul32x32_64(state->h2, state->r0) + mul32x32_64(state->h3, state->s4) +
100 mul32x32_64(state->h2, state->r1) + mul32x32_64(state->h3, state->r0) +
103 mul32x32_64(state->h2, state->r2) + mul32x32_64(state->h3, state->r1) +
115 state->h3 = (uint32_t)t[3] & 0x3ffffff;
149 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff;
194 state->h3
[all...]
/external/openssh/
H A Dpoly1305.c36 uint32_t h0,h1,h2,h3,h4; local
69 h3 = 0;
86 h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff;
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);
100 t[3] += b; h3 = (uint32_t)t[3] & 0x3ffffff; b = (uint32_t)(t[3] >> 26);
123 h3
[all...]
H A Dumac.c420 UINT64 h1,h2,h3; local
430 h3 = *((UINT64 *)hp + 2);
443 h3 += MUL64((k8 + d0), (k12 + d4));
447 h3 += MUL64((k9 + d1), (k13 + d5));
451 h3 += MUL64((k10 + d2), (k14 + d6));
455 h3 += MUL64((k11 + d3), (k15 + d7));
465 ((UINT64 *)hp)[2] = h3;
475 UINT64 h1,h2,h3,h4; local
486 h3 = *((UINT64 *)hp + 2);
501 h3
[all...]
/external/skia/src/utils/
H A DSkPatchUtils.cpp54 Sk2s h3 = h2 * h; local
55 Sk2s fwDiff3 = Sk2s(6) * fCoefs.fA * h3;
58 fFwDiff[1] = to_point(fCoefs.fA * h3 + fCoefs.fB * h2 + fCoefs.fC * h);
/external/llvm/include/llvm/ADT/
H A DHashing.h261 uint64_t h0, h1, h2, h3, h4, h5, h6; member in struct:llvm::hashing::detail::hash_state
291 h0 = rotate(h0 + h1 + h3 + fetch64(s + 8), 37) * k1;
294 h1 += h3 + fetch64(s + 40);
296 h3 = h4 * k1;
298 mix_32_bytes(s, h3, h4);
308 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2,
/external/libvpx/libvpx/vp9/encoder/mips/msa/
H A Dvp9_fdct16x16_msa.c20 v8i16 tp0, tp1, tp2, tp3, g0, g1, g2, g3, g8, g9, g10, g11, h0, h1, h2, h3; local
52 MADD_BF(g1, g3, g9, g11, k0, k1, k2, k0, h0, h1, h2, h3);
55 ST_SH2(h3, h2, int_buf + 12 * 8, 8);
77 MADD_BF(r13, r2, r5, r10, k0, k1, k2, k3, h0, h1, h2, h3);
79 ST_SH2(h1, h3, int_buf + 11 * 8, 4 * 8);
89 v8i16 h0, h1, h2, h3, h4, h5, h6, h7, h10, h11; local
112 h3 = LD_SH(int_buf + 12 * 8);
113 MADD_BF(h1, h3, h5, h7, k0, k1, k2, k0, out12, out14, out13, out15);
206 v8i16 tp0, tp1, tp2, tp3, g0, g1, g2, g3, g8, g9, g10, g11, h0, h1, h2, h3; local
236 MADD_BF(g1, g3, g9, g11, k0, k1, k2, k0, h0, h1, h2, h3);
267 v8i16 h0, h1, h2, h3, h4, h5, h6, h7, h10, h11; local
[all...]
/external/libvpx/libvpx/vpx_dsp/mips/
H A Didct16x16_msa.c329 v8i16 h0, h1, h2, h3, h4, h5, h6, h7, h8, h9, h10, h11; local
360 MADD_BF(g1, g3, g9, g11, k0, k1, k2, k0, h0, h1, h2, h3);
426 MADD_BF(h1, h3, h5, h7, k0, k1, k2, k0, out12, out14, out13, out15);
/external/vboot_reference/tests/
H A Dcgptlib_test.c301 GptHeader h3; local
305 Memcpy(&h3, h2, sizeof(h3));
306 h3.signature[0] ^= 0xba;
307 EXPECT(1 == HeaderFieldsSame(h1, &h3));
309 Memcpy(&h3, h2, sizeof(h3));
310 h3.revision++;
311 EXPECT(1 == HeaderFieldsSame(h1, &h3));
313 Memcpy(&h3, h
[all...]
/external/opencv/cxcore/src/
H A Dcxmathfuncs.cpp1398 int h0, h1, h2, h3; local
1415 h3 = x[i+3];
1421 buf[3].i = (h3 & LOGTAB_MASK2_32F) | (127 << 23);
1424 y3 = (((h3 >> 23) & 0xff) - 127) * ln_2;
1427 h3 = (h3 >> (23 - LOGTAB_SCALE - 1)) & LOGTAB_MASK * 2;
1430 y3 += icvLogTab[h3];
1433 x3 = LOGTAB_TRANSLATE( buf[3].f, h3 );
1442 y3 += LOGPOLY( x3, h3 == 510 );
1498 int h0, h1, h2, h3; local
[all...]
/external/libpcap/
H A Dpcap-linux.c375 struct tpacket_block_desc *h3; member in union:thdr
4332 if (status != (h.h3->hdr.bh1.block_status ? TP_STATUS_USER :
4863 handlep->current_packet = h.raw + h.h3->hdr.bh1.offset_to_first_pkt;
4864 handlep->packets_left = h.h3->hdr.bh1.num_pkts;
4910 h.h3->hdr.bh1.block_status = TP_STATUS_KERNEL;
/external/boringssl/src/crypto/curve25519/
H A Dcurve25519.c62 int64_t h3 = load_3(s + 10) << 3; local
82 carry3 = h3 + (1 << 24); h4 += carry3 >> 25; h3 -= carry3 & kTop39Bits;
87 carry2 = h2 + (1 << 25); h3 += carry2 >> 26; h2 -= carry2 & kTop38Bits;
95 h[3] = h3;
130 int32_t h3 = h[3]; local
143 q = (h3 + q) >> 25;
157 h3 += h2 >> 26; h2 &= kBottom26Bits;
158 h4 += h3 >> 25; h3
417 int64_t h3 = f0g3+f1g2 +f2g1 +f3g0 +f4g9_19+f5g8_19+f6g7_19+f7g6_19+f8g5_19+f9g4_19; local
587 int64_t h3 = f0f3_2+f1f2_2 +f4f9_38+f5f8_38+f6f7_38; local
838 int64_t h3 = f0f3_2+f1f2_2 +f4f9_38+f5f8_38+f6f7_38; local
4756 int64_t h3 = f3 * (int64_t) 121666; local
[all...]

Completed in 2016 milliseconds

12