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

1 2

  /external/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp 44 GlobalVariable *G1 =
47 Engine->addGlobalMapping(G1, &Mem1);
48 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1));
50 Engine->updateGlobalMapping(G1, &Mem2);
51 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
52 Engine->updateGlobalMapping(G1, nullptr);
53 EXPECT_EQ(nullptr, Engine->getPointerToGlobalIfAvailable(G1));
54 Engine->updateGlobalMapping(G1, &Mem2);
55 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
65 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1))
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcRegisterInfo.cpp 58 // FIXME: G1 reserved for now for large imm generation by frame code.
59 Reserved.set(SP::G1);
61 // G1-G4 can be used in applications.
114 // reserving G1 all of the time.
117 // sethi %hi(Offset), %g1
118 // add %g1, %fp, %g1
119 // Insert G1+%lo(offset) into the user.
120 BuildMI(*MI.getParent(), II, dl, TII.get(SP::SETHIi), SP::G1)
124 // Emit G1 = G1 + I
    [all...]
SparcFrameLowering.cpp 57 // Emit this the hard way. This clobbers G1 which we always know is
61 // sethi %hi(NumBytes), %g1
62 // or %g1, %lo(NumBytes), %g1
63 // add %sp, %g1, %sp
64 BuildMI(MBB, MBBI, dl, TII.get(SP::SETHIi), SP::G1)
66 BuildMI(MBB, MBBI, dl, TII.get(SP::ORri), SP::G1)
67 .addReg(SP::G1).addImm(LO10(NumBytes));
69 .addReg(SP::O6).addReg(SP::G1);
74 // sethi %hix(NumBytes), %g1
    [all...]
  /external/clang/test/Sema/
ms_bitfield_layout.c 209 typedef union G1 {
215 } G1;
217 // CHECK: Type: union G1
262 sizeof(G1) +
warn-duplicate-enum.c 43 G1,
  /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> >
188 typedef typename G1::Weight W1;
202 G1 generator1_;
208 // composed out of weights for the generators G1 and G2. For lexicographic
211 template <class G1, class G2>
214 typedef typename G1::Weight W1;
234 G1 generator1_;
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>
127 typedef typename G1::Weight W1;
141 G1 generator1_;
  /external/clang/test/SemaCXX/
cstyle-cast.cpp 52 struct G1 : public 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}}
static-cast.cpp 9 struct G1 : public 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}}
functional-cast.cpp 84 struct G1 : public B {};
86 struct H : public G1, public G2 {}; // Ambiguous path to B.
165 typedef const G1 *cG1p;
167 typedef const G1 &cG1r;
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}}
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
sema.cpp 159 struct G1 {};
164 P(G1());
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 82 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
87 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-arguments.js 50 var G1 = 21;
54 var v = G1 + G2;
  /cts/tools/dex-tools/test/dex/reader/
DexFileReaderTests.java 235 static final JavaSource G1 = new JavaSource("G1","public class G1<T extends G1>{}");
242 DexFile dexFile = javaToDexUtil.getFrom(G1);
244 DexClass G1 = getClass(dexFile, "LG1;");
245 assertPublic(G1);
246 DexAnnotation sig = getAnnotation(G1, LDALVIK_ANNOTATION_SIGNATURE);
  /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/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_colors.cpp 213 FX_FLOAT G1 = -0.9692f * X + 1.8760f * Y + 0.0416f * Z;
221 if (G1 > 1) {
222 G1 = 1;
224 if (G1 < 0) {
225 G1 = 0;
242 scale = (int)(G1 * 1023);
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
enc_mips32.c 251 #define HORIZONTAL_PASS(A, B, C, D, E, F, G, H, E1, F1, G1, H1) \
283 "sw %[temp4], "#G1"(%[tmp]) \n\t"
    [all...]
  /external/webp/src/dsp/
enc_mips32.c 251 #define HORIZONTAL_PASS(A, B, C, D, E, F, G, H, E1, F1, G1, H1) \
283 "sw %[temp4], "#G1"(%[tmp]) \n\t"
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
vp9_intrapred_ssse3.asm 499 ; A1 B1 C1 D1 E1 F1 G1 H1
542 ; A1 B1 C1 D1 E1 F1 G1 H1 I1 J1 K1 L1 M1 N1 O1 P1
543 ; A2 B2 A1 B1 C1 D1 E1 F1 G1 H1 I1 J1 K1 L1 M1 N1
544 ; A3 B3 A2 B2 A1 B1 C1 D1 E1 F1 G1 H1 I1 J1 K1 L1
545 ; A4 B4 A3 B3 A2 B2 A1 B1 C1 D1 E1 F1 G1 H1 I1 J1
546 ; A5 B5 A4 B4 A3 B3 A2 B2 A1 B1 C1 D1 E1 F1 G1 H1
    [all...]
  /external/libvpx/libvpx/vp9/common/x86/
vp9_intrapred_ssse3.asm 499 ; A1 B1 C1 D1 E1 F1 G1 H1
542 ; A1 B1 C1 D1 E1 F1 G1 H1 I1 J1 K1 L1 M1 N1 O1 P1
543 ; A2 B2 A1 B1 C1 D1 E1 F1 G1 H1 I1 J1 K1 L1 M1 N1
544 ; A3 B3 A2 B2 A1 B1 C1 D1 E1 F1 G1 H1 I1 J1 K1 L1
545 ; A4 B4 A3 B3 A2 B2 A1 B1 C1 D1 E1 F1 G1 H1 I1 J1
546 ; A5 B5 A4 B4 A3 B3 A2 B2 A1 B1 C1 D1 E1 F1 G1 H1
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/
vp9_intrapred_ssse3.asm 499 ; A1 B1 C1 D1 E1 F1 G1 H1
542 ; A1 B1 C1 D1 E1 F1 G1 H1 I1 J1 K1 L1 M1 N1 O1 P1
543 ; A2 B2 A1 B1 C1 D1 E1 F1 G1 H1 I1 J1 K1 L1 M1 N1
544 ; A3 B3 A2 B2 A1 B1 C1 D1 E1 F1 G1 H1 I1 J1 K1 L1
545 ; A4 B4 A3 B3 A2 B2 A1 B1 C1 D1 E1 F1 G1 H1 I1 J1
546 ; A5 B5 A4 B4 A3 B3 A2 B2 A1 B1 C1 D1 E1 F1 G1 H1
    [all...]
  /bionic/libc/kernel/uapi/linux/
ixjuser.h 219 G1 = hz392,
  /development/ndk/platforms/android-L/include/linux/
ixjuser.h 219 G1 = hz392,
  /external/kernel-headers/original/uapi/linux/
ixjuser.h 187 hz392 = 0x79fa, /* .00 G1 */
274 G1 = hz392,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
ixjuser.h 187 hz392 = 0x79fa, /* .00 G1 */
274 G1 = hz392,

Completed in 546 milliseconds

1 2