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

1 2

  /external/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp 57 GlobalVariable *G2 =
59 EXPECT_EQ(nullptr, Engine->getPointerToGlobalIfAvailable(G2))
63 Engine->updateGlobalMapping(G2, &Mem1);
64 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G2));
81 GlobalVariable *G2 =
83 Engine->updateGlobalMapping(G2, &Mem1);
84 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1));
87 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1))
90 Engine->updateGlobalMapping(G2, &Mem2);
92 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem2)
    [all...]
  /external/clang/test/Sema/
warn-duplicate-enum.c 44 G2,
45 GMax = G2,
  /external/openfst/src/include/fst/
random-weight.h 183 // weights (by default) for the generators G1 and G2.
184 template <class G1, class G2,
185 class W = ProductWeight<typename G1::Weight, typename G2::Weight> >
189 typedef typename G2::Weight W2;
203 G2 generator2_;
208 // composed out of weights for the generators G1 and G2. For lexicographic
211 template <class G1, class G2>
215 typedef typename G2::Weight W2;
235 G2 generator2_;
240 template <class G1, class G2>
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
random-weight.h 123 // weights for the generators G1 and G2.
124 template <class G1, class G2>
128 typedef typename G2::Weight W2;
142 G2 generator2_;
  /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 85 struct G2 : public B {};
86 struct H : public G1, public G2 {}; // Ambiguous path to B.
187 (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}}
189 (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/chromium_org/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/chromium_org/third_party/mesa/src/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/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/AArch64/
AArch64A57FPLoadBalancing.cpp 432 std::sort(GV.begin(), GV.end(), [](const Chain *G1, const Chain *G2) {
433 if (G1->size() != G2->size())
434 return G1->size() > G2->size();
435 return G1->requiresFixup() > G2->requiresFixup();
  /external/llvm/lib/Target/Sparc/
SparcRegisterInfo.cpp 35 cl::desc("Reserve application registers (%g2-%g4)"));
63 Reserved.set(SP::G2);
  /external/chromium_org/tools/findit/common/
cacert.pem 185 Verisign Class 3 Public Primary Certification Authority - G2
    [all...]
  /bionic/libc/kernel/uapi/linux/
ixjuser.h 234 G2 = hz783,
  /development/ndk/platforms/android-L/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.6/sysroot/usr/include/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,
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
ixjuser.h 234 G2 = hz783,
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
ixjuser.h 234 G2 = hz783,
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
ixjuser.h 234 G2 = hz783,

Completed in 2274 milliseconds

1 2