Home
last modified time | relevance | path

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

12

/openbsd/lib/libc/gdtoa/
H A Ddmisc.c120 ULLong borrow, carry, y, ys; local
122 ULong borrow, carry, y, ys; local
145 borrow = 0;
152 borrow = y >> 32 & 1UL;
161 borrow = (y & 0x10000) >> 16;
163 borrow = (z & 0x10000) >> 16;
169 borrow = (y & 0x10000) >> 16;
184 borrow = 0;
193 borrow = y >> 32 & 1UL;
202 borrow = (y & 0x10000) >> 16;
[all …]
H A Dmisc.c563 ULLong borrow, y; local
565 ULong borrow, y; local
599 borrow = 0;
603 borrow = y >> 32 & 1UL;
608 y = *xa++ - borrow;
609 borrow = y >> 32 & 1UL;
616 borrow = (y & 0x10000) >> 16;
623 y = (*xa & 0xffff) - borrow;
625 z = (*xa++ >> 16) - borrow;
631 y = *xa++ - *xb++ - borrow;
[all …]
H A Dstrtodg.c103 ULong borrow = 1, y; local
119 y = *x - borrow;
120 borrow = (y & 0x10000) >> 16;
122 } while(borrow && x < xe);
/openbsd/lib/libcrypto/bn/arch/arm/
H A Dbn_arch.h32 BN_ULONG borrow, r0; in bn_subw() local
39 : [borrow]"=&r"(borrow), [r0]"=r"(r0) in bn_subw()
43 *out_borrow = borrow; in bn_subw()
53 BN_ULONG borrow, r0; in bn_subw_subw() local
62 : [borrow]"=&r"(borrow), [r0]"=&r"(r0) in bn_subw_subw()
66 *out_borrow = borrow; in bn_subw_subw()
/openbsd/lib/libcrypto/bn/
H A Dbn_add.c158 BN_ULONG borrow = 0; in bn_sub_words() local
166 borrow, &borrow, &r[3], &r[2], &r[1], &r[0]); in bn_sub_words()
173 bn_subw_subw(a[0], b[0], borrow, &borrow, &r[0]); in bn_sub_words()
179 return borrow; in bn_sub_words()
195 BN_ULONG borrow = 0; in bn_sub() local
202 borrow = bn_sub_words(r, a, b, min_len); in bn_sub()
211 bn_subw(0 - b[0], borrow, &borrow, &r[0]); in bn_sub()
220 bn_subw(a[0], borrow, &borrow, &r[0]); in bn_sub()
226 return borrow; in bn_sub()
256 BN_ULONG borrow; in BN_usub() local
[all …]
H A Dbn_internal.h244 BN_ULONG borrow, r0; in bn_subw() local
247 borrow = ((r0 | (b & ~a)) & (b | ~a)) >> (BN_BITS2 - 1); in bn_subw()
249 *out_borrow = borrow; in bn_subw()
282 BN_ULONG b2, BN_ULONG b1, BN_ULONG b0, BN_ULONG borrow, BN_ULONG *out_borrow, in bn_qwsubqw() argument
287 bn_subw_subw(a0, b0, borrow, &borrow, &r0); in bn_qwsubqw()
288 bn_subw_subw(a1, b1, borrow, &borrow, &r1); in bn_qwsubqw()
289 bn_subw_subw(a2, b2, borrow, &borrow, &r2); in bn_qwsubqw()
290 bn_subw_subw(a3, b3, borrow, &borrow, &r3); in bn_qwsubqw()
292 *out_borrow = borrow; in bn_qwsubqw()
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20000313-1.c3 unsigned int accu, zero = 0, borrow; in buggy() local
5 borrow = - (accu > zero); in buggy()
7 return borrow; in buggy()
13 unsigned int borrow = buggy (&param); in main() local
17 if (borrow + 1 != 0) in main()
/openbsd/lib/libcrypto/bn/arch/aarch64/
H A Dbn_arch.h303 BN_ULONG borrow, r0; in bn_subw() local
308 : [borrow]"=r"(borrow), [r0]"=r"(r0) in bn_subw()
312 *out_borrow = borrow; in bn_subw()
322 BN_ULONG borrow, r0; in bn_subw_subw() local
329 : [borrow]"=&r"(borrow), [r0]"=&r"(r0) in bn_subw_subw()
333 *out_borrow = borrow; in bn_subw_subw()
341 BN_ULONG b2, BN_ULONG b1, BN_ULONG b0, BN_ULONG borrow, BN_ULONG *out_borrow, in bn_qwsubqw() argument
353 : [borrow]"+r"(borrow), [r3]"=&r"(r3), [r2]"=&r"(r2), in bn_qwsubqw()
359 *out_borrow = borrow; in bn_qwsubqw()
/openbsd/lib/libcrypto/bn/arch/riscv64/
H A Dbn_arch.h71 BN_ULONG borrow, r0; in bn_subw() local
76 : [borrow]"=r"(borrow), [r0]"=&r"(r0) in bn_subw()
79 *out_borrow = borrow; in bn_subw()
/openbsd/lib/libcrypto/bn/arch/amd64/
H A Dbn_arch.h92 BN_ULONG borrow, r0; in bn_subw() local
98 : "=r"(borrow), "=r"(r0) in bn_subw()
102 *out_borrow = borrow; in bn_subw()
/openbsd/gnu/llvm/lldb/bindings/interface/
H A DSBFile.i44 def Create(cls, file, borrow=False, force_io_methods=False):
54 if borrow:
H A DSBDebugger.i194 self.SetOutputFile(SBFile.Create(file, borrow=True))
201 self.SetInputFile(SBFile.Create(file, borrow=True))
208 self.SetErrorFile(SBFile.Create(file, borrow=True))
/openbsd/gnu/gcc/gcc/config/s390/
H A Ds390-modes.def135 if (a - b > a) -> CCL2 state of the borrow bit (CC0 | CC1)
144 A logical subtract instruction sets the borrow bit in case of an overflow.
/openbsd/gnu/gcc/libssp/
H A Dconfigure.ac36 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
/openbsd/gnu/llvm/llvm/lib/Support/
H A DAPInt.cpp1376 int64_t borrow = 0; in KnuthDiv() local
1379 int64_t subres = int64_t(u[j+i]) - borrow - Lo_32(p); in KnuthDiv()
1381 borrow = Hi_32(p) - Hi_32(subres); in KnuthDiv()
1383 << ", borrow = " << borrow << '\n'); in KnuthDiv()
1385 bool isNeg = u[j+n] < borrow; in KnuthDiv()
1386 u[j+n] -= Lo_32(borrow); in KnuthDiv()
/openbsd/gnu/usr.bin/binutils-2.17/gas/doc/
H A Dc-d30v.texi242 Same as flag 7 (carry/borrow flag)
244 Same as flag 7 (carry/borrow flag)
/openbsd/gnu/usr.bin/binutils/gas/doc/
H A Dc-d30v.texi242 Same as flag 7 (carry/borrow flag)
244 Same as flag 7 (carry/borrow flag)
/openbsd/gnu/llvm/llvm/lib/Target/SystemZ/
H A DREADME.txt59 need to produce a borrow. (Note that there are no memory forms of
H A DSystemZInstrVector.td839 // Subtract compute borrow indication.
847 // Subtract with borrow indication.
851 // Subtract with borrow compute borrow indication.
/openbsd/gnu/gcc/libmudflap/
H A Dconfigure.ac34 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
/openbsd/gnu/usr.bin/binutils/opcodes/
H A Ds390-opc.txt598 b989 slbgr RRE_RR "subtract logical with borrow 64" z900 zarch
603 b999 slbr RRE_RR "subtract logical with borrow 32" z900 esa,zarch
619 e30000000089 slbg RXE_RRRD "subtract logical with borrow 64" z900 zarch
625 e30000000099 slb RXE_RRRD "subtract logical with borrow 32" z900 esa,zarch
747 e30000000089 slbg RXY_RRRD "subtract logical with borrow 64" z990 zarch
755 e30000000099 slb RXY_RRRD "subtract logical with borrow 32" z990 zarch
/openbsd/gnu/usr.bin/binutils-2.17/opcodes/
H A Ds390-opc.txt598 b989 slbgr RRE_RR "subtract logical with borrow 64" z900 zarch
603 b999 slbr RRE_RR "subtract logical with borrow 32" z900 esa,zarch
619 e30000000089 slbg RXE_RRRD "subtract logical with borrow 64" z900 zarch
625 e30000000099 slb RXE_RRRD "subtract logical with borrow 32" z900 esa,zarch
746 e30000000089 slbg RXY_RRRD "subtract logical with borrow 64" z990 zarch
754 e30000000099 slb RXY_RRRD "subtract logical with borrow 32" z990 esa,zarch
/openbsd/gnu/gcc/libgomp/
H A Dconfigure.ac105 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
/openbsd/gnu/gcc/gcc/config/m68hc11/
H A Dlarith.asm402 std 6,y ; Save, borrow preserved
/openbsd/gnu/usr.bin/gcc/gcc/config/m68hc11/
H A Dlarith.asm402 std 6,y ; Save, borrow preserved

12