Home
last modified time | relevance | path

Searched refs:borrow (Results 1 – 25 of 32) sorted by relevance

12

/external/tpm2/
DMathFunctions.c102 int borrow = 0; in _math__sub() local
116 borrow = *a-- - *b-- + borrow; in _math__sub()
117 *c-- = (BYTE)borrow; in _math__sub()
118 notZero = notZero || borrow; in _math__sub()
119 borrow >>= 8; in _math__sub()
125 borrow = *a-- + borrow; in _math__sub()
126 *c-- = (BYTE)borrow; in _math__sub()
127 notZero = notZero || borrow; in _math__sub()
128 borrow >>= 8; in _math__sub()
135 borrow = 0 - *b-- + borrow; in _math__sub()
[all …]
Dpart4.txt25642 1 if (a > b) so no borrow
25643 0 if (a = b) so no borrow and b == a
25644 -1 if (a < b) so there was a borrow
25661 58 int borrow = 0;
25676 73 borrow = *a-- - *b-- + borrow;
25677 74 *c-- = (BYTE)borrow;
25678 75 notZero = notZero || borrow;
25679 76 borrow >>= 8;
25685 82 borrow = *a-- + borrow;
25686 83 *c-- = (BYTE)borrow;
[all …]
/external/v8/src/
Dbignum.cc201 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/libweave/third_party/chromium/base/third_party/dmg_fp/
Ddtoa.cc1079 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;
[all …]
/external/valgrind/VEX/switchback/
Dtest_emfloat.c530 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/
Dcomment-cplus11-specific.cpp13 namespace borrow { namespace
/external/vulkan-validation-layers/libs/glm/detail/
Dfunc_integer.hpp74 genUType & borrow);
/external/pdfium/third_party/bigint/
DBigUnsigned.cc687 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/
DAPInt.cpp267 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()
1589 int64_t borrow = 0; in KnuthDiv() local
1592 int64_t subres = int64_t(u[j+i]) - borrow - (unsigned)p; in KnuthDiv()
1594 borrow = (p >> 32) - (subres >> 32); in KnuthDiv()
1596 << ", borrow = " << borrow << '\n'); in KnuthDiv()
1598 bool isNeg = u[j+n] < borrow; in KnuthDiv()
1599 u[j+n] -= (unsigned)borrow; in KnuthDiv()
DAPFloat.cpp920 APFloat::subtractSignificand(const APFloat &rhs, integerPart borrow) in subtractSignificand() argument
929 return APInt::tcSubtract(parts, rhs.significandParts(), borrow, in subtractSignificand()
/external/iproute2/doc/actions/
Dactions-general155 # 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/llvm/lib/Target/SystemZ/
DREADME.txt75 need to produce a borrow. (Note that there are no memory forms of
DSystemZInstrVector.td617 // Subtract compute borrow indication.
624 // Subtract with borrow indication.
627 // Subtract with borrow compute borrow indication.
/external/boringssl/linux-arm/crypto/bn/
Darmv4-mont.S158 orr r1,r1,r3 @ ap=borrow?tp:rp
/external/valgrind/coregrind/
Dm_main.c3668 Int q, uneg, vneg, diff, borrow; in divls() local
3673 borrow = (u0 != 0); in divls()
3674 u1 = -u1 - borrow;} in divls()
/external/valgrind/docs/internals/
Ds390-opcodes.csv504 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/
Dguest_x86_helpers.c2129 Bool borrow = r_AL < 6; in x86g_calculate_daa_das_aaa_aas() local
2132 if (borrow) r_C = 1; in x86g_calculate_daa_das_aaa_aas()
Dhost_mips_isel.c2409 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/
Darm64-arithmetic.txt4 # Add/Subtract with carry/borrow
/external/boringssl/linux-arm/crypto/aes/
Dbsaes-armv7.S1372 add r8, r6, #.LREVM0SR-.LM0 @ borrow r8
1392 adrl r8, .LREVM0SR @ borrow r8
Daesv8-armx32.S103 vmov.i8 q10,#8 @ borrow q10
/external/llvm/test/MC/AArch64/
Darm64-arithmetic-encoding.s5 ; Add/Subtract with carry/borrow
/external/antlr/antlr-3.4/runtime/C/
DChangeLog173 we borrow its string factroy adn use it in our EOF token in case
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/
DTransliterator_Kanji_English.txt227 借>'[borrow]';
5154 貰>'[borrow]';
/external/avahi/specs/
Ddraft-cheshire-dnsext-dns-sd-02.txt1005 However, it is common to "borrow" an existing protocol and repurpose

12