Searched defs:G1 (Results 1 - 22 of 22) sorted by relevance

/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp43 GlobalVariable *G1 = local
46 Engine->addGlobalMapping(G1, &Mem1);
47 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1));
49 Engine->updateGlobalMapping(G1, &Mem2);
50 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
51 Engine->updateGlobalMapping(G1, NULL);
52 EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G1));
53 Engine->updateGlobalMapping(G1, &Mem2);
54 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
64 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1))
69 GlobalVariable *G1 = local
97 GlobalVariable *G1 = local
117 GlobalVariable *G1 = local
[all...]
/external/llvm/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp53 GlobalVariable *G1 = NewExtGlobal(Type::getInt32Ty(Context), "Global1"); local
55 Engine->addGlobalMapping(G1, &Mem1);
56 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1));
59 Engine->updateGlobalMapping(G1, &Mem2);
60 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
61 Engine->updateGlobalMapping(G1, nullptr);
62 EXPECT_EQ(nullptr, Engine->getPointerToGlobalIfAvailable(G1));
63 Engine->updateGlobalMapping(G1, &Mem2);
64 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
73 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1))
78 GlobalVariable *G1 = NewExtGlobal(Type::getInt32Ty(Context), "Global1"); local
104 GlobalVariable *G1 = NewExtGlobal(Type::getInt32Ty(Context), "Global1"); local
122 GlobalVariable *G1 = NewExtGlobal(Type::getInt32Ty(Context), "Global1"); local
[all...]
/external/clang/test/Sema/
H A Dms_bitfield_layout.c277 typedef union G1 { union
283 } G1; typedef in typeref:union:G1
286 // CHECK-NEXT: 0 | union G1
338 sizeof(G1) +
H A Dwarn-duplicate-enum.c43 G1, enumerator in enum:G
/external/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp72 std::unique_ptr<GlobalVariable> G1 = llvm::make_unique<GlobalVariable>( local
73 PtrTy, false, GlobalValue::ExternalLinkage, nullptr, "G1");
93 // Seed the value map to map G0 to G1 and map the nodes. The output should
94 // have new nodes that reference G1 (instead of G0).
96 VM[G0.get()] = G1.get();
101 EXPECT_EQ(ConstantAsMetadata::get(G1.get()), MappedN1->getOperand(1));
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dsema.cpp159 struct G1 {}; struct
164 P(G1());
/external/clang/test/SemaCXX/
H A Dstatic-cast.cpp9 struct G1 : public B {}; struct in inherits:B
11 struct H : public G1, public G2 {}; // Ambiguous path to B.
80 (void)static_cast<const G1*>((A*)0);
81 (void)static_cast<const G1&>(*((A*)0));
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.cpp52 struct G1 : public B {}; struct in inherits:B
54 struct H : public G1, public G2 {}; // Ambiguous path to B.
117 (void)(const G1*)((A*)0);
118 (void)(const G1&)(*((A*)0));
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.cpp85 struct G1 : public B {}; struct in inherits:B
87 struct H : public G1, public G2 {}; // Ambiguous path to B.
166 typedef const G1 *cG1p;
168 typedef const G1 &cG1r;
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/webp/src/dsp/
H A Drescaler_sse2.c324 const __m128i G1 = _mm_or_si128(D1, F3); local
326 _mm_storeu_si128((__m128i*)(irow + x_out + 4), G1);
H A Dlossless_enc_sse2.c116 const __m128i G1 = _mm_sub_epi8(E1, F1); local
118 const __m128i H1 = _mm_and_si128(G1, mask_b);
H A Dyuv_sse2.c52 const __m128i G1 = _mm_mulhi_epu16(*V0, k13320); local
54 const __m128i G3 = _mm_add_epi16(G0, G1);
245 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
249 YUV444ToRGB(y + 8, u + 8, v + 8, &R1, &G1, &B1);
256 rgb2 = _mm_packus_epi16(G0, G1);
267 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
271 YUV444ToRGB(y + 8, u + 8, v + 8, &R1, &G1, &B1);
278 bgr2 = _mm_packus_epi16(G0, G1);
357 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
361 YUV420ToRGB(y + 8, u + 4, v + 4, &R1, &G1,
393 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
[all...]
/external/llvm/unittests/IR/
H A DConstantsTest.cpp354 Constant *G1 = new GlobalVariable(*M, IntTy, false, local
358 ASSERT_NE(G1, G2);
360 Constant *Int1 = ConstantExpr::getPtrToInt(G1, IntTy);
368 G1->replaceAllUsesWith(G2);
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_colorspace.cpp276 FX_FLOAT G1 = -0.9692f * X + 1.8760f * Y + 0.0416f * Z; local
280 G = RGB_Conversion(G1);
/external/deqp/framework/common/
H A DtcuCompressedTexture.cpp570 const deUint8 G1 = (deUint8)getBits(src, 52, 55); local
579 paintG[0] = extend4To8(G1);
/external/swiftshader/src/Renderer/
H A DETC_Decoder.cpp173 unsigned char G1 : 4; member in struct:__anon19539::ETC2::__anon19540::__anon19541::__anon19542::__anon19543::__anon19544::__anon19545::__anon19546
338 int g1 = extend_4to8bits(G1);
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1334 APInt G1 = BM.abs(); local
1337 APInt::sdivrem(G0, G1, Q, R);
1341 G0 = G1; G1 = R;
1342 APInt::sdivrem(G0, G1, Q, R);
1344 G = G1;
/external/kernel-headers/original/uapi/linux/
H A Dixjuser.h187 hz392 = 0x79fa, /* .00 G1 */
274 G1 = hz392, enumerator in enum:__anon8870
/external/svox/pico/lib/
H A Dpicopam.c226 picoos_int8 g1_current_secondary_phrase_syllable; /*G1 */
315 #define G1 46 macro
1852 outVect[T_G1] = inVect[G1];
3880 case G1:
3885 pam->sSyllFeats[pam->nCurrSyllable].phoneV[G1]
3888 pam->sSyllFeats[pam->nCurrSyllable].phoneV[G1] = 0;
4693 pam->sSyllFeats[pam->nCurrSyllable].phoneV[G1]
/external/valgrind/drd/tests/
H A Dtsan_unittest.cpp4855 int G1 = 0; member in namespace:test100
4861 G1 = 1; CHECK(G1);
4869 CHECK(G1);
4883 ANNOTATE_TRACE_MEMORY(&G1);
/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 6087 milliseconds