Searched defs:h0 (Results 1 - 25 of 26) sorted by relevance

12

/external/clang/test/CodeGen/
H A Dfp16-ops.c6 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
16 test = (h0);
49 h1 = h0 * h2;
55 h1 = h0 * (__fp16) -2.0;
59 h1 = h0 * f2;
69 h1 = (h0 / h2);
74 h1 = (h0 / (__fp16) -2.0);
78 h1 = (h0 / f2);
88 h1 = (h2 + h0);
93 h1 = ((__fp16)-2.0 + h0);
[all...]
/external/clang/test/Sema/
H A Dconstant-builtins.c17 int h0 = __builtin_types_compatible_p(int,float); variable
H A Dconstant-builtins-2.c168 int h0 = __builtin_types_compatible_p(int, float); variable
/external/chromium_org/mojo/public/c/system/tests/
H A Dcore_unittest.cc25 MojoHandle h0, h1; local
38 h0 = MOJO_HANDLE_INVALID;
41 MojoWaitMany(&h0, &sig, 1, MOJO_DEADLINE_INDEFINITE));
46 MojoWriteMessage(h0, buffer, 3, NULL, 0, MOJO_WRITE_MESSAGE_FLAG_NONE));
51 h0, buffer, &buffer_size, NULL, NULL, MOJO_READ_MESSAGE_FLAG_NONE));
56 MojoWriteData(h0, buffer, &buffer_size, MOJO_WRITE_DATA_FLAG_NONE));
60 h0, &write_pointer, &buffer_size, MOJO_WRITE_DATA_FLAG_NONE));
61 EXPECT_EQ(MOJO_RESULT_INVALID_ARGUMENT, MojoEndWriteData(h0, 1));
64 MojoReadData(h0, buffer, &buffer_size, MOJO_READ_DATA_FLAG_NONE));
68 h0,
80 MojoHandle h0, h1; local
241 MojoHandle h0, h1; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_tex_layout.c48 int h0, h1, q; local
50 h0 = ALIGN(mt->height0, mt->align_h);
53 qpitch = h0;
55 qpitch = (h0 + h1 + (intel->gen >= 7 ? 12 : 11) * mt->align_h);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_tex_layout.c48 int h0, h1, q; local
50 h0 = ALIGN(mt->height0, mt->align_h);
53 qpitch = h0;
55 qpitch = (h0 + h1 + (intel->gen >= 7 ? 12 : 11) * mt->align_h);
/external/chromium_org/mojo/public/cpp/system/tests/
H A Dcore_unittest.cc30 Handle h0; local
31 EXPECT_EQ(kInvalidHandleValue, h0.value());
32 EXPECT_EQ(kInvalidHandleValue, *h0.mutable_value());
33 EXPECT_FALSE(h0.is_valid());
43 h1.swap(h0);
44 EXPECT_EQ(static_cast<MojoHandle>(456), h0.value());
45 EXPECT_TRUE(h0.is_valid());
49 h0.swap(h1);
50 EXPECT_EQ(static_cast<MojoHandle>(789), h0.value());
51 EXPECT_TRUE(h0
151 ScopedMessagePipeHandle h0; local
194 ScopedMessagePipeHandle h0; local
297 ScopedMessagePipeHandle h0; local
344 ScopedMessagePipeHandle h0; local
[all...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dsha.h101 uint32_t h0, h1, h2, h3, h4; member in struct:sha_state_st
/external/chromium_org/third_party/smhasher/src/
H A DSpooky.cpp135 uint64 h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11; local
146 h0=h3=h6=h9 = *hash1;
158 Mix(u.p64, h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11);
167 Mix(buf, h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11);
177 Mix(buf, h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11);
180 End(h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11);
181 *hash1 = h0;
200 uint64 h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11; local
223 h0=h3=h6=h9 = m_state[0];
229 h0
314 uint64 h0 = m_state[0]; local
[all...]
H A DSpooky.h153 // Mix all 12 inputs together so that h0, h1 are a hash of them all.
158 // The final result will have each bit of h0, h1 flip
169 uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3,
174 h0 += h2; h3 ^= h0; h2 = Rot64(h2,15);
183 h9 += h11; h0 ^= h9; h11= Rot64(h11,42);
184 h10+= h0; h1 ^= h10; h0 = Rot64(h0,54);
188 uint64 &h0, uint6
168 EndPartial( uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3, uint64 &h4, uint64 &h5, uint64 &h6, uint64 &h7, uint64 &h8, uint64 &h9, uint64 &h10,uint64 &h11) argument
187 End( uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3, uint64 &h4, uint64 &h5, uint64 &h6, uint64 &h7, uint64 &h8, uint64 &h9, uint64 &h10,uint64 &h11) argument
212 ShortMix(uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3) argument
240 ShortEnd(uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3) argument
[all...]
/external/clang/test/SemaCXX/
H A Daddress-of-temporary.cpp35 void h0() { consume(Y().a); } function in namespace:PointerToArrayDecay
/external/openssl/crypto/sha/
H A Dsha.h102 SHA_LONG h0,h1,h2,h3,h4; member in struct:SHAstate_st
/external/openssl/include/openssl/
H A Dsha.h102 SHA_LONG h0,h1,h2,h3,h4; member in struct:SHAstate_st
/external/chromium_org/mojo/embedder/
H A Dembedder_unittest.cc187 MojoHandle h0, h1; local
188 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateMessagePipe(nullptr, &h0, &h1));
190 // Write a message to |h0| (attaching nothing).
193 MojoWriteMessage(h0,
211 // Write another message to |h0|.
214 MojoWriteMessage(h0,
294 // Wait for |h0| to become readable.
297 MojoWait(h0, MOJO_HANDLE_SIGNAL_READABLE, MOJO_DEADLINE_INDEFINITE));
299 // Read a message from |h0|.
303 MojoReadMessage(h0,
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/poly1305/
H A Dpoly1305.c65 uint32_t h0, h1, h2, h3, h4; member in struct:poly1305_state_st
96 state->h0 += t0 & 0x3ffffff;
103 t[0] = mul32x32_64(state->h0, state->r0) + mul32x32_64(state->h1, state->s4) +
106 t[1] = mul32x32_64(state->h0, state->r1) + mul32x32_64(state->h1, state->r0) +
109 t[2] = mul32x32_64(state->h0, state->r2) + mul32x32_64(state->h1, state->r1) +
112 t[3] = mul32x32_64(state->h0, state->r3) + mul32x32_64(state->h1, state->r2) +
115 t[4] = mul32x32_64(state->h0, state->r4) + mul32x32_64(state->h1, state->r3) +
119 state->h0 = (uint32_t)t[0] & 0x3ffffff;
133 state->h0 += b * 5;
155 state->h0
[all...]
H A Dpoly1305_vec.c770 uint64_t h0, h1, h2; local
783 h0 = st->HH[0];
800 h0 += t0 & 0xfffffffffff;
806 d[0] = add128(add128(mul64x64_128(h0, r0), mul64x64_128(h1, s2)),
808 d[1] = add128(add128(mul64x64_128(h0, r1), mul64x64_128(h1, r0)),
810 d[2] = add128(add128(mul64x64_128(h0, r2), mul64x64_128(h1, r1)),
812 h0 = lo128(d[0]) & 0xfffffffffff;
820 h0 += c * 5;
838 h0 += t0 & 0xfffffffffff;
846 c = (h0 >> 4
[all...]
/external/opencv/cvaux/src/
H A Dcvbgfg_codebook.cpp147 uchar p0, p1, p2, l0, l1, l2, h0, h1, h2; local
155 h0 = SAT_8U(p0 + cb0); h1 = SAT_8U(p1 + cb1); h2 = SAT_8U(p2 + cb2);
174 if( e->learnMax[0] < h0 ) e->learnMax[0]++;
206 e->learnMin[0] = l0; e->learnMax[0] = h0;
272 int h0 = p0 - M0, h1 = p1 - M1, h2 = p2 - M2; local
277 if( e->boxMin[0] <= l0 && h0 <= e->boxMax[0] &&
H A Dcvvecfacetracking.cpp833 double h0 = (double)ppNew[element[0]]->r.height * scale_templ; local
840 (int)pow(h0 - (double)rTempl[element[0]].height, 2) +
/external/chromium_org/third_party/speex/libspeex/
H A Dsb_celp.c146 static const spx_word16_t h0[64] = {2, -7, -7, 18, 15, -39, -25, 75, 35, -130, -41, 212, 38, -327, -17, 483, -32, -689, 124, 956, -283, -1307, 543, 1780, -973, -2467, 1733, 3633, -3339, -6409, 9059, 30153, 30153, 9059, -6409, -3339, 3633, 1733, -2467, -973, 1780, 543, -1307, -283, 956, 124, -689, -32, 483, -17, -327, 38, 212, -41, -130, 35, 75, -25, -39, 15, 18, -7, -7, 2}; variable
149 static const float h0[64] = { variable
338 /* Compute the two sub-bands by filtering with QMF h0*/
339 qmf_decomp(in, h0, low, high, st->full_frame_size, QMF_ORDER, st->h0_mem, stack);
864 qmf_synth(out, out+st->frame_size, h0, out, st->full_frame_size, QMF_ORDER, st->g0_mem, st->g1_mem, stack);
956 qmf_synth(out, out+st->frame_size, h0, out, st->full_frame_size, QMF_ORDER, st->g0_mem, st->g1_mem, stack);
1091 qmf_synth(out, out+st->frame_size, h0, out, st->full_frame_size, QMF_ORDER, st->g0_mem, st->g1_mem, stack);
/external/speex/libspeex/
H A Dsb_celp.c146 static const spx_word16_t h0[64] = {2, -7, -7, 18, 15, -39, -25, 75, 35, -130, -41, 212, 38, -327, -17, 483, -32, -689, 124, 956, -283, -1307, 543, 1780, -973, -2467, 1733, 3633, -3339, -6409, 9059, 30153, 30153, 9059, -6409, -3339, 3633, 1733, -2467, -973, 1780, 543, -1307, -283, 956, 124, -689, -32, 483, -17, -327, 38, 212, -41, -130, 35, 75, -25, -39, 15, 18, -7, -7, 2}; variable
149 static const float h0[64] = { variable
338 /* Compute the two sub-bands by filtering with QMF h0*/
339 qmf_decomp(in, h0, low, high, st->full_frame_size, QMF_ORDER, st->h0_mem, stack);
864 qmf_synth(out, out+st->frame_size, h0, out, st->full_frame_size, QMF_ORDER, st->g0_mem, st->g1_mem, stack);
956 qmf_synth(out, out+st->frame_size, h0, out, st->full_frame_size, QMF_ORDER, st->g0_mem, st->g1_mem, stack);
1091 qmf_synth(out, out+st->frame_size, h0, out, st->full_frame_size, QMF_ORDER, st->g0_mem, st->g1_mem, stack);
/external/chromium_org/third_party/webrtc/common_audio/vad/
H A Dvad_core.c128 int16_t h0, h1; local
241 h0 = (int16_t) (h0_test >> 12); // Q15
242 if (h0 > 0) {
246 ngprvec[channel] = (int16_t) WebRtcSpl_DivW32W16(tmp1_s32, h0); // Q14
/external/llvm/include/llvm/ADT/
H A DHashing.h267 uint64_t h0, h1, h2, h3, h4, h5, h6; member in struct:llvm::hashing::detail::hash_state
297 h0 = rotate(h0 + h1 + h3 + fetch64(s + 8), 37) * k1;
299 h0 ^= h6;
303 h4 = h0 + h5;
308 std::swap(h2, h0);
315 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0);
/external/webrtc/src/common_audio/vad/
H A Dvad_core.c334 WebRtc_Word16 h0, h1; local
407 h0 = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(h0test, 12); // Q15
447 if (h0 > 0)
451 ngprvec[pos] = (WebRtc_Word16)WebRtcSpl_DivW32W16(tmp32_2, h0);
/external/opencv/cxcore/src/
H A Dcxmathfuncs.cpp1398 int h0, h1, h2, h3; local
1400 h0 = x[i];
1402 buf[0].i = (h0 & LOGTAB_MASK2_32F) | (127 << 23);
1405 y0 = (((h0 >> 23) & 0xff) - 127) * ln_2;
1408 h0 = (h0 >> (23 - LOGTAB_SCALE - 1)) & LOGTAB_MASK * 2;
1411 y0 += icvLogTab[h0];
1417 x0 = LOGTAB_TRANSLATE( buf[0].f, h0 );
1435 y0 += LOGPOLY( x0, h0 == 510 );
1450 int h0 local
1498 int h0, h1, h2, h3; local
1560 int h0 = X[i].i.hi; local
[all...]
/external/deqp/framework/common/
H A DtcuTexLookupVerifier.cpp801 const int h0 = level0.getHeight(); local
806 const Vec2 vBounds0 = computeNonNormalizedCoordBounds(sampler.normalizedCoords, h0, coord.y(), prec.coordBits.y(), prec.uvwBits.y());
827 const Vec4 c0 = lookup<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), coordZ);
850 const int h0 = level0.getHeight(); local
857 const Vec2 vBounds0 = computeNonNormalizedCoordBounds(sampler.normalizedCoords, h0, coord.y(), prec.coordBits.y(), prec.uvwBits.y());
888 const Vec4 c0 = lookup<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), wrap(sampler.wrapR, k0, d0));
992 const int h0 = level0.getHeight(); local
997 const Vec2 vBounds0 = computeNonNormalizedCoordBounds(sampler.normalizedCoords, h0, coord.y(), prec.coordBits.y(), prec.uvwBits.y());
1025 const int y0 = wrap(sampler.wrapT, j0 , h0);
1026 const int y1 = wrap(sampler.wrapT, j0+1, h0);
1089 const int h0 = level0.getHeight(); local
[all...]

Completed in 2368 milliseconds

12