/external/openssl/crypto/bn/asm/ |
D | co-586.pl | 18 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_; 30 &add($c0,"eax"); 40 &mov(&DWP($i*4,"eax","",0),$c0) if $pos > 0; # save r[]; 46 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_; 61 &add($c0,"eax"); 69 &mov(&DWP($i*4,$r,"",0),$c0) if $pos > 0; # save r[]; 75 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_; 95 &add($c0,"eax"); 100 &mov(&DWP($i*4,$r,"",0),$c0) if $pos > 0; # save r[]; 108 local($a,$b,$c0,$c1,$c2); [all …]
|
D | x86_64-gcc.c | 278 #define mul_add_c(a,b,c0,c1,c2) { \ 282 c0 += t1; t2 += (c0<t1)?1:0; \ 286 #define mul_add_c2(a,b,c0,c1,c2) { \ 292 c0 += t1; t2 += (c0<t1)?1:0; \ 296 #define mul_add_c(a,b,c0,c1,c2) do { \ argument 302 : "+r"(c0),"+d"(t2) \ 311 #define sqr_add_c(a,i,c0,c1,c2) do { \ argument 317 : "+r"(c0),"+d"(t2) \ 326 #define mul_add_c2(a,b,c0,c1,c2) do { \ argument 340 : "+r"(c0),"+d"(t2) \ [all …]
|
/external/openssl/crypto/bn/asm/x86/ |
D | comba.pl | 6 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_; 18 &add($c0,"eax"); 28 &mov(&DWP($i*4,"eax","",0),$c0) if $pos > 0; # save r[]; 34 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_; 49 &add($c0,"eax"); 57 &mov(&DWP($i*4,$r,"",0),$c0) if $pos > 0; # save r[]; 63 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_; 83 &add($c0,"eax"); 88 &mov(&DWP($i*4,$r,"",0),$c0) if $pos > 0; # save r[]; 96 local($a,$b,$c0,$c1,$c2); [all …]
|
/external/openssl/crypto/bn/ |
D | bn_asm.c | 442 #define mul_add_c(a,b,c0,c1,c2) \ argument 446 c0=(c0+t1)&BN_MASK2; if ((c0) < t1) t2++; \ 449 #define mul_add_c2(a,b,c0,c1,c2) \ argument 455 c0=(c0+t1)&BN_MASK2; \ 456 if ((c0 < t1) && (((++t2)&BN_MASK2) == 0)) c2++; \ 459 #define sqr_add_c(a,i,c0,c1,c2) \ argument 463 c0=(c0+t1)&BN_MASK2; if ((c0) < t1) t2++; \ 466 #define sqr_add_c2(a,i,j,c0,c1,c2) \ argument 467 mul_add_c2((a)[i],(a)[j],c0,c1,c2) 471 #define mul_add_c(a,b,c0,c1,c2) { \ argument [all …]
|
/external/qemu/distrib/jpeg-6b/ |
D | jquant2.c | 320 int c0,c1,c2; in update_box() local 330 for (c0 = c0min; c0 <= c0max; c0++) in update_box() 332 histp = & histogram[c0][c1][c2min]; in update_box() 335 boxp->c0min = c0min = c0; in update_box() 341 for (c0 = c0max; c0 >= c0min; c0--) in update_box() 343 histp = & histogram[c0][c1][c2min]; in update_box() 346 boxp->c0max = c0max = c0; in update_box() 353 for (c0 = c0min; c0 <= c0max; c0++) { in update_box() 354 histp = & histogram[c0][c1][c2min]; in update_box() 364 for (c0 = c0min; c0 <= c0max; c0++) { in update_box() [all …]
|
/external/jpeg/ |
D | jquant2.c | 320 int c0,c1,c2; in update_box() local 330 for (c0 = c0min; c0 <= c0max; c0++) in update_box() 332 histp = & histogram[c0][c1][c2min]; in update_box() 335 boxp->c0min = c0min = c0; in update_box() 341 for (c0 = c0max; c0 >= c0min; c0--) in update_box() 343 histp = & histogram[c0][c1][c2min]; in update_box() 346 boxp->c0max = c0max = c0; in update_box() 353 for (c0 = c0min; c0 <= c0max; c0++) { in update_box() 354 histp = & histogram[c0][c1][c2min]; in update_box() 364 for (c0 = c0min; c0 <= c0max; c0++) { in update_box() [all …]
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
D | InsnFormat.java | 591 protected static void write(AnnotatedOutput out, short c0) { in write() argument 592 out.writeShort(c0); in write() 602 protected static void write(AnnotatedOutput out, short c0, short c1) { in write() argument 603 out.writeShort(c0); in write() 615 protected static void write(AnnotatedOutput out, short c0, short c1, in write() argument 617 out.writeShort(c0); in write() 631 protected static void write(AnnotatedOutput out, short c0, short c1, in write() argument 633 out.writeShort(c0); in write() 649 protected static void write(AnnotatedOutput out, short c0, short c1, in write() argument 651 out.writeShort(c0); in write() [all …]
|
/external/mesa3d/src/glsl/ |
D | ir_constant_expression.cpp | 376 for (unsigned c = 0, c0 = 0, c1 = 0; in constant_expression_value() local 378 c0 += c0_inc, c1 += c1_inc, c++) { in constant_expression_value() 382 data.u[c] = MIN2(op[0]->value.u[c0], op[1]->value.u[c1]); in constant_expression_value() 385 data.i[c] = MIN2(op[0]->value.i[c0], op[1]->value.i[c1]); in constant_expression_value() 388 data.f[c] = MIN2(op[0]->value.f[c0], op[1]->value.f[c1]); in constant_expression_value() 398 for (unsigned c = 0, c0 = 0, c1 = 0; in constant_expression_value() local 400 c0 += c0_inc, c1 += c1_inc, c++) { in constant_expression_value() 404 data.u[c] = MAX2(op[0]->value.u[c0], op[1]->value.u[c1]); in constant_expression_value() 407 data.i[c] = MAX2(op[0]->value.i[c0], op[1]->value.i[c1]); in constant_expression_value() 410 data.f[c] = MAX2(op[0]->value.f[c0], op[1]->value.f[c1]); in constant_expression_value() [all …]
|
/external/valgrind/main/none/tests/amd64/ |
D | crc32.c | 119 UInt c0 = 0xFFFFFFFF; in try_simple() local 122 UInt cs = do_s_crc32b(c0, c); in try_simple() 123 UInt ch = do_h_crc32b(c0, c); in try_simple() 127 cs = do_s_crc32w(c0, w); in try_simple() 128 ch = do_h_crc32w(c0, w); in try_simple() 132 cs = do_s_crc32l(c0, i); in try_simple() 133 ch = do_h_crc32l(c0, i); in try_simple() 137 cs = do_s_crc32q(c0, q); in try_simple() 138 ch = do_h_crc32q(c0, q); in try_simple()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/ |
D | ITreeFixture.cs | 80 CommonTree c0, c1, c2; in testList() 81 r0.AddChild(c0 = new CommonTree(new CommonToken(101))); in testList() 87 Assert.AreEqual(r0, c0.Parent); in testList() 88 Assert.AreEqual(0, c0.ChildIndex); in testList() 104 CommonTree c0, c1, c2; in testList2() 105 r0.AddChild(c0 = new CommonTree(new CommonToken(101))); in testList2() 114 Assert.AreEqual(root, c0.Parent); in testList2() 115 Assert.AreEqual(0, c0.ChildIndex); in testList2() 116 Assert.AreEqual(root, c0.Parent); in testList2() 118 Assert.AreEqual(root, c0.Parent); in testList2() [all …]
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
D | TestTrees.java | 82 CommonTree c0, c1, c2; in testList() local 83 r0.addChild(c0=new CommonTree(new CommonToken(101))); in testList() 89 assertEquals(r0, c0.parent); in testList() 90 assertEquals(0, c0.childIndex); in testList() 104 CommonTree c0, c1, c2; in testList2() local 105 r0.addChild(c0=new CommonTree(new CommonToken(101))); in testList2() 114 assertEquals(root, c0.parent); in testList2() 115 assertEquals(0, c0.childIndex); in testList2() 116 assertEquals(root, c0.parent); in testList2() 118 assertEquals(root, c0.parent); in testList2() [all …]
|
/external/sepolicy/ |
D | mls_macros | 5 # declares categores c0 to c(N-1) 40 # levels from s0 to (N-1) with categories c0 to (M-1) 43 level s$1:c0.c$3; 54 define(`mls_systemhigh',`s`'decr(mls_num_sens):c0.c`'decr(mls_num_cats)')
|
/external/llvm/test/Transforms/SimplifyLibCalls/ |
D | 2009-05-30-memcmp-byte.ll | 6 %c0 = alloca i8, align 1 ; <i8*> [#uses=2] 8 store i8 64, i8* %c0 10 %call = call i32 @memcmp(i8* %c0, i8* %c2, i32 1) ; <i32> [#uses=1]
|
/external/v8/test/mjsunit/ |
D | array-literal-transitions.js | 58 var c0 = [1, 2, get(3.5)]; 59 assertTrue(%HasFastDoubleElements(c0)); 60 assertEquals(3.5, c0[2]); 61 assertEquals(2, c0[1]); 62 assertEquals(1, c0[0]);
|
/external/clang/test/CXX/expr/ |
D | p9.cpp | 16 signed char c0; variable 17 __typeof__(c0 + c0) c1;
|
/external/skia/src/core/ |
D | SkQuadClipper.cpp | 34 static bool chopMonoQuadAt(SkScalar c0, SkScalar c1, SkScalar c2, in chopMonoQuadAt() argument 40 SkScalar A = c0 - c1 - c1 + c2; in chopMonoQuadAt() 41 SkScalar B = 2*(c1 - c0); in chopMonoQuadAt() 42 SkScalar C = c0 - target; in chopMonoQuadAt()
|
D | SkEdgeClipper.cpp | 48 static bool chopMonoQuadAt(SkScalar c0, SkScalar c1, SkScalar c2, in chopMonoQuadAt() argument 54 SkScalar A = c0 - c1 - c1 + c2; in chopMonoQuadAt() 55 SkScalar B = 2*(c1 - c0); in chopMonoQuadAt() 56 SkScalar C = c0 - target; in chopMonoQuadAt() 226 static bool chopMonoCubicAt(SkScalar c0, SkScalar c1, SkScalar c2, SkScalar c3, in chopMonoCubicAt() argument 229 SkASSERT(c0 < target && target < c3); in chopMonoCubicAt() 231 SkScalar D = c0 - target; in chopMonoCubicAt() 232 SkScalar A = c3 + 3*(c1 - c2) - c0; in chopMonoCubicAt() 233 SkScalar B = 3*(c2 - c1 - c1 + c0); in chopMonoCubicAt() 234 SkScalar C = 3*(c1 - c0); in chopMonoCubicAt()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
D | CurrencyTest.java | 42 Currency c0 = Currency.getInstance("CAD"); in test_getInstanceLjava_util_Locale() local 46 c1 == c0); in test_getInstanceLjava_util_Locale() 50 c2 == c0); in test_getInstanceLjava_util_Locale() 54 c3 == c0); in test_getInstanceLjava_util_Locale() 56 c0 = Currency.getInstance("JPY"); in test_getInstanceLjava_util_Locale() 60 c1 == c0); in test_getInstanceLjava_util_Locale() 64 c2 == c0); in test_getInstanceLjava_util_Locale() 68 c3 == c0); in test_getInstanceLjava_util_Locale()
|
/external/opencv/cv/src/ |
D | cvsegmentation.cpp | 338 #define cdiff(ofs0) (tab[c0-dptr[ofs0]+255] + \ in cvPyrMeanShiftFiltering() 426 int c0 = dptr[0], c1 = dptr[1], c2 = dptr[2]; in cvPyrMeanShiftFiltering() local 446 int c0, c1, c2; in cvPyrMeanShiftFiltering() local 451 c0 = sptr[0], c1 = sptr[1], c2 = sptr[2]; in cvPyrMeanShiftFiltering() 477 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 ) in cvPyrMeanShiftFiltering() 483 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 ) in cvPyrMeanShiftFiltering() 489 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 ) in cvPyrMeanShiftFiltering() 495 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 ) in cvPyrMeanShiftFiltering() 505 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 ) in cvPyrMeanShiftFiltering() 526 tab[s0 - c0 + 255] + tab[s1 - c1 + 255] + in cvPyrMeanShiftFiltering() [all …]
|
/external/javassist/src/main/javassist/convert/ |
D | TransformWriteField.java | 41 char c0 = typedesc.charAt(0); in transform() local 42 if (c0 == 'J' || c0 == 'D') { // long or double in transform()
|
/external/srec/config/en.us/ |
D | Android.mk | 93 cmu6plus.ok.zip: $(CMU2NUANCE) $(DICT_DIR)/c0.6 $(DICT_DIR)/numbers.ok $(DICT_DIR)/fixit.ok $(DICT_… 94 $(CMU2NUANCE) < $(DICT_DIR)/c0.6 > $(DICT_DIR)/c0.6.ok 95 …sort -u $(DICT_DIR)/c0.6.ok $(DICT_DIR)/numbers.ok $(DICT_DIR)/fixit.ok $(DICT_DIR)/enroll.ok > $(…
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
D | LoopBlinnClassifier.cpp | 39 LoopBlinnClassifier::Result LoopBlinnClassifier::classify(const FloatPoint& c0, in classify() argument 48 FloatPoint3D b0(c0.x(), c0.y(), 1.0f); in classify()
|
/external/skia/tests/ |
D | ClipCubicTest.cpp | 43 static bool CurvesAreEqual(const SkPoint c0[4], in CurvesAreEqual() 47 if (SkScalarAbs(c0[i].fX - c1[i].fX) > SkFloatToScalar(tol) || in CurvesAreEqual() 48 SkScalarAbs(c0[i].fY - c1[i].fY) > SkFloatToScalar(tol) in CurvesAreEqual() 50 PrintCurve("c0", c0); in CurvesAreEqual()
|
/external/clang/test/SemaCXX/ |
D | scope-check.cpp | 68 C c0; in f() local 85 C c0; in f() local 105 C c0; in f() local
|
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/ |
D | test-trees.rb | 486 c0 = new_node( new_token 101 ) 487 r0.add_child c0 495 c0.parent.should == r0 496 c0.child_index.should == 0 507 c0 = new_node( new_token 101 ) 508 r0.add_child c0 518 c0.parent.should == root 519 c0.child_index.should == 0 531 c0 = new_node( new_token 101 ) 532 r0.add_child c0 [all …]
|