HomeSort by relevance Sort by last modified time
    Searched refs:C1 (Results 126 - 150 of 238) sorted by null

1 2 3 4 56 7 8 910

  /external/icu/icu4c/source/test/testdata/
nfs4_cis_prep.txt 230 12C1; ; UNASSIGNED
477 00C1; 00E1; MAP
693 03A1; 03C1; MAP
725 03F1; 03C1; MAP
821 04C1; 04C2; MAP
1152 1FE4; 03C1 0313; MAP
1231 24C1; 24DB; MAP
1282 33C1; 006D 03C9; MAP
1706 1D6B8; 03C1; MAP
1732 1D6F2; 03C1; MA
    [all...]
nfs4_cs_prep_ci.txt 230 12C1; ; UNASSIGNED
477 00C1; 00E1; MAP
693 03A1; 03C1; MAP
725 03F1; 03C1; MAP
821 04C1; 04C2; MAP
1152 1FE4; 03C1 0313; MAP
1231 24C1; 24DB; MAP
1282 33C1; 006D 03C9; MAP
1706 1D6B8; 03C1; MAP
1732 1D6F2; 03C1; MA
    [all...]
nfs4_mixed_prep_s.txt 230 12C1; ; UNASSIGNED
477 00C1; 00E1; MAP
693 03A1; 03C1; MAP
725 03F1; 03C1; MAP
821 04C1; 04C2; MAP
1152 1FE4; 03C1 0313; MAP
1231 24C1; 24DB; MAP
1282 33C1; 006D 03C9; MAP
1706 1D6B8; 03C1; MAP
1732 1D6F2; 03C1; MA
    [all...]
  /external/libvpx/libvpx/test/
dct16x16_test.cc 67 const double C1 = 0.995184726672197;
129 temp2 = step[12] * C1;
132 temp1 = step[11] * C1;
  /external/clang/lib/Format/
WhitespaceManager.cpp 22 operator()(const Change &C1, const Change &C2) const {
24 C1.OriginalWhitespaceRange.getBegin(),
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 80 bool operator () (const LowerSwitch::CaseRange& C1,
83 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tree.Tests.pas 221 Root, R0, C0, C1, C2: ICommonTree;
231 C1 := TCommonTree.Create(TCommonToken.Create(102));
234 R0.AddChild(C1);
245 Check(C1.Parent = Root);
246 Check(C1.ChildIndex = 2);
357 R0, C0, C1, C2: ICommonTree;
362 C1 := TCommonTree.Create(TCommonToken.Create(102));
365 R0.AddChild(C1);
372 Check(C1.Parent = R0);
373 CheckEquals(C1.ChildIndex, 1)
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
lossless_sse2.c 25 static WEBP_INLINE uint32_t ClampedAddSubtractFull(uint32_t c0, uint32_t c1,
29 const __m128i C1 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c1), zero);
31 const __m128i V1 = _mm_add_epi16(C0, C1);
38 static WEBP_INLINE uint32_t ClampedAddSubtractHalf(uint32_t c0, uint32_t c1,
42 const __m128i C1 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c1), zero);
44 const __m128i avg = _mm_add_epi16(C1, C0);
enc_mips32.c 297 #define VERTICAL_PASS(A, B, C, D, A1, B1, C1, D1, E, F, G, H) \
299 "lw %[temp1], "#C1"(%[tmp]) \n\t" \
    [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 ...
100 // C1 = kC2 * in4 | kC2 * in12
102 const int16x8_t C1 = vqdmulhq_n_s16(B1, kC2);
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));
437 "vsub.s16 d6, d1, d2 \n" // c1 = ip[4] - ip[8]
452 "vmlal.s16 q11, d6, d17 \n" // c1*2217 + d1*5352 + 12000
453 "vmlsl.s16 q12, d6, d16 \n" // d1*2217 - c1*5352 + 5100
995 const uint16x8_t c1 = vminq_u16(c0, vdupq_n_u16(MAX_LEVEL)); local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core_neon.c 297 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
302 const float32x4_t C1 = vdupq_n_f32(-3.3241990f);
308 pol5_y = vmlaq_f32(C1, y, pol5_y);
353 // Approximate 2^y ~= C2 * y^2 + C1 * y + C0.
355 const float32x4_t C1 = vdupq_n_f32(6.5763628e-1f);
358 exp2_y = vmlaq_f32(C1, y, exp2_y);
aec_core_sse2.c 269 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
279 C1[4] = {-3.3241990f, -3.3241990f, -3.3241990f, -3.3241990f};
289 const __m128 pol5_y_7 = _mm_add_ps(pol5_y_6, *((__m128*)C1));
339 // Approximate 2^y ~= C2 * y^2 + C1 * y + C0.
342 static const ALIGN16_BEG float C1[4] ALIGN16_END = {
347 const __m128 exp2_y_1 = _mm_add_ps(exp2_y_0, *((__m128*)C1));
  /external/llvm/lib/Target/R600/
AMDGPUISelDAGToDAG.cpp 741 ConstantSDNode *C1 = cast<ConstantSDNode>(N1);
743 if (isUInt<12>(C1->getZExtValue())) {
746 // (add (add N2, N3), C1)
751 ImmOffset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
755 // (add N0, C1)
758 ImmOffset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
  /external/aac/libSBRdec/src/
env_calc.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 200 // 6. Transform: "(A op C1) op (B op C2)" ==> "(A op B) op (C1 op C2)"
201 // if C1 and C2 are constants.
310 // Transform: "(A op C1) op (B op C2)" ==> "(A op B) op (C1 op C2)"
311 // if C1 and C2 are constants.
318 Constant *C1 = cast<Constant>(Op0->getOperand(1));
322 Constant *Folded = ConstantExpr::get(Opcode, C1, C2);
    [all...]
InstCombineShifts.cpp 122 // We can always fold shl(c1)+shl(c2) -> shl(c1+c2).
130 // We can turn shl(c1)+shr(c2) -> shl(c3)+and(c4), but it isn't
146 // We can always fold lshr(c1)+lshr(c2) -> lshr(c1+c2).
154 // We can always turn lshr(c1)+shl(c2) -> lshr(c3)+and(c4), but it isn't
220 // We can always fold shl(c1)+shl(c2) -> shl(c1+c2).
246 // We turn shl(c1)+shr(c2) -> shl(c3)+and(c4), but only when we know that
261 // We can always fold lshr(c1)+lshr(c2) -> lshr(c1+c2)
    [all...]
InstCombineCompares.cpp 411 Value *C1 = Builder->CreateICmpEQ(Idx, FirstTrueIdx);
414 return BinaryOperator::CreateOr(C1, C2);
431 Value *C1 = Builder->CreateICmpNE(Idx, FirstFalseIdx);
434 return BinaryOperator::CreateAnd(C1, C2);
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/clang/test/Sema/
warn-documentation.cpp 1060 @class C1
1062 class C1;
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
dct16x16_test.cc 64 const double C1 = 0.995184726672197;
126 temp2 = step[12] * C1;
129 temp1 = step[11] * C1;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_wm_fp.c 780 CONST C1 = { 1.596, -0.813, 2.018, -.391 }
785 RGB.xyz = MAD UYV.zzx, C1, UYV.y
787 RGB.xyz = MAD UYV.xxz, C1, UYV.y
788 RGB.y = MAD UYV.z, C1.w, RGB.y
793 struct prog_src_register C1 = search_or_add_const4f( c, 1.596, -0.813, 2.018, -.391 );
831 * RGB.xyz = MAD YUV.zzx, C1, YUV.y
833 * RGB.xyz = MAD YUV.xxz, C1, YUV.y
841 C1,
844 /* RGB.y = MAD YUV.z, C1.w, RGB.y
851 src_swizzle1(C1, W)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp     [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_fp.c 780 CONST C1 = { 1.596, -0.813, 2.018, -.391 }
785 RGB.xyz = MAD UYV.zzx, C1, UYV.y
787 RGB.xyz = MAD UYV.xxz, C1, UYV.y
788 RGB.y = MAD UYV.z, C1.w, RGB.y
793 struct prog_src_register C1 = search_or_add_const4f( c, 1.596, -0.813, 2.018, -.391 );
831 * RGB.xyz = MAD YUV.zzx, C1, YUV.y
833 * RGB.xyz = MAD YUV.xxz, C1, YUV.y
841 C1,
844 /* RGB.y = MAD YUV.z, C1.w, RGB.y
851 src_swizzle1(C1, W)
    [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 2533 milliseconds

1 2 3 4 56 7 8 910