/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 | 223 Chunk borrow = 0; local 226 ASSERT((borrow == 0) || (borrow == 1)); 227 Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow; 229 borrow = difference >> (kChunkSize - 1); 231 while (borrow != 0) { 232 Chunk difference = bigits_[i + offset] - borrow; 234 borrow = difference >> (kChunkSize - 1); 652 Chunk borrow = 0; 660 if (sum > chunk_c + borrow) { [all...] |
/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/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";
|
/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...] |
/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/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
|
/external/openfst/src/include/fst/ |
mapped-file.h | 71 static MappedFile* Borrow(void *data);
|
/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
|
armv4-mont.S | 114 mov r1,r4 @ "borrow" r1 130 orr r1,r1,r3 @ ap=borrow?tp:rp
|
/external/v8/test/es5conform/ |
harness-adapt.js | 49 // Borrow sth's registerTest method.
|
/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/chromium_org/base/third_party/dmg_fp/ |
dtoa.cc | 1076 ULLong borrow, y; variable 1078 ULong borrow, y; variable 1108 borrow = 0; 1111 y = (ULLong)*xa++ - *xb++ - borrow; 1112 borrow = y >> 32 & (ULong)1; 1117 y = *xa++ - borrow; 1118 borrow = y >> 32 & (ULong)1; 1124 y = (*xa & 0xffff) - (*xb & 0xffff) - borrow; 1125 borrow = (y & 0x10000) >> 16; 1126 z = (*xa++ >> 16) - (*xb++ >> 16) - borrow; 2122 ULLong borrow, carry, y, ys; variable 2124 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
|
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
lolcode.php | 63 'HOW DOES I', 'IF U SAY SO', 'FOUND YR', 'BORROW', 'OWN', 'ALONG',
|
/external/openfst/src/lib/ |
mapped-file.cc | 53 MappedFile* MappedFile::Borrow(void *data) {
|
/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/Target/SystemZ/ |
README.txt | 104 need to produce a borrow. (Note that there are no memory forms of 105 ADD LOGICAL WITH CARRY and SUBTRACT LOGICAL WITH BORROW, so the high
|