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

  /external/v8/src/
bignum.cc 222 Chunk borrow = 0; local
225 ASSERT((borrow == 0) || (borrow == 1));
226 Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow;
228 borrow = difference >> (kChunkSize - 1);
230 while (borrow != 0) {
231 Chunk difference = bigits_[i + offset] - borrow;
233 borrow = difference >> (kChunkSize - 1);
651 Chunk borrow = 0;
659 if (sum > chunk_c + borrow) {
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
dtoa.cpp 583 unsigned long long borrow = 0; local
585 unsigned long long y = (unsigned long long)*xa++ - *xb++ - borrow;
586 borrow = y >> 32 & (uint32_t)1;
590 unsigned long long y = *xa++ - borrow;
591 borrow = y >> 32 & (uint32_t)1;
595 uint32_t borrow = 0; local
597 uint32_t y = (*xa & 0xffff) - (*xb & 0xffff) - borrow;
598 borrow = (y & 0x10000) >> 16;
599 uint32_t z = (*xa++ >> 16) - (*xb++ >> 16) - borrow;
600 borrow = (z & 0x10000) >> 16
1194 unsigned long long borrow, carry, y, ys; local
1196 uint32_t borrow, carry, y, ys; local
    [all...]
  /bionic/libc/stdlib/
strtod.c 933 Long borrow, y; /* We need signed shifts here. */ local
970 borrow = 0;
973 y = (*xa & 0xffff) - (*xb & 0xffff) + borrow;
974 borrow = (ULong)y >> 16;
975 Sign_Extend(borrow, y);
976 z = (*xa++ >> 16) - (*xb++ >> 16) + borrow;
977 borrow = (ULong)z >> 16;
978 Sign_Extend(borrow, z);
983 y = (*xa & 0xffff) + borrow;
984 borrow = (ULong)y >> 16
1918 Long borrow, y; local
    [all...]
  /external/openssl/crypto/bn/asm/
mips-mont.s 229 li $11,0 # clear borrow bit
253 or $5,$5,$6 # ap=borrow?tp:rp
armv4-mont.pl 168 mov $ap,$tp @ "borrow" $ap
184 orr $ap,$ap,$np @ ap=borrow?tp:rp
armv4-mont.s 114 mov r1,r4 @ "borrow" r1
130 orr r1,r1,r3 @ ap=borrow?tp:rp
ppc-mont.pl 303 or $ap,$ap,$np ; ap=borrow?tp:rp
parisc-mont.pl 502 sub %r0,%r0,%r0 ; clear borrow
848 sub %r0,%r0,%r0 ; clear borrow
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 1070 ULLong borrow, y; variable
1072 ULong borrow, y; variable
1102 borrow = 0;
1105 y = (ULLong)*xa++ - *xb++ - borrow;
1106 borrow = y >> 32 & (ULong)1;
1111 y = *xa++ - borrow;
1112 borrow = y >> 32 & (ULong)1;
1118 y = (*xa & 0xffff) - (*xb & 0xffff) - borrow;
1119 borrow = (y & 0x10000) >> 16;
1120 z = (*xa++ >> 16) - (*xb++ >> 16) - borrow;
2116 ULLong borrow, carry, y, ys; variable
2118 ULong borrow, carry, y, ys; variable
    [all...]
  /external/valgrind/main/VEX/switchback/
test_emfloat.c 532 static void Sub16Bits(u16 *borrow,u16 *a,u16 b,u16 c);
794 static void Sub16Bits(u16 *borrow,
803 accum-=(u32)*borrow;
804 *borrow=(u32)((accum & 0x00010000) ? 1 : 0); /* New borrow */
1074 u16 borrow; local
1182 borrow = 0;
1184 Sub16Bits(&borrow,
1189 if (borrow)
1198 borrow = 0
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 209 /// @returns the borrow out of the subtraction
215 y = 1; // We have to "borrow 1" from next "digit"
217 y = 0; // No need to borrow
262 /// @returns returns the borrow out.
266 bool borrow = false;
268 uint64_t x_tmp = borrow ? x[i] - 1 : x[i];
269 borrow = y[i] > x_tmp || (borrow && x[i] == 0);
272 return borrow;
    [all...]
APFloat.cpp 853 /* Subtract the significand of the RHS with a borrow flag. Returns
854 the borrow flag. */
856 APFloat::subtractSignificand(const APFloat &rhs, integerPart borrow)
865 return APInt::tcSubtract(parts, rhs.significandParts(), borrow,
    [all...]
  /external/valgrind/main/coregrind/
m_main.c 3028 Int q, uneg, vneg, diff, borrow; local
    [all...]
  /external/valgrind/main/VEX/priv/
guest_x86_helpers.c 2041 Bool borrow = r_AL < 6; local
    [all...]
  /ndk/sources/host-tools/make-3.81/
read.c     [all...]

Completed in 1351 milliseconds