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

1 2

  /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
return-noreturn.cpp 80 int h2(int x) { function in namespace:abort_struct_complex_cfgs
  /external/clang/test/CodeGen/
extern-inline.c 24 int h2(void) {return f2(1,2);} function
fp16-ops.c 5 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
48 h1 = h0 * h2;
62 h1 = f0 * h2;
68 h1 = (h0 / h2);
81 h1 = (f0 / h2);
87 h1 = (h2 + h0);
96 h1 = (h2 + f0);
106 h1 = (h2 - h0);
115 h1 = (h2 - f0);
124 test = (h2 < h0)
    [all...]
  /external/clang/test/Parser/
attributes.c 38 void (*h2)(int (*f2)(y, __attribute__(()) x)); // expected-error {{expected identifier}} variable
  /external/clang/test/Sema/
warn-missing-prototypes.c 22 int h2(int x);
27 int h2(int x) { return x; } // expected-warning{{no previous prototype for function 'h2'}} function
  /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/CodeGenCXX/
static-init.cpp 34 inline void h2() { function
39 h2();
  /frameworks/base/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...]
  /frameworks/base/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/openssl/crypto/sha/
sha.h 102 SHA_LONG h0,h1,h2,h3,h4; member in struct:SHAstate_st
  /external/openssl/include/openssl/
sha.h 102 SHA_LONG h0,h1,h2,h3,h4; member in struct:SHAstate_st
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
product-weight.h 74 ssize_t h2 = value2_.Hash(); local
77 return h1 << lshift ^ h1 >> rshift ^ h2;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
HashtableTest.java 300 Hashtable h2 = new Hashtable(); local
302 h2.put(k, "value1");
305 assertNull(h2.get(k));
308 assertNull(h2.get(k));
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFileHandlerTest.java 142 FileHandler h2 = new FileHandler("%t/log/string"); local
146 h2.publish(r);
150 h2.close();
  /external/chromium/net/http/
http_response_headers_unittest.cc 457 std::string h2; local
458 parsed2->GetNormalizedHeaders(&h2);
459 EXPECT_EQ(std::string(tests[i].expected_headers), h2); local
    [all...]
  /external/opencv/cvaux/src/
cvbgfg_codebook.cpp 147 uchar p0, p1, p2, l0, l1, l2, h0, h1, h2; local
155 h0 = SAT_8U(p0 + cb0); h1 = SAT_8U(p1 + cb1); h2 = SAT_8U(p2 + cb2);
178 if( e->learnMax[2] < h2 ) e->learnMax[2]++;
208 e->learnMin[2] = l2; e->learnMax[2] = h2;
272 int h0 = p0 - M0, h1 = p1 - M1, h2 = p2 - M2; local
279 e->boxMin[2] <= l2 && h2 <= e->boxMax[2] )
  /external/openssl/apps/
s_socket.c 387 struct hostent *h1,*h2; local
458 h2=GetHostByName(*host);
459 if (h2 == NULL)
464 if (h2->h_addrtype != AF_INET)
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemevents.c 82 short x2,y2,w2,h2; local
86 x2=y2=w2=h2 = 0;
90 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2);
99 mouse_event,x2,y2,w2,h2,
172 short x2,y2,w2,h2; local
229 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
232 SDL_PrivateResize(w2, h2);
249 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
251 SDL_PrivateResize(w2, h2);
296 short x2, y2, w2, h2; local
    [all...]
  /frameworks/base/core/java/android/text/
Selection.java 424 float h2 = layout.getPrimaryHorizontal(off2); local
429 if (h1 < h2)
436 if (h1 > h2)
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FileHandlerTest.java 383 FileHandler h2 = null; local
390 h2 = new FileHandler("log/a", 0, 1, false);
391 assertNotNull(h2);
398 h2.close();
546 FileHandler h2 = new FileHandler("%t/log/string"); local
550 h2.publish(r);
554 h2.close();
  /external/valgrind/unittest/
windows_tests.cc 539 h2 = CreateSemaphore(NULL, 0, 15, NAME); local
541 ASSERT_TRUE(h2 != NULL);
543 // h1 and h2 refer to the same semaphore but are not equal.
544 EXPECT_NE(h1, h2);
551 tp.Add(NewCallback(Poster, &VAR, h2));
555 CloseHandle(h2);
577 HANDLE h2 = NULL; local
579 GetCurrentProcess(), &h2, local
581 ASSERT_TRUE(h2 != NULL);
583 // h1 and h2 refer to the same Event but are not equal
    [all...]
  /external/icu4c/test/intltest/
citrtest.cpp 770 UBool h, h2; local
777 h2=ci.hasNext();
783 h2=ci.hasNext();
790 h2=ci.hasNext();
796 h2=ci.hasNext();
803 h2=ci.hasPrevious();
809 h2=ci.hasPrevious();
815 h=h2=FALSE;
821 h=h2=FALSE;
837 if(c!=c2 || h!=h2 || ci.getIndex()!=iter->getIndex(iter, UITER_CURRENT))
    [all...]

Completed in 2978 milliseconds

1 2