HomeSort by relevance Sort by last modified time
    Searched refs:G2 (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp 66 GlobalVariable *G2 =
68 EXPECT_EQ(nullptr, Engine->getPointerToGlobalIfAvailable(G2))
72 Engine->updateGlobalMapping(G2, &Mem1);
73 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G2));
90 GlobalVariable *G2 =
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, Engine->getGlobalValueAtAddress(&Mem2)
    [all...]
  /external/clang/test/Sema/
warn-duplicate-enum.c 44 G2,
45 GMax = G2,
  /external/llvm/lib/Target/AArch64/
AArch64A57FPLoadBalancing.cpp 452 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/
sema.cpp 160 struct G2 { int i; };
165 P(G2());
  /external/clang/test/SemaCXX/
cstyle-cast.cpp 53 struct G2 : public 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}}
static-cast.cpp 10 struct G2 : public 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}}
functional-cast.cpp 86 struct G2 : public 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}}
cxx1y-deduced-return-type.cpp 446 auto (*G2(T t))(T) -> auto* { return &F<T>; }
449 auto run_char = G2('a');
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 83 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
88 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
LaguerreSolver.java 377 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/v8/test/mjsunit/compiler/
regress-arguments.js 51 var G2 = 22;
54 var v = G1 + G2;
inline-arguments.js 90 function G2() {
99 G2.apply(this, arguments);
  /external/webp/src/dsp/
yuv_sse2.c 50 const __m128i G2 = _mm_add_epi16(Y1, k8708);
52 const __m128i G4 = _mm_sub_epi16(G2, G3);
146 const __m128i g2 = _mm_slli_epi16(_mm_and_si128(g0, _mm_set1_epi8(0x1c)), 3); local
148 const __m128i gb = _mm_or_si128(g2, b1);
266 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3;
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;
293 YUV444ToRGB(y + 16, u + 16, v + 16, &R2, &G2, &B2);
300 bgr[3] = _mm_packus_epi16(G2, G3)
    [all...]
upsampling_neon.c 146 const uint8x8_t g2 = vshl_n_u8(vshr_n_u8(g, 2), 5); /* lower 3bits */\
149 const uint8x8_t gb = vorr_u8(g2, b1); \
170 const int16x8_t G2 = vqaddq_s16(Y1, G_Rounder); \
175 const int16x8_t G4 = vqsubq_s16(G2, G3); \
  /external/mesa3d/src/mesa/program/
prog_noise.c 242 #define G2 0.211324865f /* G2 = (3.0-Math.sqrt(3.0))/6.0 */
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/
SparcRegisterInfo.cpp 35 cl::desc("Reserve application registers (%g2-%g4)"));
63 Reserved.set(SP::G2);
  /external/llvm/unittests/IR/
ConstantsTest.cpp 331 Constant *G2 = new GlobalVariable(*M, IntTy, false,
333 ASSERT_NE(G1, G2);
336 Constant *Int2 = ConstantExpr::getPtrToInt(G2, IntTy);
343 G1->replaceAllUsesWith(G2);
  /external/deqp/framework/common/
tcuCompressedTexture.cpp 573 const deUint8 G2 = (deUint8)getBits(src, 40, 43);
582 paintG[2] = extend4To8(G2);
600 const deUint8 G2 = (deUint8)getBits(src, 39, 42);
613 baseG[1] = extend4To8(G2);
    [all...]
  /prebuilts/android-emulator/darwin-x86_64/lib/
ca-bundle.pem     [all...]
  /prebuilts/android-emulator/linux-x86_64/lib/
ca-bundle.pem     [all...]
  /prebuilts/android-emulator/windows/lib/
ca-bundle.pem     [all...]
  /bionic/libc/kernel/uapi/linux/
ixjuser.h 324 G2 = hz783,
  /development/ndk/platforms/android-21/include/linux/
ixjuser.h 234 G2 = hz783,
  /external/kernel-headers/original/uapi/linux/
ixjuser.h 221 hz783 = 0x688b, /* .99 G2 */
286 G2 = hz783,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
ixjuser.h 221 hz783 = 0x688b, /* .99 G2 */
286 G2 = hz783,

Completed in 1269 milliseconds

1 2 3