HomeSort by relevance Sort by last modified time
    Searched defs:C0 (Results 26 - 50 of 51) sorted by null

12 3

  /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
test_descr.py     [all...]
  /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
test_descr.py     [all...]
  /external/eigen/Eigen/src/Core/products/
GeneralBlockPanelKernel.h 570 AccPacket C0, C1, C2, C3, C4, C5, C6, C7;
571 traits.initAcc(C0);
606 traits.madd(A0,B_0,C0,T0);
615 traits.madd(A0,B_0,C0,T0);
624 traits.madd(A0,B_0,C0,T0);
633 traits.madd(A0,B_0,C0,T0);
652 traits.madd(A0,B_0,C0,T0);
668 traits.madd(A0,B_0,C0,T0);
683 traits.madd(A0,B_0,C0,T0);
697 traits.madd(A0,B_0,C0,T0)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_fp.c 779 CONST C0 = { -.5, -.0625, -.5, 1.164 }
782 UYV.xyz = ADD UYV, C0
783 UYV.y = MUL UYV.y, C0.w
792 struct prog_src_register C0 = search_or_add_const4f( c, -.5, -.0625, -.5, 1.164 );
808 /* tmp.xyz = ADD TMP, C0
815 C0,
818 /* YUV.y = MUL YUV.y, C0.w
826 src_swizzle1(C0, W),
  /external/webrtc/src/modules/audio_processing/aec/
aec_core_sse2.c 253 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
264 static const ALIGN16_BEG float ALIGN16_END C0[4] =
275 const __m128 pol5_y = _mm_add_ps(pol5_y_8, *((__m128 *)C0));
323 // Approximate 2^y ~= C2 * y^2 + C1 * y + C0.
328 static const ALIGN16_BEG float C0[4] ALIGN16_END =
333 const __m128 exp2_y = _mm_add_ps(exp2_y_2, *((__m128 *)C0));
  /frameworks/av/media/libstagefright/codecs/avc/common/src/
deblock.cpp 1090 int C0, c0, dif, AbsDelta, tmp, tmp1; local
1279 int C0, c0, dif, AbsDelta, Strng, tmp, tmp1; local
1496 int c0, dif; local
1586 int c0, dif; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 81 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
86 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 459 Constant *C0 = dyn_cast<Constant>(I->getOperand(0));
462 if (C0 && C1)
465 return (C0 && isFiniteNonZeroFp(C0)) || (C1 && isFiniteNonZeroFp(C1));
482 Constant *C0 = dyn_cast<Constant>(Opnd0);
487 // (X * C0) * C => X * (C0*C)
489 Constant *F = ConstantExpr::getFMul(C1 ? C1 : C0, C);
493 if (C0) {
494 // (C0 / X) * C => (C0 * C) /
    [all...]
InstCombineAddSub.cpp 360 ConstantFP *C0, *C1;
363 if ((C0 = dyn_cast<ConstantFP>(Opnd0)) && C0->isZero())
370 if (!C0)
373 Addend0.set(C0, nullptr);
390 Addend0.set(APFloat(C0->getValueAPF().getSemantics()), nullptr);
    [all...]
InstCombineCalls.cpp 496 const ConstantFP *C0 = dyn_cast<ConstantFP>(Arg0);
500 if (C0 && !C1) {
    [all...]
  /external/webp/src/dsp/
lossless_sse2.c 25 static WEBP_INLINE uint32_t ClampedAddSubtractFull(uint32_t c0, uint32_t c1,
28 const __m128i C0 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c0), zero);
31 const __m128i V1 = _mm_add_epi16(C0, C1);
38 static WEBP_INLINE uint32_t ClampedAddSubtractHalf(uint32_t c0, uint32_t c1,
41 const __m128i C0 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c0), zero);
44 const __m128i avg = _mm_add_epi16(C1, C0);
61 const __m128i C0 = _mm_cvtsi32_si128(c);
62 const __m128i AC0 = _mm_subs_epu8(A0, C0);
405 const __m128i c0 = _mm_or_si128(a0l, b0h); \/\/ rgbrgb00|rgbrgb00 local
    [all...]
dec_neon.c     [all...]
enc_neon.c 86 // a0 a1 a2 a3 | b0 b1 b2 b3 => a0 b0 c0 d0 | a1 b1 c1 d1
87 // c0 c1 c2 c3 | d0 d1 d2 d3 a2 b2 c2 d2 | a3 b3 c3 d3
88 const int16x8x2_t tmp0 = vzipq_s16(in0, in1); // a0 c0 a1 c1 a2 c2 ...
99 // C0 = kC1 * in4 | kC1 * in12
101 const int16x8_t C0 = vsraq_n_s16(B1, vqdmulhq_n_s16(B1, kC1), 1);
109 const int16x4_t c = vqsub_s16(vget_low_s16(C1), vget_high_s16(C0));
110 const int16x4_t d = vqadd_s16(vget_low_s16(C0), vget_high_s16(C1));
992 const uint16x8_t c0 = vcombine_u16(vshrn_n_u32(m2, 16), local
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/offline-m2/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 2591 milliseconds

12 3