Searched defs:G0 (Results 1 - 6 of 6) sorted by relevance

/external/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp70 std::unique_ptr<GlobalVariable> G0 = llvm::make_unique<GlobalVariable>( local
71 PtrTy, false, GlobalValue::ExternalLinkage, nullptr, "G0");
75 // Create a cycle that references G0.
77 MDNode *N1; // !1 = !{!0, i8* @G0}
80 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())};
93 // Seed the value map to map G0 to G1 and map the nodes. The output should
94 // have new nodes that reference G1 (instead of G0).
96 VM[G0.get()] = G1.get();
/external/webp/src/dsp/
H A Drescaler_sse2.c323 const __m128i G0 = _mm_or_si128(D0, F2); local
325 _mm_storeu_si128((__m128i*)(irow + x_out + 0), G0);
H A Dlossless_enc_sse2.c115 const __m128i G0 = _mm_sub_epi8(E0, F0); // 0 0 | x b' local
117 const __m128i H0 = _mm_and_si128(G0, mask_b); // 0 0 | 0 b
H A Dyuv_sse2.c51 const __m128i G0 = _mm_mulhi_epu16(*U0, k6419); local
54 const __m128i G3 = _mm_add_epi16(G0, G1);
245 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
248 YUV444ToRGB(y + 0, u + 0, v + 0, &R0, &G0, &B0);
256 rgb2 = _mm_packus_epi16(G0, G1);
267 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
270 YUV444ToRGB(y + 0, u + 0, v + 0, &R0, &G0, &B0);
278 bgr2 = _mm_packus_epi16(G0, G1);
357 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
360 YUV420ToRGB(y + 0, u + 0, v + 0, &R0, &G0,
393 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
[all...]
/external/swiftshader/src/Shader/
H A DSamplerCore.cpp1918 const float G0 = (studioSwing * -16 * Yy - 128 * Gu - 128 * Gv) / 255; local
1950 const UShort4 g0 = UShort4(iround(G0 * 0x4000));
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1333 APInt G0 = AM.abs(); local
1335 APInt Q = G0; // these need to be initialized
1336 APInt R = G0;
1337 APInt::sdivrem(G0, G1, Q, R);
1341 G0 = G1; G1 = R;
1342 APInt::sdivrem(G0, G1, Q, R);

Completed in 1119 milliseconds