Searched defs:h1 (Results 26 - 50 of 88) sorted by relevance

1234

/external/chromium_org/third_party/smhasher/src/
H A DMurmurHash3.cpp100 uint32_t h1 = seed; local
118 h1 ^= k1;
119 h1 = ROTL32(h1,13);
120 h1 = h1*5+0xe6546b64;
135 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1;
141 h1 ^= len;
143 h1 = fmix32(h1);
156 uint32_t h1 = seed; local
261 uint64_t h1 = seed; local
[all...]
H A DPMurHash.c150 #define DOBLOCK(h1, k1) do{ \
155 h1 ^= k1; \
156 h1 = ROTL32(h1,13); \
157 h1 = h1*5+0xe6546b64; \
162 /* cnt=bytes to process, h1=name of h1 var, c=carry, n=bytes in c, ptr/len=payload */
163 #define DOBYTES(cnt, h1, c, n, ptr, len) do{ \
169 DOBLOCK(h1,
180 uint32_t h1 = *ph1; local
288 uint32_t h1=seed, carry=0; local
298 uint32_t h1=seed, carry=0; local
[all...]
H A DSpooky.cpp135 uint64 h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11; local
147 h1=h4=h7=h10 = *hash2;
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);
182 *hash2 = h1;
200 uint64 h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11; local
224 h1=h4=h7=h10 = m_state[1];
230 h1
315 uint64 h1 = m_state[1]; 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,
173 h11+= h1; h2 ^= h11; h1 = Rot64(h1,44);
175 h1 += h3; h4 ^= h1; h3 = Rot64(h3,34);
184 h10+= h0; h1 ^= h10; h0 = Rot64(h0,54);
188 uint64 &h0, uint64 &h1, 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/chromium_org/ui/gfx/geometry/
H A Dcubic_bezier.cc23 const double h1 = p1_times_3 - p2_times_3 + 1.0; local
25 return t * (t * (t * h1 + h2) + h3);
29 const double h1 = 9.0 * p1 - 9.0 * p2 + 3.0; local
32 return t * (t * h1 + h2) + h3;
H A Drect_unittest.cc52 int h1; member in struct:gfx::__anon16845
71 Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
83 int h1; member in struct:gfx::__anon16846
113 Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
129 int h1; member in struct:gfx::Test
162 Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
187 int h1; member in struct:gfx::Test
214 Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
430 int h1; member in struct:gfx::Test
458 Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
474 float h1; member in struct:gfx::Test
524 float h1; member in struct:gfx::Test
587 float h1; member in struct:gfx::Test
[all...]
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-back-references.cpp56 void h1(const char* a, const char* b, VoidFunc c, VoidFunc d) {} function
57 // CHECK: "\01?h1@@YAXPBD0P6AXXZ1@Z"
/external/clang/test/SemaCXX/
H A Daddress-of-temporary.cpp36 void h1() { consume(Y{}.a); } function in namespace:PointerToArrayDecay
H A Dreturn-noreturn.cpp84 int h1(int x) { function in namespace:abort_struct_complex_cfgs
/external/jemalloc/include/jemalloc/internal/
H A Dhash.h93 uint32_t h1 = seed; local
110 h1 ^= k1;
111 h1 = hash_rotl_32(h1, 13);
112 h1 = h1*5 + 0xe6546b64;
126 k1 *= c2; h1 ^= k1;
131 h1 ^= len;
133 h1 = hash_fmix_32(h1);
145 uint32_t h1 = seed; local
247 uint64_t h1 = seed; local
[all...]
/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/oprofile/libpp/
H A Dop_header.cpp42 void op_check_header(opd_header const & h1, opd_header const & h2, argument
45 if (h1.mtime != h2.mtime) {
48 << h1.mtime << ", " << h2.mtime << ") for "
53 if (h1.is_kernel != h2.is_kernel) {
/external/chromium_org/content/renderer/pepper/
H A Dpepper_graphics_2d_host_unittest.cc106 int h1; member in struct:content::__anon7796
151 gfx::Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
/external/chromium_org/mojo/embedder/
H A Dembedder_unittest.cc187 MojoHandle h0, h1; local
188 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateMessagePipe(nullptr, &h0, &h1));
200 // Write one message to |server_mp|, attaching |h1|.
206 &h1,
209 h1 = MOJO_HANDLE_INVALID;
243 h1 = handles[0];
245 // Wait for |h1| to become readable.
248 MojoWait(h1, MOJO_HANDLE_SIGNAL_READABLE, MOJO_DEADLINE_INDEFINITE));
250 // Read a message from |h1|.
256 MojoReadMessage(h1,
[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
97 state->h1 += ((((uint64_t)t1 << 32) | t0) >> 26) & 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) +
122 state->h1 = (uint32_t)t[1] & 0x3ffffff;
156 state->h1 += ((((uint64_t)t1 << 32) | t0) >> 26) & 0x3ffffff;
201 state->h1
[all...]
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
H A Dp3.cpp106 template<typename T> void h1() { function in namespace:dependent
131 h1<int[3]>();
/external/clang/test/SemaTemplate/
H A Dalias-templates.cpp119 Hidden1<Hide> h1; member in namespace:PR11848
H A Dfriend-template.cpp309 H<int> h1; // ok member in namespace:PR12585
/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);
176 if( e->learnMax[1] < h1 ) e->learnMax[1]++;
207 e->learnMin[1] = l1; e->learnMax[1] = h1;
272 int h0 = p0 - M0, h1 = p1 - M1, h2 = p2 - M2; local
278 e->boxMin[1] <= l1 && h1 <= e->boxMax[1] &&
/external/openfst/src/include/fst/
H A Dpair-weight.h90 size_t h1 = value1_.Hash(); local
94 return h1 << lshift ^ h1 >> rshift ^ h2;
H A Dsigned-log-weight.h95 size_t h1; local
97 h1 = TropicalWeight(1.0).Hash();
99 h1 = TropicalWeight(-1.0).Hash();
103 return h1 << lshift ^ h1 >> rshift ^ h2;
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dproduct-weight.h73 ssize_t h1 = value1_.Hash(); local
77 return h1 << lshift ^ h1 >> rshift ^ h2;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicParameterization.cpp435 double e1, f1, g1, h1; local
437 alt_set_abcd(&one[0].y, e1, f1, g1, h1);
439 set_abcd(&one[0].y, e1, f1, g1, h1);
460 double h1 = one[3].y; local
461 calc_ABCD(a1, b1, c1, d1, e1, f1, g1, h1, p1);
477 calc_bc(h1, f1, g1);
484 p1[index] = (*calc_proc[procIndex])(a1, b1, c1, d1, e1, f1, g1, h1);
/external/chromium_org/third_party/webrtc/base/
H A Dstringencode.cc98 unsigned char h1, h2; local
104 && hex_decode(source[srcpos], &h1)
106 buffer[bufpos++] = (h1 << 4) | h2;
176 unsigned char h1, h2; local
184 && hex_decode(source[srcpos], &h1)
187 buffer[bufpos++] = (h1 << 4) | h2;
508 unsigned char h1, h2; local
509 if (!hex_decode(source[srcpos], &h1) ||
513 bbuffer[bufpos++] = (h1 << 4) | h2;

Completed in 488 milliseconds

1234