HomeSort by relevance Sort by last modified time
    Searched refs:h2 (Results 1 - 25 of 289) 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/PCH/
chain-macro-override.c 13 h2(); // expected-warning{{implicit declaration of function 'h2' is invalid in C99}}
  /external/clang/test/CodeGen/
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...]
extern-inline.c 24 int h2(void) {return f2(1,2);} function
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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/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/chromium_org/third_party/smhasher/src/
Spooky.h 169 uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3,
173 h11+= h1; h2 ^= h11; h1 = Rot64(h1,44);
174 h0 += h2; h3 ^= h0; h2 = Rot64(h2,15);
176 h2 += h4; h5 ^= h2; h4 = Rot64(h4,21);
188 uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3,
192 EndPartial(h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11);
193 EndPartial(h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11)
    [all...]
SpookyTest.cpp 12 uint64_t h1 = seed, h2 = seed; local
13 SpookyHash::Hash128(key, len, &h1, &h2);
15 ((uint64_t*)out)[1] = h2;
MurmurHash3.cpp 157 uint32_t h2 = seed; local
180 h1 = ROTL32(h1,19); h1 += h2; h1 = h1*5+0x561ccd1b;
182 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
184 h2 = ROTL32(h2,17); h2 += h3; h2 = h2*5+0x0bcaa747;
222 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
234 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len
262 uint64_t h2 = seed; local
    [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/lib/main/
h2-1.2.147.jar 
  /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/chromium_org/third_party/angle_dx11/src/third_party/murmurhash/
MurmurHash3.cpp 157 uint32_t h2 = seed; local
180 h1 = ROTL32(h1,19); h1 += h2; h1 = h1*5+0x561ccd1b;
182 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
184 h2 = ROTL32(h2,17); h2 += h3; h2 = h2*5+0x0bcaa747;
222 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
234 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len;
262 uint64_t h2 = seed; local
    [all...]
  /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/base/core/tests/coretests/src/android/os/
BroadcasterTest.java 135 Handler h2;
140 h2 = new H();
143 b.request(MESSAGE_B, h2, MESSAGE_D);
170 Handler h2;
175 h2 = new H();
178 b.request(MESSAGE_B, h2, MESSAGE_D);
187 if (msg.what == MESSAGE_D && msg.getTarget() == h2) {
205 Handler h2;
210 h2 = new H();
213 b.request(MESSAGE_A, h2, MESSAGE_D)
    [all...]
  /external/clang/test/CXX/over/over.match/over.match.funcs/
p4-0x.cpp 31 int &h2() const&;
32 float &h2() const&&;
68 int &ir2 = lvalue<X0>().h2();
69 float &fr3 = xvalue<X0>().h2();
70 float &fr4 = prvalue<X0>().h2();
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemevents.c 83 short x2,y2,w2,h2; local
89 x2=y2=w2=h2 = 0;
93 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2);
102 mouse_event,x2,y2,w2,h2,
177 short x2,y2,w2,h2; local
234 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
237 SDL_PrivateResize(w2, h2);
254 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
256 SDL_PrivateResize(w2, h2);
301 short x2, y2, w2, h2; local
    [all...]
  /build/tools/droiddoc/templates-ds/
sampleindex.cs 25 <h2>Subdirectories</h2>
35 <h2>Files</h2>
  /build/tools/droiddoc/templates-pdk/
sampleindex.cs 25 <h2>Subdirectories</h2>
35 <h2>Files</h2>
  /build/tools/droiddoc/templates-sac/
sampleindex.cs 25 <h2>Subdirectories</h2>
35 <h2>Files</h2>
  /external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/
style.css 20 h2 {

Completed in 409 milliseconds

1 2 3 4 5 6 7 8 91011>>