HomeSort by relevance Sort by last modified time
    Searched refs:borrow (Results 1 - 22 of 22) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
dmisc.c 119 ULLong borrow, carry, y, ys; local
121 ULong borrow, carry, y, ys; local
144 borrow = 0;
150 y = *bx - (ys & 0xffffffffUL) - borrow;
151 borrow = y >> 32 & 1UL;
159 y = (*bx & 0xffff) - (ys & 0xffff) - borrow;
160 borrow = (y & 0x10000) >> 16;
161 z = (*bx >> 16) - (zs & 0xffff) - borrow;
162 borrow = (z & 0x10000) >> 16;
167 y = *bx - (ys & 0xffff) - borrow;
    [all...]
misc.c 559 ULLong borrow, y; local
561 ULong borrow, y; local
595 borrow = 0;
598 y = (ULLong)*xa++ - *xb++ - borrow;
599 borrow = y >> 32 & 1UL;
604 y = *xa++ - borrow;
605 borrow = y >> 32 & 1UL;
611 y = (*xa & 0xffff) - (*xb & 0xffff) - borrow;
612 borrow = (y & 0x10000) >> 16;
613 z = (*xa++ >> 16) - (*xb++ >> 16) - borrow;
    [all...]
strtodg.c 103 ULong borrow = 1, y; local
119 y = *x - borrow;
120 borrow = (y & 0x10000) >> 16;
122 } while(borrow && x < xe);
  /external/clang/test/Index/
comment-cplus11-specific.cpp 13 namespace borrow { namespace
  /system/core/libmincrypt/
p256.c 93 p256_sddigit borrow = 0; local
96 borrow += *c;
97 borrow -= *a++;
98 *c++ = (p256_digit)borrow;
99 borrow >>= P256_BITSPERDIGIT;
101 borrow += top_c;
102 borrow -= top_a;
103 top_c = (p256_digit)borrow;
104 assert((borrow >> P256_BITSPERDIGIT) == 0);
115 p256_sddigit borrow = 0 local
238 p256_sddigit borrow = 0; local
254 p256_sddigit borrow = 0; local
    [all...]
  /external/v8/src/
bignum.cc 201 Chunk borrow = 0; local
204 DCHECK((borrow == 0) || (borrow == 1));
205 Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow;
207 borrow = difference >> (kChunkSize - 1);
209 while (borrow != 0) {
210 Chunk difference = bigits_[i + offset] - borrow;
212 borrow = difference >> (kChunkSize - 1);
630 Chunk borrow = 0;
638 if (sum > chunk_c + borrow) {
    [all...]
  /ndk/sources/android/support/src/stdio/
strtod.c 1177 Long borrow, y; /* We need signed shifts here. */ local
1214 borrow = 0;
1217 y = (*xa & 0xffff) - (*xb & 0xffff) + borrow;
1218 borrow = (ULong)y >> 16;
1219 Sign_Extend(borrow, y);
1220 z = (*xa++ >> 16) - (*xb++ >> 16) + borrow;
1221 borrow = (ULong)z >> 16;
1222 Sign_Extend(borrow, z);
1227 y = (*xa & 0xffff) + borrow;
1228 borrow = (ULong)y >> 16
2194 Long borrow, y; local
    [all...]
  /system/bt/stack/smp/
p_256_multprecision.c 115 DWORD borrow; local
118 borrow=0;
121 temp = a[i] - borrow;
122 borrow = (temp > a[i]);
124 borrow |= (c[i] > temp);
127 return borrow;
229 DWORD borrow; local
243 borrow = multiprecision_sub(c, a, b, keyLength);
244 if(borrow)
  /external/valgrind/VEX/switchback/
test_emfloat.c 530 static void Sub16Bits(u16 *borrow,u16 *a,u16 b,u16 c);
792 static void Sub16Bits(u16 *borrow,
801 accum-=(u32)*borrow;
802 *borrow=(u32)((accum & 0x00010000) ? 1 : 0); /* New borrow */
1072 u16 borrow; local
1180 borrow = 0;
1182 Sub16Bits(&borrow,
1187 if (borrow)
1196 borrow = 0
    [all...]
  /external/pdfium/third_party/bigint/
BigUnsigned.cc 212 // Handle an incoming borrow
218 borrowIn = borrowOut; // Pass the borrow along
220 // If there is a borrow left over, decrease blocks until
226 /* If there's still a borrow, the result is negative.
511 // Roll-over a borrow as necessary.
687 bool borrow = true; local
688 for (i = 0; borrow; i++) {
689 borrow = (blk[i] == 0);
  /external/llvm/lib/Support/
APInt.cpp 210 /// @returns the borrow out of the subtraction
216 y = 1; // We have to "borrow 1" from next "digit"
218 y = 0; // No need to borrow
263 /// @returns returns the borrow out.
267 bool borrow = false;
269 uint64_t x_tmp = borrow ? x[i] - 1 : x[i];
270 borrow = y[i] > x_tmp || (borrow && x[i] == 0);
273 return borrow;
    [all...]
APFloat.cpp 896 /* Subtract the significand of the RHS with a borrow flag. Returns
897 the borrow flag. */
899 APFloat::subtractSignificand(const APFloat &rhs, integerPart borrow)
908 return APInt::tcSubtract(parts, rhs.significandParts(), borrow,
    [all...]
  /external/boringssl/linux-arm/crypto/bn/
armv4-mont.S 141 mov r1,r4 @ "borrow" r1
157 orr r1,r1,r3 @ ap=borrow?tp:rp
  /external/boringssl/src/crypto/bn/asm/
armv4-mont.pl 224 mov $ap,$tp @ "borrow" $ap
240 orr $ap,$ap,$np @ ap=borrow?tp:rp
  /external/valgrind/coregrind/
m_main.c 3553 Int q, uneg, vneg, diff, borrow; local
    [all...]
  /external/boringssl/linux-arm/crypto/aes/
bsaes-armv7.S 1372 add r8, r6, #.LREVM0SR-.LM0 @ borrow r8
1392 adrl r8, .LREVM0SR @ borrow r8
1418 @ Borrow prologue from _bsaes_encrypt8 to use the opportunity
    [all...]
aesv8-armx.S 102 vmov.i8 q10,#8 @ borrow q10
  /external/valgrind/VEX/priv/
guest_x86_helpers.c 2055 Bool borrow = r_AL < 6; local
    [all...]
host_mips_isel.c 2409 HReg xLo, xHi, yLo, yHi, borrow; local
    [all...]
  /external/llvm/test/MC/AArch64/
arm64-arithmetic-encoding.s 5 ; Add/Subtract with carry/borrow
  /ndk/sources/host-tools/make-3.81/
read.c     [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
gbemu.js     [all...]

Completed in 456 milliseconds