Searched refs:h1 (Results 1 - 25 of 99) sorted by relevance

1234

/external/clang/test/CodeGen/
H A Dfp16-ops.c6 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
19 test = (!h1);
23 h1 = -h1;
26 h1 = +h1;
30 h1++;
34 ++h1;
38 --h1;
42 h1
[all...]
/external/guava/guava/src/com/google/common/hash/
H A DMurmur3_32HashFunction.java45 int h1; field in class:Murmur3_32HashFunction.Murmur3_32Hasher
52 h1 = seed;
63 h1 ^= k1;
64 h1 = Integer.rotateLeft(h1, 13);
65 h1 = h1 * 5 + 0xe6546b64;
85 h1 ^= k1;
90 h1 ^= len;
92 h1
[all...]
H A DMurmur3_128HashFunction.java47 long h1; field in class:Murmur3_128HashFunction.Murmur3_128Hasher
55 h1 = seed;
70 h1 ^= k1;
72 h1 = Long.rotateLeft(h1, 27);
73 h1 += h2;
74 h1 = h1 * 5 + 0x52dce729;
82 h2 += h1;
129 h1
[all...]
/external/v8/test/mjsunit/compiler/
H A Dinline-arity-mismatch.js40 function h1(a, b) { function
51 assertEquals(4, h1(o, o));
52 assertEquals(4, h1(o, o));
55 %OptimizeFunctionOnNextCall(h1);
57 assertEquals(4, h1(o, o));
61 assertEquals(2, h1(u, o));
/external/doclava/res/assets/templates/
H A Dkeywords.cs9 <h1><?cs var:page.title ?></h1>
H A Dpackages.cs11 <h1><?cs var:page.title ?></h1>
H A Dclasses.cs10 <h1><?cs var:page.title ?></h1>
H A Dpackage.cs19 <h1><?cs var:package.name ?></h1>
H A Dsampleindex.cs14 <h1><?cs var:page.title ?></h1>
H A Ddocpage.cs17 <h1 itemprop="name"><?cs var:page.title ?></h1>
H A Dsample.cs14 <h1><?cs var:page.title ?></h1>
H A Dhierarchy.cs18 <h1><?cs var:page.title ?></h1>
/external/oprofile/libpp/
H A Dop_header.h21 * @param h1 sample file header
25 * check that the h1 and h2 are coherent (same size, same mtime etc.)
28 void op_check_header(opd_header const & h1, opd_header const & h2,
/external/clang/test/Sema/
H A Dfunction-redecl.c112 extern __typeof (h0) h1 __attribute__((__sentinel__));
113 extern __typeof (h1) h1 __attribute__((__sentinel__));
H A Dstruct-packed-align.c91 extern int h1[sizeof(union au4) == 4 ? 1 : -1];
96 extern int h1[sizeof(union au5) == 4 ? 1 : -1];
/external/iproute2/misc/
H A Difstat.c222 struct ifstat_ent *h1; local
225 for (h1 = h; h1; h1 = h1->next) {
226 if (h1->ifindex == n->ifindex) {
227 vals = h1->val;
228 rates = h1->rate;
229 h = h1->next;
401 struct ifstat_ent *h1; local
439 struct ifstat_ent *h1; local
[all...]
H A Dnstat.c268 struct nstat_ent *h1; local
271 for (h1 = h; h1; h1 = h1->next) {
272 if (strcmp(h1->id, n->id) == 0) {
273 val = h1->val;
274 h = h1->next;
291 struct nstat_ent *h1; local
292 for (h1
333 struct nstat_ent *h1; local
[all...]
/external/clang/test/SemaCXX/
H A DMicrosoftExtensions.cpp88 template<typename T> void h1(T (__stdcall M::* const )()) { }
91 h1<int>(&M::addP);
92 h1(&M::subtractP);
H A Daddr-of-overloaded-function.cpp36 template<typename T> T h1(T);
37 template<typename R, typename A1> R h1(A1);
38 int h1(char);
44 ha(h1);
45 hb(h1);
/external/clang/test/CodeGenCXX/
H A Dtemplate-instantiation.cpp178 friend void h1(S s);
187 h1(s1); h1(s2); h1(s3);
/external/mesa3d/docs/
H A Dmesa.css9 h1 {
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DFileHandlerTest.java382 FileHandler h1 = null;
388 h1 = new FileHandler("log/a", 0, 1);
389 assertNotNull(h1);
394 h1.close();
443 FileHandler h1 = new FileHandler("%taaa");
444 h1.close();
451 h1 = new FileHandler("%t/%h");
455 h1 = new FileHandler("%t%g");
456 h1.close();
460 h1
[all...]
/external/valgrind/unittest/
H A Dwindows_tests.cc538 HANDLE h1 = CreateSemaphore(NULL, 0, 10, NAME), local
540 ASSERT_TRUE(h1 != NULL);
543 // h1 and h2 refer to the same semaphore but are not equal.
544 EXPECT_NE(h1, h2);
550 tp.Add(NewCallback(Waiter, &VAR, h1));
554 CloseHandle(h1);
575 HANDLE h1 = CreateEvent(NULL, false, false, NULL); local
576 ASSERT_TRUE(h1 != NULL);
578 DuplicateHandle(GetCurrentProcess(), h1, local
583 // h1 an
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DObjectsTest.java48 int h1 = Objects.hashCode(1, "two", 3.0);
52 assertEquals(h1, h2);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstringencode.cc135 unsigned char h1, h2;
141 && hex_decode(source[srcpos], &h1)
143 buffer[bufpos++] = (h1 << 4) | h2;
213 unsigned char h1, h2;
221 && hex_decode(source[srcpos], &h1)
224 buffer[bufpos++] = (h1 << 4) | h2;
483 unsigned char h1, h2;
487 && hex_decode(source[srcpos], &h1)
490 bbuffer[bufpos++] = (h1 << 4) | h2;

Completed in 1497 milliseconds

1234