/external/llvm/lib/Transforms/InstCombine/ |
InstCombineMulDivRem.cpp | 473 Constant *C0 = dyn_cast<Constant>(I->getOperand(0)); 476 if (C0 && C1) 479 return (C0 && isFiniteNonZeroFp(C0)) || (C1 && isFiniteNonZeroFp(C1)); 496 Constant *C0 = dyn_cast<Constant>(Opnd0); 501 // (X * C0) * C => X * (C0*C) 503 Constant *F = ConstantExpr::getFMul(C1 ? C1 : C0, C); 507 if (C0) { 508 // (C0 / X) * C => (C0 * C) / [all...] |
InstCombineAddSub.cpp | 344 ConstantFP *C0, *C1; 347 if ((C0 = dyn_cast<ConstantFP>(Opnd0)) && C0->isZero()) 354 if (!C0) 357 Addend0.set(C0, nullptr); 374 Addend0.set(APFloat(C0->getValueAPF().getSemantics()), nullptr); [all...] |
/external/libjpeg-turbo/simd/ |
jidctred-mmx.asm | 645 ; | A1 B1 | C0 C1 | 668 paddd mm1,mm2 ; mm1=data0[row0 row1]=(C0 C1) 677 punpckldq mm1,mm6 ; mm1=(C0 D0) 680 packssdw mm1,mm7 ; mm1=(C0 D0 C1 D1) 681 packsswb mm1,mm1 ; mm1=(C0 D0 C1 D1 C0 D0 C1 D1) 685 movd ebx,mm1 ; ebx=(C0 D0 C1 D1)
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
Antlr.Runtime.Tree.Tests.pas | 221 Root, R0, C0, C1, C2: ICommonTree; 230 C0 := TCommonTree.Create(TCommonToken.Create(101)); 233 R0.AddChild(C0); 243 Check(C0.Parent = Root); 244 Check(C0.ChildIndex = 1); 357 R0, C0, C1, C2: ICommonTree; 361 C0 := TCommonTree.Create(TCommonToken.Create(101)); 364 R0.AddChild(C0); 370 Check(C0.Parent = R0); 371 CheckEquals(C0.ChildIndex, 0) [all...] |
/external/swiftshader/src/Shader/ |
VertexProgram.cpp | 406 if(dst.x) pDst.x = o[C0 + dst.index].x; 407 if(dst.y) pDst.y = o[C0 + dst.index].y; 408 if(dst.z) pDst.z = o[C0 + dst.index].z; 409 if(dst.w) pDst.w = o[C0 + dst.index].w; 537 if(dst.x) o[C0 + dst.index].x = d.x; 538 if(dst.y) o[C0 + dst.index].y = d.y; 539 if(dst.z) o[C0 + dst.index].z = d.z; 540 if(dst.w) o[C0 + dst.index].w = d.w; 636 o[C0 + i].x = v[Color0 + i].x; 637 o[C0 + i].y = v[Color0 + i].y [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_class.py | 524 class C0:
527 hash(C0()) # This should work; the next two should raise TypeError
|
/external/python/cpython3/Lib/test/ |
test_class.py | 482 class C0: 485 hash(C0()) # This should work; the next two should raise TypeError
|
/external/llvm/lib/Transforms/Vectorize/ |
LoadStoreVectorizer.cpp | 376 Instruction *C0 = cast<Instruction>(Chain[0]); 377 BasicBlock::iterator FirstInstr = C0->getIterator(); 378 BasicBlock::iterator LastInstr = C0->getIterator(); 380 BasicBlock *BB = C0->getParent(); [all...] |
/external/webp/src/dsp/ |
lossless_enc_sse2.c | 108 const __m128i C0 = _mm_mulhi_epi16(A0, mults_r); // x db | 0 0 114 const __m128i F0 = _mm_srli_epi32(C0, 16); // 0 0 | x db 156 const __m128i C0 = _mm_mulhi_epi16(A0, mults_g); // 0 0 | x dr 158 const __m128i E0 = _mm_sub_epi8(B0, C0); // x x | x r'
|
enc_neon.c | 89 // a0 a1 a2 a3 | b0 b1 b2 b3 => a0 b0 c0 d0 | a1 b1 c1 d1 90 // c0 c1 c2 c3 | d0 d1 d2 d3 a2 b2 c2 d2 | a3 b3 c3 d3 91 const int16x8x2_t tmp0 = vzipq_s16(in0, in1); // a0 c0 a1 c1 a2 c2 ... 102 // C0 = kC1 * in4 | kC1 * in12 104 const int16x8_t C0 = vsraq_n_s16(B1, vqdmulhq_n_s16(B1, kC1), 1); 112 const int16x4_t c = vqsub_s16(vget_low_s16(C1), vget_high_s16(C0)); 113 const int16x4_t d = vqadd_s16(vget_low_s16(C0), vget_high_s16(C1)); 838 const uint16x8_t c0 = vcombine_u16(vshrn_n_u32(m2, 16), local [all...] |
/external/webrtc/webrtc/modules/audio_processing/aec/ |
aec_core_neon.c | 311 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0 317 const float32x4_t C0 = vdupq_n_f32(3.1157899f); 323 pol5_y = vmlaq_f32(C0, y, pol5_y); 367 // Approximate 2^y ~= C2 * y^2 + C1 * y + C0. 370 const float32x4_t C0 = vdupq_n_f32(1.0017247f); 373 exp2_y = vmlaq_f32(C0, y, exp2_y);
|
aec_core_sse2.c | 281 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0 293 C0[4] = {3.1157899f, 3.1157899f, 3.1157899f, 3.1157899f}; 303 const __m128 pol5_y = _mm_add_ps(pol5_y_8, *((__m128*)C0)); 351 // Approximate 2^y ~= C2 * y^2 + C1 * y + C0. 356 static const ALIGN16_BEG float C0[4] ALIGN16_END = {1.0017247f, 1.0017247f, 361 const __m128 exp2_y = _mm_add_ps(exp2_y_2, *((__m128*)C0));
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
AESFastEngine.java | [all...] |
/external/python/cpython2/Lib/test/ |
test_class.py | 537 class C0: 540 hash(C0()) # This should work; the next two should raise TypeError
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
adogpool.h | 409 #define ADO_Reserved_8 GUID_BUILDER (ADO_Reserved_8, FD6974FD, 21fb, 409c, 96, 56, A5, 68, FE, C0, AC, 01) 418 #define ADO_Reserved_18 GUID_BUILDER (ADO_Reserved_18, 1f13bfb3, 8ba8, 46ca, 91, 78, 74, 28, EF, 9a, 85, C0) 424 #define ADO_Reserved_24 GUID_BUILDER (ADO_Reserved_24, 1bb4223f, B0E8, 4540, 96, FD, B8, FE, D9, A7, C0, 8b) 449 #define ADO_Reserved_49 GUID_BUILDER (ADO_Reserved_49, D808C6F7, 36c0, 4302, 80, EE, C4, B7, 00, F8, D2, 38) 486 #define ADO_Reserved_86 GUID_BUILDER (ADO_Reserved_86, 7337e3dc, 219f, 4d9e, 82, 5b, 0a, 2c, 18, 4e, C0, DE) [all...] |
adogpool_backcompat.h | 414 #define ADO_Reserved_8 GUID_BUILDER (ADO_Reserved_8, FD6974FD, 21fb, 409c, 96, 56, A5, 68, FE, C0, AC, 01) 423 #define ADO_Reserved_18 GUID_BUILDER (ADO_Reserved_18, 1f13bfb3, 8ba8, 46ca, 91, 78, 74, 28, EF, 9a, 85, C0) 429 #define ADO_Reserved_24 GUID_BUILDER (ADO_Reserved_24, 1bb4223f, B0E8, 4540, 96, FD, B8, FE, D9, A7, C0, 8b) 454 #define ADO_Reserved_49 GUID_BUILDER (ADO_Reserved_49, D808C6F7, 36c0, 4302, 80, EE, C4, B7, 00, F8, D2, 38) 491 #define ADO_Reserved_86 GUID_BUILDER (ADO_Reserved_86, 7337e3dc, 219f, 4d9e, 82, 5b, 0a, 2c, 18, 4e, C0, DE) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_class.py | 537 class C0: 540 hash(C0()) # This should work; the next two should raise TypeError
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_class.py | 537 class C0: 540 hash(C0()) # This should work; the next two should raise TypeError
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_class.py | 537 class C0: 540 hash(C0()) # This should work; the next two should raise TypeError
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_class.py | 537 class C0: 540 hash(C0()) # This should work; the next two should raise TypeError
|
/external/swiftshader/src/Renderer/ |
VertexProcessor.cpp | 1019 state.output[C0].write = 0xF; 1053 state.output[C0 + i].write = 0xF; 1073 state.output[C0].clamp = 0xF;
|
/libcore/benchmarks/src/benchmarks/ |
ImtConflictBenchmark.java | 25 * Each interface has 64 methods, which is the current size of an IMT. C0 implements 27 * is that C0 has no conflicts in its IMT, C1 has depth-2 conflicts in 35 C0 c0 = new C0(); local 36 callF0(c0); 267 C0 c0 = new C0(); local 269 callF0(c0); [all...] |
/external/llvm/lib/Target/Sparc/AsmParser/ |
SparcAsmParser.cpp | 154 Sparc::C0, Sparc::C1, Sparc::C2, Sparc::C3, 426 if (Reg >= Sparc::C0 && Reg <= Sparc::C31) 427 regIdx = Reg - Sparc::C0; [all...] |
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
InstructionSimplify.cpp | [all...] |
/external/syslinux/mbr/ |
oldmbr.asm | 69 ; Since some BIOSes seem to think 0000:7C00h and 07C0:0000h are the same
|