Searched defs:borrow (Results 1 - 9 of 9) sorted by relevance

/external/clang/test/Index/
H A Dcomment-cplus11-specific.cpp13 namespace borrow { namespace
/external/pdfium/third_party/bigint/
H A DBigUnsigned.cc212 // 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/tpm2/
H A DMathFunctions.c88 // 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 Dbignum.cc201 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/valgrind/VEX/priv/
H A Dguest_x86_helpers.c2129 Bool borrow = r_AL < 6; local
2132 if (borrow) r_C = 1;
H A Dhost_mips_isel.c2409 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/valgrind/VEX/switchback/
H A Dtest_emfloat.c530 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/valgrind/coregrind/
H A Dm_main.c3668 Int q, uneg, vneg, diff, borrow; local
3673 borrow = (u0 != 0);
3674 u1 = -u1 - borrow;}
/external/libweave/third_party/chromium/base/third_party/dmg_fp/
H A 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;
2131 ULLong borrow, carry, y, ys; variable
2133 ULong borrow, carry, y, ys; variable
[all...]

Completed in 1694 milliseconds