Home
last modified time | relevance | path

Searched refs:G2 (Results 1 – 25 of 78) sorted by relevance

1234

/external/llvm/unittests/ExecutionEngine/
DExecutionEngineTest.cpp66 GlobalVariable *G2 = in TEST_F() local
68 EXPECT_EQ(nullptr, Engine->getPointerToGlobalIfAvailable(G2)) in TEST_F()
72 Engine->updateGlobalMapping(G2, &Mem1); in TEST_F()
73 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G2)); in TEST_F()
90 GlobalVariable *G2 = in TEST_F() local
92 Engine->updateGlobalMapping(G2, &Mem1); in TEST_F()
93 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1)); in TEST_F()
96 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1)) in TEST_F()
99 Engine->updateGlobalMapping(G2, &Mem2); in TEST_F()
101 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem2)) in TEST_F()
[all …]
/external/llvm/test/Transforms/GlobalOpt/
Ddeadglobal.ll6 ; CHECK: @G2
16 @G2 = linkonce_odr constant i32 42
21 store i32 1, i32* @G2
Dglobal-demotion.ll4 @G2 = internal global i32 5
18 ; The load comes before the store which makes @G2 live before the call.
21 ; CHECK-NOT: %G2
22 %a = load i32, i32* @G2
23 store i32 4, i32* @G2
/external/llvm/test/Linker/
Dlink-type-names.ll1 ; RUN: echo "%X = type { i32 } @G2 = global %X { i32 4 }" > %t.ll
10 ; CHECK: @G2 = global %X { i32 4 }
/external/llvm/test/CodeGen/XCore/
Dglobals.ll13 ; CHECK: ldaw r0, dp[G2]
14 ret i32* @G2
87 @G2 = global i32 0
89 ; CHECK: G2:
/external/llvm/test/Transforms/InstCombine/
Dconstant-fold-alias.ll6 @G2 = global i32 42
20 ; The preferred alignment for G2 allows this one to foled to zero.
23 ret i64 and (i64 ptrtoint (i32* @G2 to i64), i64 1)
/external/llvm/lib/Target/AArch64/
DAArch64A57FPLoadBalancing.cpp452 std::sort(GV.begin(), GV.end(), [](const Chain *G1, const Chain *G2) { in colorChainSet() argument
453 if (G1->size() != G2->size()) in colorChainSet()
454 return G1->size() > G2->size(); in colorChainSet()
455 if (G1->requiresFixup() != G2->requiresFixup()) in colorChainSet()
456 return G1->requiresFixup() > G2->requiresFixup(); in colorChainSet()
458 assert((G1 == G2 || (G1->startsBefore(G2) ^ G2->startsBefore(G1))) && in colorChainSet()
460 return G1->startsBefore(G2); in colorChainSet()
/external/llvm/test/CodeGen/X86/
Dattribute-sections.ll14 @G2 = global i32 ()* @foo, section ".preinit_array"
17 ; LINUX: .globl G2
Dextend.ll5 @G2 = internal global i8 0 ; <i8*> [#uses=1]
14 %tmp.0 = load i8, i8* @G2 ; <i8> [#uses=1]
/external/v8/test/mjsunit/compiler/
Dregress-arguments.js51 var G2 = 22; variable
54 var v = G1 + G2;
/external/llvm/test/Feature/
Dglobal_pv.ll4 @G2 = global i32 zeroinitializer
10 %B = insertelement <2 x i32*> %A, i32* @G2, i32 1
/external/llvm/test/Transforms/ArgumentPromotion/
Dchained.ll5 @G2 = constant i32* @G1 ; <i32**> [#uses=1]
14 %X = call i32 @test( i32** @G2 ) ; <i32> [#uses=1]
/external/clang/test/Sema/
Dwarn-duplicate-enum.c44 G2, enumerator
45 GMax = G2,
/external/webp/src/dsp/
Dyuv_sse2.c50 const __m128i G2 = _mm_add_epi16(Y1, k8708); in ConvertYUV444ToRGB() local
52 const __m128i G4 = _mm_sub_epi16(G2, G3); in ConvertYUV444ToRGB()
266 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToRgb32() local
271 YUV444ToRGB(y + 16, u + 16, v + 16, &R2, &G2, &B2); in VP8YuvToRgb32()
278 rgb[3] = _mm_packus_epi16(G2, G3); in VP8YuvToRgb32()
288 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToBgr32() local
293 YUV444ToRGB(y + 16, u + 16, v + 16, &R2, &G2, &B2); in VP8YuvToBgr32()
300 bgr[3] = _mm_packus_epi16(G2, G3); in VP8YuvToBgr32()
378 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in YuvToRgbRow() local
383 YUV420ToRGB(y + 16, u + 8, v + 8, &R2, &G2, &B2); in YuvToRgbRow()
[all …]
/external/llvm/test/TableGen/
DBitsInit.td49 bits<8> G2 = { 0, { 1, 0b1001 }, 0, 0b0 }; // ok
54 bits<16> I = { G1, G2 };
79 // CHECK: bits<8> G2 = { 0, 1, 1, 0, 0, 1, 0, 0 };
/external/mesa3d/src/mesa/program/
Dprog_noise.c242 #define G2 0.211324865f /* G2 = (3.0-Math.sqrt(3.0))/6.0 */ in _mesa_noise2() macro
253 float t = (float) (i + j) * G2; in _mesa_noise2()
279 x1 = x0 - i1 + G2; /* Offsets for middle corner in (x,y) unskewed coords */ in _mesa_noise2()
280 y1 = y0 - j1 + G2; in _mesa_noise2()
281 x2 = x0 - 1.0f + 2.0f * G2; /* Offsets for last corner in (x,y) unskewed coords */ in _mesa_noise2()
282 y2 = y0 - 1.0f + 2.0f * G2; in _mesa_noise2()
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
DLaguerreSolver.java377 Complex G2 = null; in solve() local
412 G2 = G.multiply(G); in solve()
413 H = G2.subtract(d2v.divide(pv)); in solve()
414 delta = N1.multiply((N.multiply(H)).subtract(G2)); in solve()
/external/clang/test/SemaCXX/
Dstatic-cast.cpp10 struct G2 : public B {}; struct
11 struct H : public G1, public G2 {}; // Ambiguous path to B.
Dcstyle-cast.cpp53 struct G2 : public B {}; struct
54 struct H : public G1, public G2 {}; // Ambiguous path to B.
Dfunctional-cast.cpp86 struct G2 : public B {}; struct
87 struct H : public G1, public G2 {}; // Ambiguous path to B.
/external/autotest/client/site_tests/security_RootCA/
Dbaseline41 "StartCom Certification Authority G2",
67 "Go Daddy Root Certificate Authority - G2",
83 "Staat der Nederlanden Root CA - G2",
125 "GeoTrust Primary Certification Authority - G2",
129 "Starfield Services Root Certificate Authority - G2",
131 "SwissSign Silver CA - G2",
145 "thawte Primary Root CA - G2",
159 "Starfield Root Certificate Authority - G2",
183 "SwissSign Gold CA - G2",
253 "DigiCert Assured ID Root G2",
[all …]
/external/llvm/test/Analysis/CFLAliasAnalysis/
Dconst-expr-gep.ll10 @G2 = external global %T
34 %H = getelementptr %T, %T* @G2, i64 0, i32 0
/external/llvm/test/Transforms/MergeFunc/
Dcrash2.ll12 @G2 = internal global i8** null
34 %tmp = load i8**, i8*** @G2
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
Dsema.cpp160 struct G2 { int i; }; argument
165 P(G2()); in gencon()
/external/clang/test/SemaOpenCL/
Dstorageclass-cl20.cl4 int G2 = 0;

1234