HomeSort by relevance Sort by last modified time
    Searched full:borrow (Results 1 - 25 of 188) sorted by null

1 2 3 4 5 6 7 8

  /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...]
  /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/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum.cc 224 Chunk borrow = 0; local
227 ASSERT((borrow == 0) || (borrow == 1));
228 Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow;
230 borrow = difference >> (kChunkSize - 1);
232 while (borrow != 0) {
233 Chunk difference = bigits_[i + offset] - borrow;
235 borrow = difference >> (kChunkSize - 1);
653 Chunk borrow = 0;
661 if (sum > chunk_c + borrow) {
    [all...]
  /external/chromium_org/v8/src/
bignum.cc 200 Chunk borrow = 0; local
203 ASSERT((borrow == 0) || (borrow == 1));
204 Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow;
206 borrow = difference >> (kChunkSize - 1);
208 while (borrow != 0) {
209 Chunk difference = bigits_[i + offset] - borrow;
211 borrow = difference >> (kChunkSize - 1);
629 Chunk borrow = 0;
637 if (sum > chunk_c + borrow) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 521 unsigned long long borrow = 0; local
523 unsigned long long y = (unsigned long long)*xa++ - *xb++ - borrow;
524 borrow = y >> 32 & (uint32_t)1;
528 unsigned long long y = *xa++ - borrow;
529 borrow = y >> 32 & (uint32_t)1;
533 uint32_t borrow = 0; local
535 uint32_t y = (*xa & 0xffff) - (*xb & 0xffff) - borrow;
536 borrow = (y & 0x10000) >> 16;
537 uint32_t z = (*xa++ >> 16) - (*xb++ >> 16) - borrow;
538 borrow = (z & 0x10000) >> 16
621 unsigned long long borrow, carry, y, ys; local
623 uint32_t borrow, carry, y, ys; local
    [all...]
FilePrintStream.cpp 39 if (m_adoptionMode == Borrow)
FilePrintStream.h 39 Borrow
DataLog.cpp 69 file = new FilePrintStream(stderr, FilePrintStream::Borrow);
  /external/clang/test/Index/
comment-cplus11-specific.cpp 13 namespace borrow { namespace
  /external/iproute2/examples/diffserv/
efcbq 26 "maxburst 21 borrow split 2:0 defmap 0xffff \n";
  /ndk/sources/android/support/src/
stdlib_support.c 38 //FIXME: Although in Android long double is the same as double, can we borrow stdtod?
  /external/llvm/unittests/ADT/
APIntTest.cpp 538 // No out borrow.
546 // With out borrow.
556 // No across word borrow, no out borrow.
564 // 1 across word borrow, no out borrow.
573 // 2 across word borrow, no out borrow.
582 // 3 across word borrow, no out borrow
    [all...]
  /ndk/sources/android/support/src/stdio/
strtod.c 1186 Long borrow, y; /* We need signed shifts here. */ local
1223 borrow = 0;
1226 y = (*xa & 0xffff) - (*xb & 0xffff) + borrow;
1227 borrow = (ULong)y >> 16;
1228 Sign_Extend(borrow, y);
1229 z = (*xa++ >> 16) - (*xb++ >> 16) + borrow;
1230 borrow = (ULong)z >> 16;
1231 Sign_Extend(borrow, z);
1236 y = (*xa & 0xffff) + borrow;
1237 borrow = (ULong)y >> 16
2203 Long borrow, y; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
alpha-mont.pl 228 cmplt $j,$num,$tj #U0 # borrow $tj
261 cmplt $i,$num,$tj # borrow $tj
270 mov 0,$hi0 # clear borrow bit
293 bis $bp,$ap,$ap # ap=borrow?tp:rp
armv4-mont.S 114 mov r1,r4 @ "borrow" r1
130 orr r1,r1,r3 @ ap=borrow?tp:rp
armv4-mont.pl 168 mov $ap,$tp @ "borrow" $ap
184 orr $ap,$ap,$np @ ap=borrow?tp:rp
  /external/openssl/crypto/bn/asm/
alpha-mont.pl 228 cmplt $j,$num,$tj #U0 # borrow $tj
261 cmplt $i,$num,$tj # borrow $tj
270 mov 0,$hi0 # clear borrow bit
293 bis $bp,$ap,$ap # ap=borrow?tp:rp
  /external/llvm/lib/Target/SystemZ/
README.txt 81 need to produce a borrow. (Note that there are no memory forms of
82 ADD LOGICAL WITH CARRY and SUBTRACT LOGICAL WITH BORROW, so the high
  /external/chromium_org/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/iproute2/man/man8/
tc-cbq-details.8 235 it will try to borrow avgidle from siblings that are not
238 to borrow enough avgidle to send a packet, it is throttled and not asked
356 Signifies that this class will not borrow bandwidth from its siblings.
359 Means that this class will not borrow bandwidth to its siblings
tc-cbq.8 145 Classes by default borrow bandwidth from their siblings. A class can be
273 Signifies that this class will not borrow bandwidth from its siblings.
276 Means that this class will not borrow bandwidth to its siblings
  /packages/apps/Exchange/src/com/android/exchange/utility/
CurlLogger.java 27 * not trivial so it's easier to borrow the curl logging code this way.
  /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 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...]

Completed in 5554 milliseconds

1 2 3 4 5 6 7 8