Searched refs:G2 (Results 1 - 25 of 30) sorted by relevance

12

/external/llvm/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp66 GlobalVariable *G2 = local
68 EXPECT_EQ(nullptr, Engine->getPointerToGlobalIfAvailable(G2))
72 Engine->updateGlobalMapping(G2, &Mem1);
73 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G2));
90 GlobalVariable *G2 = local
92 Engine->updateGlobalMapping(G2, &Mem1);
93 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1));
96 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1))
99 Engine->updateGlobalMapping(G2, &Mem2);
101 EXPECT_EQ(G2, Engin
118 GlobalVariable *G2 = local
[all...]
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c44 G2, enumerator in enum:G
45 GMax = G2,
/external/v8/test/mjsunit/compiler/
H A Dregress-arguments.js51 var G2 = 22; variable
54 var v = G1 + G2;
H A Dinline-arguments.js90 function G2() { function
99 G2.apply(this, arguments);
/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}}
H A Dcxx1y-deduced-return-type.cpp446 auto (*G2(T t))(T) -> auto* { return &F<T>; }
449 auto run_char = G2('a');
/external/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp452 std::sort(GV.begin(), GV.end(), [](const Chain *G1, const Chain *G2) {
453 if (G1->size() != G2->size())
454 return G1->size() > G2->size();
455 if (G1->requiresFixup() != G2->requiresFixup())
456 return G1->requiresFixup() > G2->requiresFixup();
458 assert((G1 == G2 || (G1->startsBefore(G2) ^ G2->startsBefore(G1))) &&
460 return G1->startsBefore(G2);
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dsema.cpp160 struct G2 { int i; }; struct
165 P(G2());
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DLaguerreSolver.java377 Complex G2 = null;
412 G2 = G.multiply(G);
413 H = G2.subtract(d2v.divide(pv));
414 delta = N1.multiply((N.multiply(H)).subtract(G2));
/external/webp/src/dsp/
H A Dyuv_sse2.c50 const __m128i G2 = _mm_add_epi16(Y1, k8708); local
52 const __m128i G4 = _mm_sub_epi16(G2, G3);
266 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
271 YUV444ToRGB(y + 16, u + 16, v + 16, &R2, &G2, &B2);
278 rgb[3] = _mm_packus_epi16(G2, G3);
288 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
293 YUV444ToRGB(y + 16, u + 16, v + 16, &R2, &G2, &B2);
300 bgr[3] = _mm_packus_epi16(G2, G3);
378 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
383 YUV420ToRGB(y + 16, u + 8, v + 8, &R2, &G2,
414 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
[all...]
H A Dupsampling_neon.c170 const int16x8_t G2 = vqaddq_s16(Y1, G_Rounder); \
175 const int16x8_t G4 = vqsubq_s16(G2, G3); \
/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/llvm/lib/Target/Sparc/
H A DSparcRegisterInfo.cpp63 Reserved.set(SP::G2);
H A DSparcAsmPrinter.cpp284 const unsigned globalRegs[] = { SP::G2, SP::G3, SP::G6, SP::G7, 0 };
/external/llvm/unittests/IR/
H A DConstantsTest.cpp331 Constant *G2 = new GlobalVariable(*M, IntTy, false, local
333 ASSERT_NE(G1, G2);
336 Constant *Int2 = ConstantExpr::getPtrToInt(G2, IntTy);
343 G1->replaceAllUsesWith(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/kernel-headers/original/uapi/linux/
H A Dixjuser.h221 hz783 = 0x688b, /* .99 G2 */
286 G2 = hz783, enumerator in enum:__anon7999
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cacerts/
H A Dcacerts.txt112 Verisign Class 3 Public Primary Certification Authority - G2
1536 SwissSign Gold CA - G2
1567 SwissSign Silver CA - G2
2329 thawte Primary Root CA - G2
2370 GeoTrust Primary Certification Authority - G2
2460 Staat der Nederlanden Root CA - G2
2840 Go Daddy Root Certificate Authority - G2
2862 Starfield Root Certificate Authority - G2
2885 Starfield Services Root Certificate Authority - G2
3290 StartCom Certification Authority G2
[all...]
/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/llvm/lib/Target/Sparc/Disassembler/
H A DSparcDisassembler.cpp68 SP::G0, SP::G1, SP::G2, SP::G3,
/external/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp102 Sparc::G0, Sparc::G1, Sparc::G2, Sparc::G3,
/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/blktrace/doc/
H A Dblktrace.tex81 As an example, bt/kernel contains blk-trace-2.6.14-rc1-git-G2, download

Completed in 845 milliseconds

12