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

1 2 3 4

  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.duration/time.duration.arithmetic/
op_++int.pass.cpp 22 std::chrono::hours h2 = h++; local
24 assert(h2.count() == 3);
op_--int.pass.cpp 22 std::chrono::hours h2 = h--; local
24 assert(h2.count() == 3);
  /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}}
goto.cpp 52 void h2(int end) { function
address-of-temporary.cpp 37 void h2() { consume(A{}); } function in namespace:PointerToArrayDecay
  /external/clang/test/PCH/Inputs/
chain-macro-override1.h 6 #define h2() f() macro
chain-macro-override2.h 6 #undef h2 macro
  /external/clang/test/CodeGen/
extern-inline.c 24 int h2(void) {return f2(1,2);} function
fp16-ops.c 6 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
49 h1 = h0 * h2;
63 h1 = f0 * h2;
69 h1 = (h0 / h2);
82 h1 = (f0 / h2);
88 h1 = (h2 + h0);
97 h1 = (h2 + f0);
107 h1 = (h2 - h0);
116 h1 = (h2 - f0);
125 test = (h2 < h0)
    [all...]
  /external/clang/test/Parser/
attributes.c 38 void (*h2)(int (*f2)(y, __attribute__(()) x)); // expected-error {{expected identifier}} variable
  /external/v8/test/mjsunit/compiler/
inline-arity-mismatch.js 44 function h2(a, b) { function
53 assertEquals(4, h2(o, o));
54 assertEquals(4, h2(o, o));
56 %OptimizeFunctionOnNextCall(h2);
58 assertEquals(4, h2(o, o));
62 assertEquals(2, h2(o, u));
  /libcore/luni/src/test/java/libcore/net/http/
RawHeadersTest.java 47 RawHeaders h2 = RawHeaders.fromMultimap(h1.toMultimap()); local
48 assertEquals(2, h2.length());
49 assertEquals("key", h2.getFieldName(0));
50 assertEquals("value1", h2.getValue(0));
51 assertEquals("key", h2.getFieldName(1));
52 assertEquals("value2", h2.getValue(1));
  /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
  /external/v8/test/mjsunit/regress/
regress-1229.js 91 function h2(z2, y2, x2) { function
123 invoke(h2, [6, 4, 8]);
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /external/libyuv/files/unit_test/
compare_test.cc 42 uint32 h2 = ReferenceHashDjb2(src_a, kMaxTest, 5381); local
43 EXPECT_EQ(h1, h2);
63 uint32 h2 = ReferenceHashDjb2(src_a, kMaxTest, 5381); local
70 EXPECT_EQ(h1, h2);
81 uint32 h2 = ReferenceHashDjb2(src_a, kMaxTest, 5381); local
86 EXPECT_EQ(h1, h2);
97 uint32 h2 = ReferenceHashDjb2(src_a + 1, kMaxTest, 5381); local
102 EXPECT_EQ(h1, h2);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cor_h.cpp 192 Word16 i, j, k, dec, h2[L_CODE];
206 h2[i] = shr (h[i], 1);
217 h2[i] = pv_round (L_shl (L_mult (h[i], k), 9));
226 s = L_mac (s, h2[k], h2[k]);
237 s = L_mac (s, h2[k], h2[k + dec]);
278 Word16 h2[L_CODE]; local
316 p_h2 = h2;
343 p_h2 = h2;
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-ms-back-references.cpp 59 void h2(void (*f_ptr)(void *), void *arg) {} function
60 // CHECK: "\01?h2@@YAXP6AXPAX@Z0@Z"
static-init.cpp 37 inline void h2() { function
42 h2();
  /external/guava/guava/src/com/google/common/hash/
Murmur3_128HashFunction.java 48 long h2; field in class:Murmur3_128HashFunction.Murmur3_128Hasher
56 h2 = seed;
73 h1 += h2;
79 h2 ^= k2;
81 h2 = Long.rotateLeft(h2, 31);
82 h2 += h1;
83 h2 = h2 * 5 + 0x38495ab5;
108 h2 ^= k2
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
ObjectsTest.java 49 int h2 = Objects.hashCode(new Integer(1), new String("two"), local
52 assertEquals(h1, h2);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_FwdTransformResidual4x4.c 71 int h2 = g0 - g2; local
75 pDst[i+8] = (OMX_S16) h2;
armVCM4P10_TransformResidual4x4.c 72 int h2 = g1 - g2; local
76 pDst[i+8] = (OMX_S16)((h2+32)>>6);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
MediaDataBox.java 118 ByteBuffer h2 = ByteBuffer.allocate(header.limit()); local
119 fileChannel.read(h2);
121 h2.rewind();
122 assert h2.equals(header) : "It seems that the content I want to read has already been overwritten.";
  /external/openfst/src/include/fst/
signed-log-weight.h 100 size_t h2 = Value2().Hash(); local
103 return h1 << lshift ^ h1 >> rshift ^ h2;

Completed in 1145 milliseconds

1 2 3 4