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

1 2 3

  /external/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp 52 GlobalVariable *G1 =
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));
74 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.
127 // reserving G1 all of the time.
130 // sethi %hi(Offset), %g1
131 // add %g1, %fp, %g1
132 // Insert G1+%lo(offset) into the user.
133 BuildMI(*MI.getParent(), II, dl, TII.get(SP::SETHIi), SP::G1)
137 // 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 277 typedef union G1 {
283 } G1;
286 // CHECK-NEXT: 0 | union G1
338 sizeof(G1) +
warn-duplicate-enum.c 43 G1,
  /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 85 struct G1 : public 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/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 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/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/webp/src/dsp/
yuv_sse2.c 49 const __m128i G1 = _mm_mulhi_epu16(*V0, k13320);
51 const __m128i G3 = _mm_add_epi16(G0, G1);
145 const __m128i g1 = _mm_srli_epi16(_mm_and_si128(g0, _mm_set1_epi8(0xe0)), 5); local
147 const __m128i rg = _mm_or_si128(r1, g1);
266 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3;
270 YUV444ToRGB(y + 8, u + 8, v + 8, &R1, &G1, &B1);
277 rgb[2] = _mm_packus_epi16(G0, G1);
288 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3;
292 YUV444ToRGB(y + 8, u + 8, v + 8, &R1, &G1, &B1);
299 bgr[2] = _mm_packus_epi16(G0, G1);
680 __m128i r0, g0, b0, r1, g1, b1, U0, V0, U1, V1; local
    [all...]
upsampling_neon.c 136 const uint8x8_t g1 = vshr_n_u8(g, 4); \
138 const uint8x8_t rg = vorr_u8(r1, g1); \
145 const uint8x8_t g1 = vshr_n_u8(g, 5); /* upper 3bits */\
148 const uint8x8_t rg = vorr_u8(r1, g1); \
167 const int16x8_t G1 = vqdmulhq_lane_s16(V0, coeff1, 3); \
173 const int16x8_t G3 = vqaddq_s16(G0, G1); \
enc_mips32.c 256 #define HORIZONTAL_PASS(A, E, F, G, H, E1, F1, G1, H1) \
288 "sw %[temp4], " #G1 "(%[tmp]) \n\t"
    [all...]
lossless_enc_sse2.c 110 const __m128i G1 = _mm_sub_epi8(E1, F1);
112 const __m128i H1 = _mm_and_si128(G1, mask_b);
rescaler_sse2.c 323 const __m128i G1 = _mm_or_si128(D1, F3);
325 _mm_storeu_si128((__m128i*)(irow + x_out + 4), G1);
  /external/llvm/unittests/IR/
ConstantsTest.cpp 329 Constant *G1 = new GlobalVariable(*M, IntTy, false,
333 ASSERT_NE(G1, G2);
335 Constant *Int1 = ConstantExpr::getPtrToInt(G1, IntTy);
343 G1->replaceAllUsesWith(G2);
  /external/libvpx/libvpx/vpx_dsp/x86/
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 309 G1 = hz392,
  /development/ndk/platforms/android-21/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.8/sysroot/usr/include/linux/
ixjuser.h 187 hz392 = 0x79fa, /* .00 G1 */
274 G1 = hz392,

Completed in 4308 milliseconds

1 2 3