/external/chromium_org/third_party/boringssl/src/crypto/bn/ |
generic.c | 368 BN_ULONG carry = 0; local 380 mul(rp[0], ap[0], bl, bh, carry); 381 mul(rp[1], ap[1], bl, bh, carry); 382 mul(rp[2], ap[2], bl, bh, carry); 383 mul(rp[3], ap[3], bl, bh, carry); 389 mul(rp[0], ap[0], bl, bh, carry); 394 return carry;
|
/external/openssl/crypto/bn/asm/ |
armv4-mont.pl | 210 subs $tj,$tj,$tj @ "clear" carry flag 215 teq $tp,$num @ preserve carry 217 sbcs $nhi,$nhi,#0 @ upmost carry 611 subs $aptr,sp,#0 @ clear carry flag 621 teq $aptr,$bptr @ preserves carry 632 sbcs r10,r10,#0 @ result is carry flag 653 teq $aptr,$bptr @ preserves carry
|
pa-risc2.s | 394 COPY ht_1,%ret1 ; carry = ht 436 COPY ht_0,%ret1 ; copy carry 611 ADD,DC %r0,%r0,%ret1 ; set c to carry 613 ADD,DC %ret1,%r0,%ret1 ; c+= carry 619 ADD,DC %r0,%r0,%ret1 ; set c to carry 621 ADD,DC %ret1,%r0,%ret1 ; c+= carry 638 ADD,DC %r0,%r0,%ret1 ; set c to carry (could use CMPCLR??) 640 ADD,DC %ret1,%r0,%ret1 ; c+= carry [all...] |
pa-risc2W.s | 384 COPY ht_1,%ret0 ; carry = ht 426 COPY ht_0,%ret0 ; copy carry 600 ADD,DC %r0,%r0,%ret0 ; set c to carry 602 ADD,DC %ret0,%r0,%ret0 ; c+= carry 608 ADD,DC %r0,%r0,%ret0 ; set c to carry 610 ADD,DC %ret0,%r0,%ret0 ; c+= carry 627 ADD,DC %r0,%r0,%ret0 ; set c to carry (could use CMPCLR??) 629 ADD,DC %ret0,%r0,%ret0 ; c+= carry 1062 ADD,DC C3,%r0,C3 ; add in carry (c3++) 1065 ADD,DC ht,%r0,ht ; add in carry (ht++ [all...] |
/external/openssl/crypto/bn/ |
bn_asm.c | 177 BN_ULONG carry=0; local 189 mul(rp[0],ap[0],bl,bh,carry); 190 mul(rp[1],ap[1],bl,bh,carry); 191 mul(rp[2],ap[2],bl,bh,carry); 192 mul(rp[3],ap[3],bl,bh,carry); 198 mul(rp[0],ap[0],bl,bh,carry); 201 return(carry);
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
k_rem_pio2.c | 296 int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local 341 n += 1; carry = 0; 344 if(carry==0) { 346 carry = 1; iq[i] = 0x1000000- j; 360 if(carry!=0) z -= scalbn(one,q0);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
intnum.c | 424 boolean carry = 0; local 446 BitVector_add(result, op1, op2, &carry); 449 BitVector_sub(result, op1, op2, &carry); 521 carry = BitVector_msb_(op1); 524 BitVector_shift_right(result, carry);
|
/external/stlport/src/ |
num_get_float.cpp | 240 * would cause carry to create 420 if (value == (ULL(1) << (limits::digits - 1))) { /* carry created normal number */ 444 if ((value >> 53) != 0) { /* carry all the way across */ 548 if ( (vv.i64 >> (limits::digits < 64 ? limits::digits : 0)) != 0 ) { /* carry all the way across */ 621 if (vv.i64 == (ULL(1) << (limits::digits - 1))) { /* carry created normal number */
|
/ndk/sources/cxx-stl/stlport/src/ |
num_get_float.cpp | 240 * would cause carry to create 420 if (value == (ULL(1) << (limits::digits - 1))) { /* carry created normal number */ 444 if ((value >> 53) != 0) { /* carry all the way across */ 548 if ( (vv.i64 >> (limits::digits < 64 ? limits::digits : 0)) != 0 ) { /* carry all the way across */ 621 if (vv.i64 == (ULL(1) << (limits::digits - 1))) { /* carry created normal number */
|
/external/bison/lib/ |
vasnprintf.c | 387 mp_twolimb_t carry = 0; local 391 carry += (mp_twolimb_t) digit1 * (mp_twolimb_t) digit2; 392 carry += dp[i + j]; 393 dp[i + j] = (mp_limb_t) carry; 394 carry = carry >> GMP_LIMB_BITS; 396 dp[i + len2] = (mp_limb_t) carry; 451 r[j+i]:=r[j+i]-(u mod beta) (+ beta, if carry), 452 u:=u div beta (+ 1, if carry in subtraction) 456 the carry u does not overflow. 729 mp_twolimb_t carry = 0; local 754 mp_limb_t carry = 0; local 1132 mp_twolimb_t carry = 0; local [all...] |
/external/chromium_org/sync/internal_api/public/base/ |
ordinal.h | 173 // necessary. Returns the left-most carry. 442 // maintaining a "forward carry" which is either 0 or 451 // AddDigitValue returning a non-zero carry would imply that
|
/external/chromium_org/third_party/boringssl/src/crypto/sha/asm/ |
sha1-armv4-large.pl | 192 cmn sp,#0 @ [+3], clear carry to denote 20_39 199 teq $Xi,sp @ preserve carry 216 cmp sp,#0 @ set carry to denote 60_79
|
/external/llvm/lib/Target/PowerPC/ |
PPCRegisterInfo.td | 210 // Carry bit. In the architecture this is really bit 0 of the XER register 213 def CARRY: SPR<1, "ca">; 307 def CARRYRC : RegisterClass<"PPC", [i32], 32, (add CARRY)> {
|
/external/opencv/cxcore/src/ |
cxrand.cpp | 54 Multiply-with-carry generator is used here: 55 temp = ( A*X(n) + carry ) 57 carry = temp / (2^32)
|
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
pvmp3_crc.cpp | 145 uint32 carry; local 150 carry = *crc & 0x8000; 152 if (!carry ^ !(data & masking))
|
/frameworks/native/cmds/servicemanager/ |
binder.c | 538 /* Note: The payload will carry 32bit size instead of size_t */ 564 /* Note: The payload will carry 32bit size instead of size_t */ 601 /* Note: The payload will carry 32bit size instead of size_t */
|
/external/chromium_org/crypto/ |
p224.cc | 234 // carry down to a[0]. 310 // We may just have made out[0] negative. So we carry down. If we made 320 // carry chain. 334 // 2**28. In this case, the partial carry chain didn't change any values 339 // overflowing and being reduced by the second carry chain, out[3] <= 343 // Again, we may just have made out[0] negative, so do the same carry down.
|
/external/bzip2/ |
README | 27 complete ok, carry on to installation: 140 to carry out a patent search. Therefore I cannot give any
|
/external/chromium_org/net/base/ |
int128.h | 296 // terms c96 and c64 are safe to ignore carry bit 301 // add terms after this one at a time to capture carry
|
/external/chromium_org/third_party/mesa/src/src/mesa/x86/rtasm/ |
x86sse.h | 58 cc_NAE, /* not above or equal / carry */ 59 cc_AE, /* above or equal / not carry */
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
arith_routines_hist.c | 80 /* handle carry */ 83 /* propagate carry */
|
arith_routines_logist.c | 163 /* handle carry */ 166 /* propagate carry */
|
/external/compiler-rt/lib/builtins/ |
fp_lib.h | 92 // Sum terms that contribute to lo in a way that allows us to get the carry 96 // Sum terms contributing to hi with the carry from lo
|
/external/llvm/include/llvm/CodeGen/ |
ISDOpcodes.h | 193 /// like ADDC/SUBC, which indicate the carry result is always false. 196 /// Carry-setting nodes for multiple precision addition and subtraction. 199 /// result is the carry flag result. 202 /// Carry-using nodes for multiple precision addition and subtraction. These 204 /// the add or sub, and the third is the input carry flag. These nodes 206 /// carry flag. These nodes both read and write a carry flag to allow them 566 /// of a call sequence, and carry arbitrary information that target might [all...] |
/external/llvm/lib/Target/Mips/ |
Mips16ISelDAGToDAG.cpp | 281 SDNode *Carry = CurDAG->getMachineNode(Sltu_op, DL, VT, Ops); 284 SDValue(Carry,0), RHS);
|