/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...] |
/external/tpm2/ |
MathFunctions.c | 88 // 1 if (a > b) so no borrow 89 // 0 if (a = b) so no borrow and b == a 90 // -1 if (a < b) so there was a borrow 102 int borrow = 0; local 116 borrow = *a-- - *b-- + borrow; 117 *c-- = (BYTE)borrow; 118 notZero = notZero || borrow; 119 borrow >>= 8; 125 borrow = *a-- + borrow 348 int borrow = 0; local [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/vulkan-validation-layers/libs/glm/detail/ |
func_integer.inl | 107 uint & Borrow 112 Borrow = x >= y ? static_cast<uint32>(0) : static_cast<uint32>(1); 124 uvec2 & Borrow 128 usubBorrow(x[0], y[0], Borrow[0]), 129 usubBorrow(x[1], y[1], Borrow[1])); 137 uvec3 & Borrow 141 usubBorrow(x[0], y[0], Borrow[0]), 142 usubBorrow(x[1], y[1], Borrow[1]), 143 usubBorrow(x[2], y[2], Borrow[2])); 151 uvec4 & Borrow [all...] |
func_integer.hpp | 64 /// otherwise. The value borrow is set to 0 if x >= y, or to 1 otherwise. 74 genUType & borrow);
|
/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...] |
/external/autotest/client/tests/tracing_microbenchmark/src/ |
getuid_microbench.c | 15 /* borrow a second */
|
/external/clang/test/Index/ |
comment-cplus11-specific.cpp | 13 namespace borrow { namespace
|
/external/boringssl/src/crypto/modes/asm/ |
aesni-gcm-x86_64.pl | 71 vmovdqu 0x20($const),$T2 # borrow $T2, .Lone_msb 97 vmovups 0x10-0x80($key),$T2 # borrow $T2 for $rndkey 138 vmovdqu 0x30-0x20($Xip),$Z1 # borrow $Z1 for $Hkey^3 156 vmovdqu 0x40-0x20($Xip),$T1 # borrow $T1 for $Hkey^4 178 vmovdqu 0x60-0x20($Xip),$T2 # borrow $T2 for $Hkey^5 242 vmovups 0x80-0x80($key),$T1 # borrow $T1 for $rndkey 297 vmovdqu ($const),$Ii # borrow $Ii for .Lbswap_mask 299 vmovdqu 0x30($const),$Z1 # borrow $Z1, .Ltwo_lsb 337 vmovdqu 0x20($const),$T2 # borrow $T2, .Lone_msb 423 lea -0x80($key),$in0 # borrow $in [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/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?
|
/ndk/sources/android/support/src/stdio/ |
strtod.c | 1176 Long borrow, y; /* We need signed shifts here. */ local 1213 borrow = 0; 1216 y = (*xa & 0xffff) - (*xb & 0xffff) + borrow; 1217 borrow = (ULong)y >> 16; 1218 Sign_Extend(borrow, y); 1219 z = (*xa++ >> 16) - (*xb++ >> 16) + borrow; 1220 borrow = (ULong)z >> 16; 1221 Sign_Extend(borrow, z); 1226 y = (*xa & 0xffff) + borrow; 1227 borrow = (ULong)y >> 16 2193 Long borrow, y; local [all...] |
/external/llvm/lib/Target/SystemZ/ |
README.txt | 75 need to produce a borrow. (Note that there are no memory forms of 76 ADD LOGICAL WITH CARRY and SUBTRACT LOGICAL WITH BORROW, so the high
|
/external/libweave/third_party/chromium/base/third_party/dmg_fp/ |
dtoa.cc | 1079 ULLong borrow, y; variable 1081 ULong borrow, y; variable 1111 borrow = 0; 1114 y = (ULLong)*xa++ - *xb++ - borrow; 1115 borrow = y >> 32 & (ULong)1; 1120 y = *xa++ - borrow; 1121 borrow = y >> 32 & (ULong)1; 1127 y = (*xa & 0xffff) - (*xb & 0xffff) - borrow; 1128 borrow = (y & 0x10000) >> 16; 1129 z = (*xa++ >> 16) - (*xb++ >> 16) - borrow; 2131 ULLong borrow, carry, y, ys; variable 2133 ULong borrow, carry, y, ys; variable [all...] |
/external/llvm/unittests/ADT/ |
APIntTest.cpp | 475 // Tests some rare "borrow" cases in D4 step 814 // No out borrow. 822 // With out borrow. 832 // No across word borrow, no out borrow. 840 // 1 across word borrow, no out borrow. 849 // 2 across word borrow, no out borrow. 858 // 3 across word borrow, no out borrow [all...] |
/external/boringssl/src/crypto/bn/ |
rsaz_exp.c | 85 *R2 = table_s; /* borrow */ 242 rsaz_1024_gather5_avx2(a_inv,table_s,wvalue); /* borrow a_inv */ 251 rsaz_1024_gather5_avx2(a_inv,table_s,wvalue); /* borrow a_inv */
|
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/ |
biginteger.h | 194 Type borrow = 0; local 196 Type d = a->digits_[i] - borrow; 199 borrow = (d > a->digits_[i]) ? 1 : 0;
|
/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
|
/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...] |
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
FolderDisplayer.java | 149 // What we can take from others is the minimum of the width we need to borrow 150 // and the width we are allowed to borrow.
|