/external/v8/src/ |
D | bignum.cc | 201 Chunk borrow = 0; in SubtractBignum() local 204 DCHECK((borrow == 0) || (borrow == 1)); in SubtractBignum() 205 Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow; in SubtractBignum() 207 borrow = difference >> (kChunkSize - 1); in SubtractBignum() 209 while (borrow != 0) { in SubtractBignum() 210 Chunk difference = bigits_[i + offset] - borrow; in SubtractBignum() 212 borrow = difference >> (kChunkSize - 1); in SubtractBignum() 630 Chunk borrow = 0; in PlusCompare() local 638 if (sum > chunk_c + borrow) { in PlusCompare() 641 borrow = chunk_c + borrow - sum; in PlusCompare() [all …]
|
/external/valgrind/VEX/switchback/ |
D | test_emfloat.c | 530 static void Sub16Bits(u16 *borrow,u16 *a,u16 b,u16 c); 792 static void Sub16Bits(u16 *borrow, in Sub16Bits() argument 801 accum-=(u32)*borrow; in Sub16Bits() 802 *borrow=(u32)((accum & 0x00010000) ? 1 : 0); /* New borrow */ in Sub16Bits() 1072 u16 borrow; in AddSubInternalFPF() local 1180 borrow = 0; in AddSubInternalFPF() 1182 Sub16Bits(&borrow, in AddSubInternalFPF() 1187 if (borrow) in AddSubInternalFPF() 1196 borrow = 0; in AddSubInternalFPF() 1199 Sub16Bits(&borrow, in AddSubInternalFPF()
|
/external/clang/test/Index/ |
D | comment-cplus11-specific.cpp | 13 namespace borrow { namespace
|
/external/pdfium/third_party/bigint/ |
D | BigUnsigned.cc | 687 bool borrow = true; in operator --() local 688 for (i = 0; borrow; i++) { in operator --() 689 borrow = (blk[i] == 0); in operator --()
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 267 bool borrow = false; in sub() local 269 uint64_t x_tmp = borrow ? x[i] - 1 : x[i]; in sub() 270 borrow = y[i] > x_tmp || (borrow && x[i] == 0); in sub() 273 return borrow; in sub() 1593 bool borrow = subtrahend > u_tmp; in KnuthDiv() local 1596 << ", borrow = " << borrow << '\n'); in KnuthDiv() 1602 while (borrow && k <= m+n) { // deal with borrow to the left in KnuthDiv() 1603 borrow = u[k] == 0; in KnuthDiv() 1607 isNeg |= borrow; in KnuthDiv()
|
D | APFloat.cpp | 899 APFloat::subtractSignificand(const APFloat &rhs, integerPart borrow) in subtractSignificand() argument 908 return APInt::tcSubtract(parts, rhs.significandParts(), borrow, in subtractSignificand()
|
/external/iproute2/doc/actions/ |
D | actions-general | 155 # next attempt to borrow b/width from a meter 161 # and then attempt to borrow from a meter used by all devices in the
|
/external/boringssl/linux-arm/crypto/bn/ |
D | armv4-mont.S | 157 orr r1,r1,r3 @ ap=borrow?tp:rp
|
/external/llvm/lib/Target/SystemZ/ |
D | README.txt | 81 need to produce a borrow. (Note that there are no memory forms of
|
/external/valgrind/coregrind/ |
D | m_main.c | 3553 Int q, uneg, vneg, diff, borrow; in divls() local 3558 borrow = (u0 != 0); in divls() 3559 u1 = -u1 - borrow;} in divls()
|
/external/valgrind/docs/internals/ |
D | s390-opcodes.csv | 504 slbgr,"subtract logical with borrow 64",implemented, 509 slbr,"subtract logical with borrow 32",implemented, 525 slbg,"subtract logical with borrow 64",implemented, 531 slb,"subtract logical with borrow 32",implemented,
|
/external/valgrind/VEX/priv/ |
D | guest_x86_helpers.c | 2055 Bool borrow = r_AL < 6; in x86g_calculate_daa_das_aaa_aas() local 2058 if (borrow) r_C = 1; in x86g_calculate_daa_das_aaa_aas()
|
D | host_mips_isel.c | 2409 HReg xLo, xHi, yLo, yHi, borrow; in iselInt64Expr_wrk() local 2416 borrow = newVRegI(env); in iselInt64Expr_wrk() 2424 addInstr(env, MIPSInstr_Cmp(False, size32, borrow, xLo, yLo, cc)); in iselInt64Expr_wrk() 2427 MIPSRH_Reg(borrow))); in iselInt64Expr_wrk()
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | arm64-arithmetic.txt | 4 # Add/Subtract with carry/borrow
|
/external/boringssl/linux-arm/crypto/aes/ |
D | bsaes-armv7.S | 1372 add r8, r6, #.LREVM0SR-.LM0 @ borrow r8 1392 adrl r8, .LREVM0SR @ borrow r8
|
D | aesv8-armx.S | 102 vmov.i8 q10,#8 @ borrow q10
|
/external/llvm/test/MC/AArch64/ |
D | arm64-arithmetic-encoding.s | 5 ; Add/Subtract with carry/borrow
|
/external/antlr/antlr-3.4/runtime/C/ |
D | ChangeLog | 173 we borrow its string factroy adn use it in our EOF token in case
|
/external/icu/icu4j/main/shared/data/ |
D | Transliterator_Han_Latin_Definition.txt | 1673 挪借 < to\-borrow\-money\-for\-a\-short\-time; 7564 摘借 < to\-borrow\-money; 17396 貰 < borrow; 26216 挪借 > to\-borrow\-money\-for\-a\-short\-time; 27863 摘借 > to\-borrow\-money; 49037 貰 > borrow; 49230 借 > borrow; 49967 贳 > borrow;
|
/external/llvm/lib/Target/ARM/ |
D | ARMInstrThumb2.td | 2064 // assume opposite meanings of the carry flag (i.e., carry == !borrow).
|
D | ARMInstrInfo.td | 3442 // assume opposite meanings of the carry flag (i.e., carry == !borrow).
|
/external/jpeg/ |
D | libjpeg.doc | 1746 scan sequences, you may wish to borrow the scan script reading code found
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-GB/ |
D | en-GB_lexpos.utf | 3848 N^V "borrow" :G2P
|