Searched defs:G2 (Results 1 - 17 of 17) sorted by relevance

/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp56 GlobalVariable *G2 = local
58 EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G2))
62 Engine->updateGlobalMapping(G2, &Mem1);
63 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G2));
80 GlobalVariable *G2 = local
82 Engine->updateGlobalMapping(G2, &Mem1);
83 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1));
86 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1))
89 Engine->updateGlobalMapping(G2, &Mem2);
91 EXPECT_EQ(G2, Engin
108 GlobalVariable *G2 = local
[all...]
/external/llvm/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp66 GlobalVariable *G2 = NewExtGlobal(Type::getInt32Ty(Context), "Global1"); local
67 EXPECT_EQ(nullptr, Engine->getPointerToGlobalIfAvailable(G2))
71 Engine->updateGlobalMapping(G2, &Mem1);
72 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G2));
88 GlobalVariable *G2 = NewExtGlobal(Type::getInt32Ty(Context), "Global2"); local
89 Engine->updateGlobalMapping(G2, &Mem1);
90 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1));
93 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1))
96 Engine->updateGlobalMapping(G2, &Mem2);
98 EXPECT_EQ(G2, Engin
114 GlobalVariable *G2 = NewExtGlobal(Type::getInt32Ty(Context), "Global2"); local
[all...]
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dsema.cpp160 struct G2 { int i; }; struct
165 P(G2());
/external/clang/test/SemaCXX/
H A Dstatic-cast.cpp10 struct G2 : public B {}; struct in inherits:B
11 struct H : public G1, public G2 {}; // Ambiguous path to B.
93 (void)static_cast<H*>((A*)0); // expected-error {{ambiguous cast from base 'A' to derived 'H':\n struct A -> struct B -> struct G1 -> struct H\n struct A -> struct B -> struct G2 -> struct H}}
94 (void)static_cast<H&>(*((A*)0)); // expected-error {{ambiguous cast from base 'A' to derived 'H':\n struct A -> struct B -> struct G1 -> struct H\n struct A -> struct B -> struct G2 -> struct H}}
H A Dcstyle-cast.cpp53 struct G2 : public B {}; struct in inherits:B
54 struct H : public G1, public G2 {}; // Ambiguous path to B.
130 (void)(H*)((A*)0); // expected-error {{ambiguous cast from base 'A' to derived 'H':\n struct A -> struct B -> struct G1 -> struct H\n struct A -> struct B -> struct G2 -> struct H}}
131 (void)(H&)(*((A*)0)); // expected-error {{ambiguous cast from base 'A' to derived 'H':\n struct A -> struct B -> struct G1 -> struct H\n struct A -> struct B -> struct G2 -> struct H}}
H A Dfunctional-cast.cpp86 struct G2 : public B {}; struct in inherits:B
87 struct H : public G1, public G2 {}; // Ambiguous path to B.
188 (void)Hp((A*)0); // expected-error {{ambiguous cast from base 'A' to derived 'H':\n struct A -> struct B -> struct G1 -> struct H\n struct A -> struct B -> struct G2 -> struct H}}
190 (void)Hr(*((A*)0)); // expected-error {{ambiguous cast from base 'A' to derived 'H':\n struct A -> struct B -> struct G1 -> struct H\n struct A -> struct B -> struct G2 -> struct H}}
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c44 G2, enumerator in enum:G
45 GMax = G2,
/external/llvm/unittests/IR/
H A DConstantsTest.cpp356 Constant *G2 = new GlobalVariable(*M, IntTy, false, local
358 ASSERT_NE(G1, G2);
361 Constant *Int2 = ConstantExpr::getPtrToInt(G2, IntTy);
368 G1->replaceAllUsesWith(G2);
/external/mesa3d/src/mesa/program/
H A Dprog_noise.c242 #define G2 0.211324865f /* G2 = (3.0-Math.sqrt(3.0))/6.0 */ macro
253 float t = (float) (i + j) * G2;
279 x1 = x0 - i1 + G2; /* Offsets for middle corner in (x,y) unskewed coords */
280 y1 = y0 - j1 + G2;
281 x2 = x0 - 1.0f + 2.0f * G2; /* Offsets for last corner in (x,y) unskewed coords */
282 y2 = y0 - 1.0f + 2.0f * G2;
/external/deqp/framework/common/
H A DtcuCompressedTexture.cpp573 const deUint8 G2 = (deUint8)getBits(src, 40, 43); local
582 paintG[2] = extend4To8(G2);
600 const deUint8 G2 = (deUint8)getBits(src, 39, 42); local
613 baseG[1] = extend4To8(G2);
/external/swiftshader/src/Renderer/
H A DETC_Decoder.cpp172 unsigned char G2 : 4; member in struct:__anon18245::ETC2::__anon18246::__anon18247::__anon18248::__anon18249::__anon18250::__anon18251::__anon18252
342 int g2 = extend_4to8bits(G2);
/external/webp/src/dsp/
H A Dyuv_sse2.c53 const __m128i G2 = _mm_add_epi16(Y1, k8708); local
55 const __m128i G4 = _mm_sub_epi16(G2, G3);
245 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
250 YUV444ToRGB(y + 16, u + 16, v + 16, &R2, &G2, &B2);
257 rgb3 = _mm_packus_epi16(G2, G3);
267 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
272 YUV444ToRGB(y + 16, u + 16, v + 16, &R2, &G2, &B2);
279 bgr3 = _mm_packus_epi16(G2, G3);
357 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
362 YUV420ToRGB(y + 16, u + 8, v + 8, &R2, &G2,
393 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dixjuser.h221 hz783 = 0x688b, /* .99 G2 */
286 G2 = hz783, enumerator in enum:__anon8738
/external/svox/pico/lib/
H A Dpicopam.c228 picoos_int8 g2_current_secondary_phrase_word; /*G2 */
316 #define G2 47 macro
1859 outVect[T_G2] = inVect[G2];
3904 case G2:
3909 pam->sSyllFeats[pam->nCurrSyllable].phoneV[G2]
3912 pam->sSyllFeats[pam->nCurrSyllable].phoneV[G2] = 0;
4695 pam->sSyllFeats[pam->nCurrSyllable].phoneV[G2]
/external/valgrind/drd/tests/
H A Dtsan_unittest.cpp4856 int G2 = 0; member in namespace:test100
4862 G2 = 1;
4870 CHECK(G2);
4884 ANNOTATE_TRACE_MEMORY(&G2);
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...

Completed in 461 milliseconds