HomeSort by relevance Sort by last modified time
    Searched defs:h5 (Results 1 - 14 of 14) sorted by null

  /external/clang/test/Sema/
constant-builtins.c 22 int h5 = __builtin_bswap64(0x1234) == 0x3412000000000000 ? 1 : f(); variable
constant-builtins-2.c 173 int h5 = __builtin_bswap64(0x1234) == 0x3412000000000000 ? 1 : f(); variable
  /external/v8/test/mjsunit/
global-infinity-strict.js 94 function h5() { return Infinity == (1/0); } function
95 test(true, h5);
global-infinity.js 85 function h5() { return Infinity == (1/0); } function
86 test(true, h5);
global-nan-strict.js 94 function h5() { return NaN == (0/0); } function
95 test(false, h5);
global-nan.js 85 function h5() { return NaN == (0/0); } function
86 test(false, h5);
global-undefined-strict.js 92 function h5() { return undefined == void 0; } function
93 test(true, h5);
global-undefined.js 93 function h5() { return undefined == void 0; } function
94 test(true, h5);
  /external/clang/test/SemaCXX/
return-noreturn.cpp 100 int h5(int x) { function in namespace:abort_struct_complex_cfgs
  /external/llvm/include/llvm/ADT/
Hashing.h 262 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);
296 h2 = rotate(h2 + h5, 33) * k1;
298 h4 = h0 + h5;
300 h5 = h2 + h6;
302 mix_32_bytes(s + 32, h5, h6);
309 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2,
  /external/libvpx/libvpx/vp9/encoder/mips/msa/
vp9_fdct16x16_msa.c 89 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);
113 MADD_BF(h1, h3, h5, h7, k0, k1, k2, k0, out12, out14, out13, out15);
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);
295 MADD_BF(h1, h3, h5, h7, k0, k1, k2, k0, out12, out14, out13, out15);
  /external/libvpx/libvpx/vpx_dsp/mips/
idct16x16_msa.c 331 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);
428 MADD_BF(h1, h3, h5, h7, k0, k1, k2, k0, out12, out14, out13, out15);
  /libcore/jsr166-tests/src/test/java/jsr166/
CompletableFutureTest.java 1290 final CompletableFuture<Void> h5 = m.runAfterEither(f, f, rs[5]); local
1323 final CompletableFuture<Void> h5 = m.runAfterEither(f, f, rs[5]); local
1355 final CompletableFuture<Void> h5 = m.runAfterEither(f, f, rs[5]); local
1384 final CompletableFuture<Void> h5 = m.runAfterEither(f, f, rs[5]); local
2126 final CompletableFuture<Integer> h5 = m.applyToEither(g, f, rs[5]); local
2174 final CompletableFuture<Integer> h5 = m.applyToEither(g, f, rs[5]); local
2282 final CompletableFuture<Integer> h5 = m.applyToEither(g, f, rs[5]); local
2387 final CompletableFuture<Integer> h5 = m.applyToEither(g, f, rs[5]); local
2435 final CompletableFuture<Void> h5 = m.acceptEither(g, f, rs[5]); local
2484 final CompletableFuture<Void> h5 = m.acceptEither(g, f, rs[5]); local
2593 final CompletableFuture<Void> h5 = m.acceptEither(g, f, rs[5]); local
2646 final CompletableFuture<Void> h5 = m.acceptEither(g, f, rs[5]); local
2694 final CompletableFuture<Void> h5 = m.runAfterEither(g, f, rs[5]); local
2739 final CompletableFuture<Void> h5 = m.runAfterEither(g, f, rs[5]); local
2848 final CompletableFuture<Void> h5 = m.runAfterEither(g, f, rs[5]); local
2898 final CompletableFuture<Void> h5 = m.runAfterEither(g, f, rs[5]); local
    [all...]
  /external/boringssl/src/crypto/curve25519/
curve25519.c 64 int64_t h5 = load_4(s + 16); local
83 carry5 = (h5 + (int64_t) (1<<24)) >> 25; h6 += carry5; h5 -= carry5 << 25;
88 carry4 = (h4 + (int64_t) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26;
97 h[5] = h5;
132 int32_t h5 = h[5]; local
155 q = (h5 + q) >> 25;
169 carry4 = h4 >> 26; h5 += carry4; h4 -= carry4 << 26;
170 carry5 = h5 >> 25; h6 += carry5; h5 -= carry5 << 25
429 int64_t h5 = f0g5+f1g4 +f2g3 +f3g2 +f4g1 +f5g0 +f6g9_19+f7g8_19+f8g7_19+f9g6_19; local
599 int64_t h5 = f0f5_2+f1f4_2 +f2f3_2 +f6f9_38+f7f8_38; local
856 int64_t h5 = f0f5_2+f1f4_2 +f2f3_2 +f6f9_38+f7f8_38; local
4736 int64_t h5 = f5 * (int64_t) 121666; local
    [all...]

Completed in 154 milliseconds