/external/clang/test/Index/ |
H A D | comment-cplus11-specific.cpp | 13 namespace borrow { namespace
|
/external/tpm2/ |
H A D | 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 348 int borrow = 0; local [all...] |
/external/v8/src/ |
H A D | 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); 623 Chunk borrow = 0; 631 if (sum > chunk_c + borrow) { [all...] |
/external/vulkan-validation-layers/libs/glm/detail/ |
H A D | func_integer.hpp | 64 /// otherwise. The value borrow is set to 0 if x >= y, or to 1 otherwise. 74 genUType & borrow);
|
/external/libweave/third_party/chromium/base/third_party/dmg_fp/ |
H A D | 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/valgrind/VEX/switchback/ |
H A D | test_emfloat.c | 530 static void Sub16Bits(u16 *borrow,u16 *a,u16 b,u16 c); 792 static void Sub16Bits(u16 *borrow, argument 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 [all...] |
/external/pdfium/third_party/bigint/ |
H A D | 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/ |
H A D | 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; 1588 // the true value, and a "borrow" t [all...] |
H A D | APFloat.cpp | 917 /* Subtract the significand of the RHS with a borrow flag. Returns 918 the borrow flag. */ 920 APFloat::subtractSignificand(const APFloat &rhs, integerPart borrow) 929 return APInt::tcSubtract(parts, rhs.significandParts(), borrow, 1494 /* The code above is intended to ensure that no borrow is
|
/external/boringssl/src/crypto/bn/asm/ |
H A D | armv8-mont.pl | 225 subs $j,$num,#8 // j=num-1 and clear borrow 236 sbcs $ovf,$ovf,xzr // did it borrow? 246 csel $nj,$tj,$aj,lo // did it borrow? 951 sbcs xzr,$topmost,xzr // did it borrow? 1010 sbcs $carry,$carry,xzr // did it borrow? 1423 sbcs xzr,$topmost,xzr // did it borrow? 1472 sbcs xzr,$carry,xzr // did it borrow?
|
H A D | armv4-mont.pl | 224 mov $ap,$tp @ "borrow" $ap 240 orr $ap,$ap,$np @ ap=borrow?tp:rp
|
/external/boringssl/linux-arm/crypto/bn/ |
H A D | armv4-mont.S | 142 mov r1,r4 @ "borrow" r1 158 orr r1,r1,r3 @ ap=borrow?tp:rp
|
/external/valgrind/coregrind/ |
H A D | m_main.c | 3668 Int q, uneg, vneg, diff, borrow; local 3673 borrow = (u0 != 0); 3674 u1 = -u1 - borrow;}
|
/external/boringssl/linux-arm/crypto/aes/ |
H A D | bsaes-armv7.S | 1372 add r8, r6, #.LREVM0SR-.LM0 @ borrow r8 1392 adrl r8, .LREVM0SR @ borrow r8
|
H A D | aesv8-armx32.S | 103 vmov.i8 q10,#8 @ borrow q10
|
/external/valgrind/VEX/priv/ |
H A D | guest_x86_helpers.c | 2129 Bool borrow = r_AL < 6; local 2132 if (borrow) r_C = 1;
|
H A D | host_mips_isel.c | 2409 HReg xLo, xHi, yLo, yHi, borrow; local 2416 borrow = newVRegI(env); 2423 /* Check if borrow is nedded. */ 2424 addInstr(env, MIPSInstr_Cmp(False, size32, borrow, xLo, yLo, cc)); 2427 MIPSRH_Reg(borrow)));
|
/external/llvm/test/MC/AArch64/ |
H A D | arm64-arithmetic-encoding.s | 5 ; Add/Subtract with carry/borrow
|
/external/boringssl/src/crypto/aes/asm/ |
H A D | bsaes-armv7.pl | 1429 add $ctr, $const, #.LREVM0SR-.LM0 @ borrow $ctr 1449 adrl $ctr, .LREVM0SR @ borrow $ctr
|