Home
last modified time | relevance | path

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

123456

/external/openssl/crypto/bn/asm/
Dx86_64-gcc.c102 BN_ULONG c1=0; in bn_mul_add_words() local
104 if (num <= 0) return(c1); in bn_mul_add_words()
108 mul_add(rp[0],ap[0],w,c1); in bn_mul_add_words()
109 mul_add(rp[1],ap[1],w,c1); in bn_mul_add_words()
110 mul_add(rp[2],ap[2],w,c1); in bn_mul_add_words()
111 mul_add(rp[3],ap[3],w,c1); in bn_mul_add_words()
116 mul_add(rp[0],ap[0],w,c1); if (--num==0) return c1; in bn_mul_add_words()
117 mul_add(rp[1],ap[1],w,c1); if (--num==0) return c1; in bn_mul_add_words()
118 mul_add(rp[2],ap[2],w,c1); return c1; in bn_mul_add_words()
121 return(c1); in bn_mul_add_words()
[all …]
Dco-586.pl17 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
33 &adc($c1,"edx");
45 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
63 &adc($c1,"edx");
74 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
95 &adc($c1,"edx");
107 local($a,$b,$c0,$c1,$c2);
114 $c1="ecx";
134 &xor($c1,$c1);
166 &mul_add_c($a,$ai,$b,$bi,$c0,$c1,$c2,$v,$i,$na,$nb);
[all …]
Dsparcv8plus.S667 mulx a_0,b_0,t_1 !mul_add_c(a[0],b[0],c1,c2,c3);
669 stuw t_1,rp(0) !=!r[0]=c1;
672 mulx a_0,b_1,t_1 !mul_add_c(a[0],b[1],c2,c3,c1);
678 mulx a_1,b_0,t_1 !=!mul_add_c(a[1],b[0],c2,c3,c1);
686 mulx a_2,b_0,t_1 !mul_add_c(a[2],b[0],c3,c1,c2);
692 mulx a_1,b_1,t_1 !mul_add_c(a[1],b[1],c3,c1,c2);
697 mulx a_0,b_2,t_1 !mul_add_c(a[0],b[2],c3,c1,c2);
705 mulx a_0,b_3,t_1 !mul_add_c(a[0],b[3],c1,c2,c3);
710 mulx a_1,b_2,t_1 !=!mul_add_c(a[1],b[2],c1,c2,c3);
715 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()
80 mul_add(rp[0],ap[0],w,c1); in bn_mul_add_words()
81 mul_add(rp[1],ap[1],w,c1); in bn_mul_add_words()
82 mul_add(rp[2],ap[2],w,c1); in bn_mul_add_words()
83 mul_add(rp[3],ap[3],w,c1); in bn_mul_add_words()
88 mul_add(rp[0],ap[0],w,c1); if (--num==0) return c1; in bn_mul_add_words()
89 mul_add(rp[1],ap[1],w,c1); if (--num==0) return c1; in bn_mul_add_words()
90 mul_add(rp[2],ap[2],w,c1); return c1; in bn_mul_add_words()
93 return(c1); in bn_mul_add_words()
[all …]
Dbn_mul.c396 int n=n2/2,c1,c2; in bn_mul_recursive() local
431 c1=bn_cmp_part_words(a,&(a[n]),tna,n-tna); in bn_mul_recursive()
434 switch (c1*3+c2) in bn_mul_recursive()
508 c1=(int)(bn_add_words(t,r,&(r[n2]),n2)); in bn_mul_recursive()
512 c1-=(int)(bn_sub_words(&(t[n2]),t,&(t[n2]),n2)); in bn_mul_recursive()
517 c1+=(int)(bn_add_words(&(t[n2]),&(t[n2]),t,n2)); in bn_mul_recursive()
525 c1+=(int)(bn_add_words(&(r[n]),&(r[n]),&(t[n2]),n2)); in bn_mul_recursive()
526 if (c1) in bn_mul_recursive()
530 ln=(lo+c1)&BN_MASK2; in bn_mul_recursive()
535 if (ln < (BN_ULONG)c1) in bn_mul_recursive()
[all …]
Dbn_sqr.c209 int zero,c1; in bn_sqr_recursive() local
239 c1=bn_cmp_words(a,&(a[n]),n); in bn_sqr_recursive()
241 if (c1 > 0) in bn_sqr_recursive()
243 else if (c1 < 0) in bn_sqr_recursive()
263 c1=(int)(bn_add_words(t,r,&(r[n2]),n2)); in bn_sqr_recursive()
266 c1-=(int)(bn_sub_words(&(t[n2]),t,&(t[n2]),n2)); in bn_sqr_recursive()
273 c1+=(int)(bn_add_words(&(r[n]),&(r[n]),&(t[n2]),n2)); in bn_sqr_recursive()
274 if (c1) in bn_sqr_recursive()
278 ln=(lo+c1)&BN_MASK2; in bn_sqr_recursive()
283 if (ln < (BN_ULONG)c1) in bn_sqr_recursive()
/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/icu4c/common/
Dunormcmp.cpp165 UChar32 c1, c2, cp1, cp2; in unorm_cmpEquivFold() local
206 c1=c2=-1; in unorm_cmpEquivFold()
215 if(c1<0) { in unorm_cmpEquivFold()
218 if(s1==limit1 || ((c1=*s1)==0 && (limit1==NULL || (options&_STRNCMP_STYLE)))) { in unorm_cmpEquivFold()
220 c1=-1; in unorm_cmpEquivFold()
265 if(c1==c2) { in unorm_cmpEquivFold()
266 if(c1<0) { in unorm_cmpEquivFold()
269 c1=c2=-1; /* make us fetch new code units */ in unorm_cmpEquivFold()
271 } else if(c1<0) { in unorm_cmpEquivFold()
279 cp1=c1; in unorm_cmpEquivFold()
[all …]
Duinvchar.c430 UChar32 c1, c2; in uprv_compareInvAscii() local
449 c1=c; in uprv_compareInvAscii()
451 c1=-1; in uprv_compareInvAscii()
456 c1=-2; in uprv_compareInvAscii()
459 if((c1-=c2)!=0) { in uprv_compareInvAscii()
460 return c1; in uprv_compareInvAscii()
475 UChar32 c1, c2; in uprv_compareInvEbcdic() local
494 c1=0; in uprv_compareInvEbcdic()
495 } else if((c1=asciiFromEbcdic[c])!=0 && UCHAR_IS_INVARIANT(c1)) { in uprv_compareInvEbcdic()
498 c1=-1; in uprv_compareInvEbcdic()
[all …]
Dustring.c670 UChar c1, c2; in u_strcmp() local
673 c1=*s1++; in u_strcmp()
675 if (c1 != c2 || c1 == 0) { in u_strcmp()
679 return (int32_t)c1 - (int32_t)c2; in u_strcmp()
687 UChar c1, c2; in uprv_strCompare() local
701 c1=*s1; in uprv_strCompare()
703 if(c1!=c2) { in uprv_strCompare()
706 if(c1==0) { in uprv_strCompare()
729 c1=*s1; in uprv_strCompare()
731 if(c1!=c2) { in uprv_strCompare()
[all …]
Dustrcase.c666 UChar32 c1, c2, cp1, cp2; in u_strcmpFold() local
695 c1=c2=-1; in u_strcmpFold()
704 if(c1<0) { in u_strcmpFold()
707 if(s1==limit1 || ((c1=*s1)==0 && (limit1==NULL || (options&_STRNCMP_STYLE)))) { in u_strcmpFold()
709 c1=-1; in u_strcmpFold()
754 if(c1==c2) { in u_strcmpFold()
755 if(c1<0) { in u_strcmpFold()
758 c1=c2=-1; /* make us fetch new code units */ in u_strcmpFold()
760 } else if(c1<0) { in u_strcmpFold()
768 cp1=c1; in u_strcmpFold()
[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/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/webkit/JavaScriptCore/parser/
DLexer.cpp632 int Lexer::matchPunctuator(int& charPos, int c1, int c2, int c3, int c4) in matchPunctuator() argument
634 if (c1 == '>' && c2 == '>' && c3 == '>' && c4 == '=') { in matchPunctuator()
638 if (c1 == '=' && c2 == '=' && c3 == '=') { in matchPunctuator()
642 if (c1 == '!' && c2 == '=' && c3 == '=') { in matchPunctuator()
646 if (c1 == '>' && c2 == '>' && c3 == '>') { in matchPunctuator()
650 if (c1 == '<' && c2 == '<' && c3 == '=') { in matchPunctuator()
654 if (c1 == '>' && c2 == '>' && c3 == '=') { in matchPunctuator()
658 if (c1 == '<' && c2 == '=') { in matchPunctuator()
662 if (c1 == '>' && c2 == '=') { in matchPunctuator()
666 if (c1 == '!' && c2 == '=') { in matchPunctuator()
[all …]
/external/webkit/WebCore/platform/text/
DBidiContext.cpp27 bool operator==(const BidiContext& c1, const BidiContext& c2) in operator ==() argument
29 if (&c1 == &c2) in operator ==()
31 if (c1.level() != c2.level() || c1.override() != c2.override() || c1.dir() != c2.dir()) in operator ==()
33 if (!c1.parent()) in operator ==()
35 return c2.parent() && *c1.parent() == *c2.parent(); in operator ==()
/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()
/external/dropbear/libtomcrypt/testprof/
Dx86_prof.c107 ulong64 c1, c2, t1, t2, t3; in init_timer() local
110 c1 = c2 = (ulong64)-1; in init_timer()
117 c1 = (t1 > c1) ? t1 : c1; in init_timer()
120 skew = c2 - c1; in init_timer()
258 ulong64 t1, c1; in time_keysched() local
271 c1 = (ulong64)-1; in time_keysched()
277 c1 = (t1 > c1) ? c1 : t1; in time_keysched()
279 t1 = c1 - skew; in time_keysched()
294 ulong64 t1, t2, c1, c2, a1, a2; in time_cipher() local
313 c1 = c2 = (ulong64)-1; in time_cipher()
[all …]
/external/jpeg/
Djquant2.c320 int c0,c1,c2; in update_box() local
331 for (c1 = c1min; c1 <= c1max; c1++) { in update_box()
332 histp = & histogram[c0][c1][c2min]; in update_box()
342 for (c1 = c1min; c1 <= c1max; c1++) { in update_box()
343 histp = & histogram[c0][c1][c2min]; in update_box()
352 for (c1 = c1min; c1 <= c1max; c1++) in update_box()
354 histp = & histogram[c0][c1][c2min]; in update_box()
357 boxp->c1min = c1min = c1; in update_box()
363 for (c1 = c1max; c1 >= c1min; c1--) in update_box()
365 histp = & histogram[c0][c1][c2min]; in update_box()
[all …]
/external/libffi/testsuite/libffi.call/
Dstruct5.c11 char c1; member
17 ts1.c1 += ts2.c1; in struct5()
52 ts5_arg1.c1 = 2; in main()
54 ts5_arg2.c1 = 5; in main()
59 CHECK(ts5_result->c1 == 7); in main()
/external/opencore/codecs_v2/video/avc_h264/enc/src/
Dfindhalfpel.cpp524 uint8 *c1 = qpel_cand; in GenerateQuartPelPred() local
545 *c1 = (c + a + 1) >> 1; in GenerateQuartPelPred()
546 *(c1 += 384) = (b + a + 1) >> 1; /* c2 */ in GenerateQuartPelPred()
547 *(c1 += 384) = (b + c + 1) >> 1; /* c3 */ in GenerateQuartPelPred()
548 *(c1 += 384) = (b + d + 1) >> 1; /* c4 */ in GenerateQuartPelPred()
552 *(c1 += 384) = (c + d + 1) >> 1; /* c5 */ in GenerateQuartPelPred()
553 *(c1 += 384) = (b + d + 1) >> 1; /* c6 */ in GenerateQuartPelPred()
554 *(c1 += 384) = (b + c + 1) >> 1; /* c7 */ in GenerateQuartPelPred()
555 *(c1 += 384) = (b + a + 1) >> 1; /* c8 */ in GenerateQuartPelPred()
557 c1 += offset; in GenerateQuartPelPred()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/gapi/
DSDL_gapivideo.c956 PIXEL c1 = *srcPointer++; in updateLine16to4() local
957 c1 = ((c1 & REDMASK) >> 11) + ((c1 & GREENMASK) >> 5) + (c1 & BLUEMASK); in updateLine16to4()
958 *destPointer = (*destPointer & 0x0F) | ((~(c1 >> 3) << 4)); in updateLine16to4()
969 PIXEL c1 = *srcPointer++; in updateLine16to4() local
970 c1 = ((c1 & REDMASK) >> 11) + ((c1 & GREENMASK) >> 5) + (c1 & BLUEMASK); in updateLine16to4()
971 *destPointer = (*destPointer & 0xF0) | ((~(c1 >> 3) & 0xF)); in updateLine16to4()
982 PIXEL c1 = *line1++; in updateLine16to4() local
984 c1 = ((c1 & REDMASK) >> 11) + ((c1 & GREENMASK) >> 5) + (c1 & BLUEMASK); in updateLine16to4()
986 *destPointer = ~((c1 >> 3) + ((c2 >> 3) << 4)); in updateLine16to4()
998 PIXEL c1 = *srcPointer++; in updateLine16to4() local
[all …]
/external/speex/libspeex/
Dsmallft.c273 static void dradfg(int ido,int ip,int l1,int idl1,float *cc,float *c1, in dradfg() argument
302 ch[t2]=c1[t2]; in dradfg()
321 ch[t3-1]=wa[idij-1]*c1[t3-1]+wa[idij]*c1[t3]; in dradfg()
322 ch[t3]=wa[idij-1]*c1[t3]-wa[idij]*c1[t3-1]; in dradfg()
338 ch[t3-1]=wa[idij-1]*c1[t3-1]+wa[idij]*c1[t3]; in dradfg()
339 ch[t3]=wa[idij-1]*c1[t3]-wa[idij]*c1[t3-1]; in dradfg()
362 c1[t5-1]=ch[t5-1]+ch[t6-1]; in dradfg()
363 c1[t6-1]=ch[t5]-ch[t6]; in dradfg()
364 c1[t5]=ch[t5]+ch[t6]; in dradfg()
365 c1[t6]=ch[t6-1]-ch[t5-1]; in dradfg()
[all …]
/external/bluez/utils/test/
Dl2test.c107 int c1; in ltoh() local
109 c1 = (c >> 28) & 0x0f; in ltoh()
110 *(s++) = NIBBLE_TO_ASCII (c1); in ltoh()
111 c1 = (c >> 24) & 0x0f; in ltoh()
112 *(s++) = NIBBLE_TO_ASCII (c1); in ltoh()
113 c1 = (c >> 20) & 0x0f; in ltoh()
114 *(s++) = NIBBLE_TO_ASCII (c1); in ltoh()
115 c1 = (c >> 16) & 0x0f; in ltoh()
116 *(s++) = NIBBLE_TO_ASCII (c1); in ltoh()
117 c1 = (c >> 12) & 0x0f; in ltoh()
[all …]

123456