Home
last modified time | relevance | path

Searched refs:c1 (Results 1 – 25 of 495) sorted by relevance

12345678910>>...20

/external/openssl/crypto/bn/asm/
Dx86_64-gcc.c111 BN_ULONG c1=0; in bn_mul_add_words() local
113 if (num <= 0) return(c1); in bn_mul_add_words()
117 mul_add(rp[0],ap[0],w,c1); in bn_mul_add_words()
118 mul_add(rp[1],ap[1],w,c1); in bn_mul_add_words()
119 mul_add(rp[2],ap[2],w,c1); in bn_mul_add_words()
120 mul_add(rp[3],ap[3],w,c1); in bn_mul_add_words()
125 mul_add(rp[0],ap[0],w,c1); if (--num==0) return c1; in bn_mul_add_words()
126 mul_add(rp[1],ap[1],w,c1); if (--num==0) return c1; in bn_mul_add_words()
127 mul_add(rp[2],ap[2],w,c1); return c1; in bn_mul_add_words()
130 return(c1); in bn_mul_add_words()
[all …]
Ds390x.S329 #define c1 %r1 macro
333 #define mul_add_c(ai,bi,c1,c2,c3) \ argument
336 algr c1,%r7; \
347 lghi c1,0
352 mul_add_c(0,0,c1,c2,c3);
353 stg c1,0*8(%r2)
354 lghi c1,0
356 mul_add_c(0,1,c2,c3,c1);
357 mul_add_c(1,0,c2,c3,c1);
361 mul_add_c(2,0,c3,c1,c2);
[all …]
Dbn-mips.s759 multu $12,$8 # mul_add_c(a[0],b[0],c1,c2,c3);
769 multu $12,$9 # mul_add_c(a[0],b[1],c2,c3,c1);
778 multu $13,$8 # mul_add_c(a[1],b[0],c2,c3,c1);
782 sw $2,0($4) # r[0]=c1;
787 multu $14,$8 # mul_add_c(a[2],b[0],c3,c1,c2);
797 multu $13,$9 # mul_add_c(a[1],b[1],c3,c1,c2);
804 multu $12,$10 # mul_add_c(a[0],b[2],c3,c1,c2);
812 multu $12,$11 # mul_add_c(a[0],b[3],c1,c2,c3);
823 multu $13,$10 # mul_add_c(a[1],b[2],c1,c2,c3);
831 multu $14,$9 # mul_add_c(a[2],b[1],c1,c2,c3);
[all …]
Dco-586.pl18 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
34 &adc($c1,"edx");
46 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
64 &adc($c1,"edx");
75 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
96 &adc($c1,"edx");
108 local($a,$b,$c0,$c1,$c2);
115 $c1="ecx";
135 &xor($c1,$c1);
167 &mul_add_c($a,$ai,$b,$bi,$c0,$c1,$c2,$v,$i,$na,$nb);
[all …]
Dsparcv8plus.S678 mulx a_0,b_0,t_1 !mul_add_c(a[0],b[0],c1,c2,c3);
680 stuw t_1,rp(0) !=!r[0]=c1;
683 mulx a_0,b_1,t_1 !mul_add_c(a[0],b[1],c2,c3,c1);
689 mulx a_1,b_0,t_1 !=!mul_add_c(a[1],b[0],c2,c3,c1);
697 mulx a_2,b_0,t_1 !mul_add_c(a[2],b[0],c3,c1,c2);
703 mulx a_1,b_1,t_1 !mul_add_c(a[1],b[1],c3,c1,c2);
708 mulx a_0,b_2,t_1 !mul_add_c(a[0],b[2],c3,c1,c2);
716 mulx a_0,b_3,t_1 !mul_add_c(a[0],b[3],c1,c2,c3);
721 mulx a_1,b_2,t_1 !=!mul_add_c(a[1],b[2],c1,c2,c3);
726 mulx a_2,b_1,t_1 !mul_add_c(a[2],b[1],c1,c2,c3);
[all …]
Dsparcv8.S568 umul a_0,b_0,c_1 !=!mul_add_c(a[0],b[0],c1,c2,c3);
571 st c_1,rp(0) !r[0]=c1;
573 umul a_0,b_1,t_1 !=!mul_add_c(a[0],b[1],c2,c3,c1);
580 umul a_1,b_0,t_1 !mul_add_c(a[1],b[0],c2,c3,c1);
587 umul a_2,b_0,t_1 !mul_add_c(a[2],b[0],c3,c1,c2);
593 umul a_1,b_1,t_1 !mul_add_c(a[1],b[1],c3,c1,c2);
599 umul a_0,b_2,t_1 !mul_add_c(a[0],b[2],c3,c1,c2);
606 umul a_0,b_3,t_1 !mul_add_c(a[0],b[3],c1,c2,c3);
611 umul a_1,b_2,t_1 !=!mul_add_c(a[1],b[2],c1,c2,c3);
617 umul a_2,b_1,t_1 !mul_add_c(a[2],b[1],c1,c2,c3);
[all …]
/external/openssl/crypto/bn/
Dbn_asm.c73 BN_ULONG c1=0; in bn_mul_add_words() local
76 if (num <= 0) return(c1); in bn_mul_add_words()
81 mul_add(rp[0],ap[0],w,c1); in bn_mul_add_words()
82 mul_add(rp[1],ap[1],w,c1); in bn_mul_add_words()
83 mul_add(rp[2],ap[2],w,c1); in bn_mul_add_words()
84 mul_add(rp[3],ap[3],w,c1); in bn_mul_add_words()
90 mul_add(rp[0],ap[0],w,c1); in bn_mul_add_words()
94 return(c1); in bn_mul_add_words()
99 BN_ULONG c1=0; in bn_mul_words() local
102 if (num <= 0) return(c1); in bn_mul_words()
[all …]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
DCertificateTest.java66 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding); in testHashCode() local
69 assertTrue(c1.hashCode() == c2.hashCode()); in testHashCode()
77 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding); in testHashCodeEqualsObject() local
80 assertTrue((c1.hashCode() == c2.hashCode()) && c1.equals(c2)); in testHashCodeEqualsObject()
89 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding); in testGetType() local
90 assertEquals("TEST_TYPE", c1.getType()); in testGetType()
98 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding); in testEqualsObject01() local
99 assertTrue(c1.equals(c1)); in testEqualsObject01()
108 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding); in testEqualsObject02() local
110 assertTrue(c1.equals(c2) && c2.equals(c1)); in testEqualsObject02()
[all …]
/external/oprofile/libutil++/tests/
Dcomma_list_tests.cpp28 comma_list<int> c1; in main() local
30 check(c1, 1, true); in main()
32 c1.set("2"); in main()
34 check(c1, 2, true); in main()
35 check(c1, 3, false); in main()
37 c1.set("3"); in main()
39 check(c1, 2, false); in main()
40 check(c1, 3, true); in main()
42 c1.set("2,3"); in main()
44 check(c1, 2, true); in main()
[all …]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
DEllipticCurve_ImplTest.java45 EllipticCurve c2=null, c1 = in testEqualsObject02() local
49 assertFalse(c1.equals(c2)); in testEqualsObject02()
52 c1 = new EllipticCurve(new ECFieldFp(BigInteger.valueOf(23L)), in testEqualsObject02()
58 assertFalse(c1.equals(c2) || c2.equals(c1)); in testEqualsObject02()
61 c1 = new EllipticCurve(new ECFieldFp(BigInteger.valueOf(23L)), in testEqualsObject02()
67 assertFalse(c1.equals(c2) || c2.equals(c1)); in testEqualsObject02()
70 c1 = new EllipticCurve(new ECFieldFp(BigInteger.valueOf(23L)), in testEqualsObject02()
76 assertFalse(c1.equals(c2) || c2.equals(c1)); in testEqualsObject02()
79 c1 = new EllipticCurve(new ECFieldFp(BigInteger.valueOf(23L)), in testEqualsObject02()
87 assertFalse(c1.equals(c2) || c2.equals(c1)); in testEqualsObject02()
[all …]
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
DCharsetTest.java75 Charset c1 = Charset.forName("US-ASCII"); in testRequiredCharsetSupported() local
444 MockCharset c1 = new MockCharset("mock", null); in testCompareTo_Normal() local
445 assertEquals(0, c1.compareTo(c1)); in testCompareTo_Normal()
448 assertEquals(0, c1.compareTo(c2)); in testCompareTo_Normal()
451 assertTrue(c1.compareTo(c2) < 0); in testCompareTo_Normal()
452 assertTrue(c2.compareTo(c1) > 0); in testCompareTo_Normal()
455 assertTrue(c1.compareTo(c2) > 0); in testCompareTo_Normal()
456 assertTrue(c2.compareTo(c1) < 0); in testCompareTo_Normal()
459 assertTrue(c1.compareTo(c2) > 0); in testCompareTo_Normal()
460 assertTrue(c2.compareTo(c1) < 0); in testCompareTo_Normal()
[all …]
/external/valgrind/main/memcheck/tests/
Dleak-cycle.c39 struct n *volatile c1, *volatile c2; in main() local
44 c1 = mkcycle(); in main()
47 c1 = c2 = 0; in main()
50 c1 = mkcycle(); in main()
55 if (c1 < c2) in main()
56 c2->r = c1; in main()
58 c1->r = c2; in main()
60 c1 = c2 = 0; in main()
63 c1 = mkcycle(); in main()
66 c1->r = c2; in main()
[all …]
/external/libvpx/vp8/encoder/x86/
Ddct_sse2.asm87 psubw xmm3, xmm1 ;c1 d1 c1 d1 c1 d1 c1 d1
89 psllw xmm3, 3 ;c1 <<= 3 d1 <<= 3
95 pmaddwd xmm3, XMMWORD PTR[GLOBAL(_5352_2217)] ;c1*2217 + d1*5352
96 pmaddwd xmm4, XMMWORD PTR[GLOBAL(_2217_neg5352)];d1*2217 - c1*5352
100 psrad xmm3, 12 ;(c1 * 2217 + d1 * 5352 + 14500)>>12
101 psrad xmm4, 12 ;(d1 * 2217 - c1 * 5352 + 7500)>>12
124 psubw xmm3, xmm2 ;c1 c1 c1 c1 d1 d1 d1 d1
128 pshufd xmm3, xmm3, 0d8h ;c1 c1 d1 d1 c1 c1 d1 d1
130 pshuflw xmm3, xmm3, 0d8h ;c1 c1 d1 d1 c1 d1 c1 d1
132 pshufhw xmm3, xmm3, 0d8h ;c1 d1 c1 d1 c1 d1 c1 d1
[all …]
Ddct_mmx.asm70 psubw mm4, mm2 ; c1 = 1 - 2
86 ; interleave c1, d1
88 punpcklwd mm1, mm4 ; c1 d1
89 punpckhwd mm5, mm4 ; c1 d1
94 pmaddwd mm1, MMWORD PTR[GLOBAL (_5352_2217)] ; c1*2217 + d1*5352
95 pmaddwd mm4, MMWORD PTR[GLOBAL (_5352_2217)] ; c1*2217 + d1*5352
97 pmaddwd mm3, MMWORD PTR[GLOBAL(_2217_neg5352)] ; d1*2217 - c1*5352
98 pmaddwd mm5, MMWORD PTR[GLOBAL(_2217_neg5352)] ; d1*2217 - c1*5352
105 psrad mm1, 12 ; (c1 * 2217 + d1 * 5352 + 14500)>>12
106 psrad mm4, 12 ; (c1 * 2217 + d1 * 5352 + 14500)>>12
[all …]
/external/icu4c/common/
Dunormcmp.cpp170 UChar32 c1, c2, cp1, cp2; in unorm_cmpEquivFold() local
211 c1=c2=-1; in unorm_cmpEquivFold()
220 if(c1<0) { in unorm_cmpEquivFold()
223 if(s1==limit1 || ((c1=*s1)==0 && (limit1==NULL || (options&_STRNCMP_STYLE)))) { in unorm_cmpEquivFold()
225 c1=-1; in unorm_cmpEquivFold()
270 if(c1==c2) { in unorm_cmpEquivFold()
271 if(c1<0) { in unorm_cmpEquivFold()
274 c1=c2=-1; /* make us fetch new code units */ in unorm_cmpEquivFold()
276 } else if(c1<0) { in unorm_cmpEquivFold()
284 cp1=c1; in unorm_cmpEquivFold()
[all …]
Duinvchar.c453 UChar32 c1, c2; in uprv_compareInvAscii() local
472 c1=c; in uprv_compareInvAscii()
474 c1=-1; in uprv_compareInvAscii()
482 if((c1-=c2)!=0) { in uprv_compareInvAscii()
483 return c1; in uprv_compareInvAscii()
498 UChar32 c1, c2; in uprv_compareInvEbcdic() local
517 c1=0; in uprv_compareInvEbcdic()
518 } else if((c1=asciiFromEbcdic[c])!=0 && UCHAR_IS_INVARIANT(c1)) { in uprv_compareInvEbcdic()
521 c1=-1; in uprv_compareInvEbcdic()
529 if((c1-=c2)!=0) { in uprv_compareInvEbcdic()
[all …]
/external/libvpx/vp8/encoder/
Ddct.c17 int a1, b1, c1, d1; in vp8_short_fdct4x4_c() local
25 c1 = ((ip[1] - ip[2])<<3); in vp8_short_fdct4x4_c()
31 op[1] = (c1 * 2217 + d1 * 5352 + 14500)>>12; in vp8_short_fdct4x4_c()
32 op[3] = (d1 * 2217 - c1 * 5352 + 7500)>>12; in vp8_short_fdct4x4_c()
44 c1 = ip[4] - ip[8]; in vp8_short_fdct4x4_c()
50 op[4] =((c1 * 2217 + d1 * 5352 + 12000)>>16) + (d1!=0); in vp8_short_fdct4x4_c()
51 op[12] = (d1 * 2217 - c1 * 5352 + 51000)>>16; in vp8_short_fdct4x4_c()
67 int a1, b1, c1, d1; in vp8_short_walsh4x4_c() local
77 c1 = ((ip[1] - ip[3])<<2); in vp8_short_walsh4x4_c()
81 op[1] = b1 + c1; in vp8_short_walsh4x4_c()
[all …]
/external/icu4c/samples/uciter8/
Duciter8.c48 UChar32 c1, c2; in compareIterators() local
74 c1=iter1->current(iter1); in compareIterators()
76 if(c1!=c2) { in compareIterators()
77 … log_err("%s->current()=U+%04x != U+%04x=%s->current() at middle=%d\n", n1, c1, c2, n2, middle); in compareIterators()
83 c1=iter1->next(iter1); in compareIterators()
85 if(c1!=c2) { in compareIterators()
86 …log_err("%s->next()=U+%04x != U+%04x=%s->next() at %d (started in middle)\n", n1, c1, c2, n2, iter… in compareIterators()
93 c1=iter1->previous(iter1); in compareIterators()
95 if(c1!=c2) { in compareIterators()
96 …evious()=U+%04x != U+%04x=%s->previous() at %d (started in middle)\n", n1, c1, c2, n2, iter1->getI… in compareIterators()
[all …]
/external/openssl/crypto/bn/asm/x86/
Dcomba.pl6 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
22 &adc($c1,"edx");
34 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
52 &adc($c1,"edx");
63 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
84 &adc($c1,"edx");
96 local($a,$b,$c0,$c1,$c2);
103 $c1="ecx";
123 &xor($c1,$c1);
155 &mul_add_c($a,$ai,$b,$bi,$c0,$c1,$c2,$v,$i,$na,$nb);
[all …]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
DCollections2Test.java344 Collection<Object> c1 = new ArrayList<Object>(); in test_Disjoint() local
346 Collections.addAll(c1, arr1); in test_Disjoint()
348 assertTrue(Collections.disjoint(c1, c2)); in test_Disjoint()
349 c1.add(arr2[10]); in test_Disjoint()
350 assertFalse(Collections.disjoint(c1, c2)); in test_Disjoint()
352 c1 = new LinkedList<Object>(); in test_Disjoint()
354 Collections.addAll(c1, arr1); in test_Disjoint()
356 assertTrue(Collections.disjoint(c1, c2)); in test_Disjoint()
357 c1.add(arr2[10]); in test_Disjoint()
358 assertFalse(Collections.disjoint(c1, c2)); in test_Disjoint()
[all …]
/external/bzip2/
Dblocksort.c355 UChar c1, c2; in mainGtU() local
360 c1 = block[i1]; c2 = block[i2]; in mainGtU()
361 if (c1 != c2) return (c1 > c2); in mainGtU()
364 c1 = block[i1]; c2 = block[i2]; in mainGtU()
365 if (c1 != c2) return (c1 > c2); in mainGtU()
368 c1 = block[i1]; c2 = block[i2]; in mainGtU()
369 if (c1 != c2) return (c1 > c2); in mainGtU()
372 c1 = block[i1]; c2 = block[i2]; in mainGtU()
373 if (c1 != c2) return (c1 > c2); in mainGtU()
376 c1 = block[i1]; c2 = block[i2]; in mainGtU()
[all …]
/external/libvpx/vp8/common/
Didctllm.c31 int a1, b1, c1, d1; in vp8_short_idct4x4llm_c() local
45 c1 = temp1 - temp2; in vp8_short_idct4x4llm_c()
54 op[shortpitch*1] = b1 + c1; in vp8_short_idct4x4llm_c()
55 op[shortpitch*2] = b1 - c1; in vp8_short_idct4x4llm_c()
71 c1 = temp1 - temp2; in vp8_short_idct4x4llm_c()
81 op[1] = (b1 + c1 + 4) >> 3; in vp8_short_idct4x4llm_c()
82 op[2] = (b1 - c1 + 4) >> 3; in vp8_short_idct4x4llm_c()
136 int a1, b1, c1, d1; in vp8_short_inv_walsh4x4_c() local
145 c1 = ip[4] - ip[8]; in vp8_short_inv_walsh4x4_c()
149 op[4] = c1 + d1; in vp8_short_inv_walsh4x4_c()
[all …]
/external/llvm/test/MC/ARM/
Darm_instructions.s63 @ CHECK: cdp p7, #1, c1, c1, c1, #4 @ encoding: [0x81,0x17,0x11,0xee]
64 cdp p7, #1, c1, c1, c1, #4
65 @ CHECK: cdp2 p7, #1, c1, c1, c1, #4 @ encoding: [0x81,0x17,0x11,0xfe]
66 cdp2 p7, #1, c1, c1, c1, #4
/external/blktrace/
Dstrverscmp.c93 unsigned char c1, c2; in strverscmp() local
126 c1 = *p1++; in strverscmp()
129 state = S_N | ((c1 == '0') + (isdigit (c1) != 0)); in strverscmp()
131 while ((diff = c1 - c2) == 0 && c1 != '\0') in strverscmp()
134 c1 = *p1++; in strverscmp()
136 state |= (c1 == '0') + (isdigit (c1) != 0); in strverscmp()
/external/bison/lib/
Dstrverscmp.c65 unsigned char c1, c2; in __strverscmp() local
98 c1 = *p1++; in __strverscmp()
101 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0)); in __strverscmp()
103 while ((diff = c1 - c2) == 0 && c1 != '\0') in __strverscmp()
106 c1 = *p1++; in __strverscmp()
108 state |= (c1 == '0') + (ISDIGIT (c1) != 0); in __strverscmp()

12345678910>>...20