HomeSort by relevance Sort by last modified time
    Searched refs:h2 (Results 1 - 25 of 664) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p7.cpp 6 extern void h2(int x = sizeof(i)); // expected-error {{default argument references local variable 'i' of enclosing function}}
  /external/clang/test/Modules/
declare-use2.cpp 7 const int h2 = h1+e+f; variable
  /external/clang/test/PCH/
chain-macro-override.c 13 h2(); // expected-warning{{implicit declaration of function 'h2' is invalid in C99}}
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.arithmetic/
op_++int.pass.cpp 25 std::chrono::hours h2 = h1++; local
26 return h1.count() == 4 && h2.count() == 3;
34 std::chrono::hours h2 = h1++; local
36 assert(h2.count() == 3);
op_--int.pass.cpp 25 std::chrono::hours h2 = h1--; local
26 return h1.count() == 2 && h2.count() == 3;
35 std::chrono::hours h2 = h1--; local
37 assert(h2.count() == 3);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.arithmetic/
op_++int.pass.cpp 25 std::chrono::hours h2 = h1++; local
26 return h1.count() == 4 && h2.count() == 3;
34 std::chrono::hours h2 = h1++; local
36 assert(h2.count() == 3);
op_--int.pass.cpp 25 std::chrono::hours h2 = h1--; local
26 return h1.count() == 2 && h2.count() == 3;
35 std::chrono::hours h2 = h1--; local
37 assert(h2.count() == 3);
  /external/clang/test/Analysis/diagnostics/Inputs/include/
report-issues-within-main-file.h 22 int h2 = 0; local
23 h2 = in/h2;
24 h2++;
  /external/clang/test/PCH/Inputs/
chain-macro-override2.h 6 #undef h2 macro
chain-macro-override1.h 6 #define h2() f() macro
  /external/clang/test/CodeGen/
fp16-ops.c 16 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
77 h1 = h0 * h2;
96 h1 = f0 * h2;
108 h1 = (h0 / h2);
126 h1 = (f0 / h2);
138 h1 = (h2 + h0);
150 h1 = (h2 + f0);
168 h1 = (h2 - h0);
180 h1 = (h2 - f0);
197 test = (h2 < h0)
    [all...]
  /external/clang/test/SemaCXX/
cv-unqual-rvalues.cpp 11 template<typename T, T X> void h2() { function
23 h2<const int, 0>(); // expected-note{{instantiation of}}
borland-extensions.cpp 25 template<typename T> int h2(T (__pascal M::* const )()) { return 0; }
31 i = h2<int>(&M::addP);
32 f = h2(&M::subtractP);
  /external/robolectric/v1/lib/main/
h2-1.2.147.jar 
  /external/guava/guava/src/com/google/common/hash/
Murmur3_128HashFunction.java 83 private long h2; field in class:Murmur3_128HashFunction.Murmur3_128Hasher
89 this.h2 = seed;
104 h1 += h2;
107 h2 ^= mixK2(k2);
109 h2 = Long.rotateLeft(h2, 31);
110 h2 += h1;
111 h2 = h2 * 5 + 0x38495ab5;
155 h2 ^= mixK2(k2)
    [all...]
  /external/swiftshader/third_party/LLVM/utils/
parseNLT.pl 27 if (/<h2>(Programs.+)<\/h2>/)
  /external/clang/test/Sema/
warn-missing-prototypes.c 23 int h2(int x);
28 int h2(int x) { return x; } // expected-warning{{no previous prototype for function 'h2'}} function
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
fp16_globals.rs 30 void validateHalf2(half2 h2) {
31 _RS_ASSERT_EQU((float) h2.x, 10.f);
32 _RS_ASSERT_EQU((float) h2.y, 11.f);
48 void test(half h, half2 h2, half3 h3, half4 h4) {
55 validateHalf2(h2);
  /external/boringssl/src/ssl/test/runner/poly1305/
sum_ref.go 16 h0, h1, h2, h3, h4 uint32 // the hash accumulators
32 h2 += (binary.LittleEndian.Uint32(msg[6:]) >> 4) & 0x3ffffff
37 d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) * R1)
38 d1 := (d0 >> 26) + (uint64(h0) * r1) + (uint64(h1) * r0) + (uint64(h2) * R4) + (uint64(h3) * R3) + (uint64(h4) * R2)
39 d2 := (d1 >> 26) + (uint64(h0) * r2) + (uint64(h1) * r1) + (uint64(h2) * r0) + (uint64(h3) * R4) + (uint64(h4) * R3)
40 d3 := (d2 >> 26) + (uint64(h0) * r3) + (uint64(h1) * r2) + (uint64(h2) * r1) + (uint64(h3) * r0) + (uint64(h4) * R4)
41 d4 := (d3 >> 26) + (uint64(h0) * r4) + (uint64(h1) * r3) + (uint64(h2) * r2) + (uint64(h3) * r1) + (uint64(h4) * r0)
46 h2 = uint32(d2) & 0x3ffffff
65 h2 += (binary.LittleEndian.Uint32(block[6:]) >> 4) & 0x3ffffff
70 d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) * R1
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/poly1305/
sum_ref.go 16 h0, h1, h2, h3, h4 uint32 // the hash accumulators
32 h2 += (binary.LittleEndian.Uint32(msg[6:]) >> 4) & 0x3ffffff
37 d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) * R1)
38 d1 := (d0 >> 26) + (uint64(h0) * r1) + (uint64(h1) * r0) + (uint64(h2) * R4) + (uint64(h3) * R3) + (uint64(h4) * R2)
39 d2 := (d1 >> 26) + (uint64(h0) * r2) + (uint64(h1) * r1) + (uint64(h2) * r0) + (uint64(h3) * R4) + (uint64(h4) * R3)
40 d3 := (d2 >> 26) + (uint64(h0) * r3) + (uint64(h1) * r2) + (uint64(h2) * r1) + (uint64(h3) * r0) + (uint64(h4) * R4)
41 d4 := (d3 >> 26) + (uint64(h0) * r4) + (uint64(h1) * r3) + (uint64(h2) * r2) + (uint64(h3) * r1) + (uint64(h4) * r0)
46 h2 = uint32(d2) & 0x3ffffff
65 h2 += (binary.LittleEndian.Uint32(block[6:]) >> 4) & 0x3ffffff
70 d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) * R1
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/poly1305/
sum_ref.go 16 h0, h1, h2, h3, h4 uint32 // the hash accumulators
32 h2 += (binary.LittleEndian.Uint32(msg[6:]) >> 4) & 0x3ffffff
37 d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) * R1)
38 d1 := (d0 >> 26) + (uint64(h0) * r1) + (uint64(h1) * r0) + (uint64(h2) * R4) + (uint64(h3) * R3) + (uint64(h4) * R2)
39 d2 := (d1 >> 26) + (uint64(h0) * r2) + (uint64(h1) * r1) + (uint64(h2) * r0) + (uint64(h3) * R4) + (uint64(h4) * R3)
40 d3 := (d2 >> 26) + (uint64(h0) * r3) + (uint64(h1) * r2) + (uint64(h2) * r1) + (uint64(h3) * r0) + (uint64(h4) * R4)
41 d4 := (d3 >> 26) + (uint64(h0) * r4) + (uint64(h1) * r3) + (uint64(h2) * r2) + (uint64(h3) * r1) + (uint64(h4) * r0)
46 h2 = uint32(d2) & 0x3ffffff
65 h2 += (binary.LittleEndian.Uint32(block[6:]) >> 4) & 0x3ffffff
70 d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) * R1
    [all...]
  /external/jemalloc/include/jemalloc/internal/
hash.h 163 uint32_t h2 = seed; local
185 h1 = hash_rotl_32(h1, 19); h1 += h2;
188 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
190 h2 = hash_rotl_32(h2, 17); h2 += h3;
191 h2 = h2*5 + 0x0bcaa747;
229 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
240 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len
265 uint64_t h2 = seed; local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzHash.h 19 h2 = temp & (kHash2Size - 1); \
24 h2 = temp & (kHash2Size - 1); \
31 h2 = temp & (kHash2Size - 1); \
43 h2 = (p->crc[cur[0]] ^ cur[1]) & (kHash2Size - 1);
47 h2 = temp & (kHash2Size - 1); \
52 h2 = temp & (kHash2Size - 1); \
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzHash.h 19 h2 = temp & (kHash2Size - 1); \
24 h2 = temp & (kHash2Size - 1); \
31 h2 = temp & (kHash2Size - 1); \
43 h2 = (p->crc[cur[0]] ^ cur[1]) & (kHash2Size - 1);
47 h2 = temp & (kHash2Size - 1); \
52 h2 = temp & (kHash2Size - 1); \
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzHash.h 19 h2 = temp & (kHash2Size - 1); \
24 h2 = temp & (kHash2Size - 1); \
31 h2 = temp & (kHash2Size - 1); \
43 h2 = (p->crc[cur[0]] ^ cur[1]) & (kHash2Size - 1);
47 h2 = temp & (kHash2Size - 1); \
52 h2 = temp & (kHash2Size - 1); \

Completed in 1091 milliseconds

1 2 3 4 5 6 7 8 91011>>