Home
last modified time | relevance | path

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

12

/freebsd/contrib/gdtoa/
H A Ddmisc.c111 ULLong borrow, carry, y, ys; local
113 ULong borrow, carry, y, ys; local
136 borrow = 0;
143 borrow = y >> 32 & 1UL;
152 borrow = (y & 0x10000) >> 16;
154 borrow = (z & 0x10000) >> 16;
160 borrow = (y & 0x10000) >> 16;
175 borrow = 0;
184 borrow = y >> 32 & 1UL;
193 borrow = (y & 0x10000) >> 16;
[all …]
H A Dmisc.c533 ULLong borrow, y; local
535 ULong borrow, y; local
565 borrow = 0;
569 borrow = y >> 32 & 1UL;
574 y = *xa++ - borrow;
575 borrow = y >> 32 & 1UL;
582 borrow = (y & 0x10000) >> 16;
589 y = (*xa & 0xffff) - borrow;
591 z = (*xa++ >> 16) - borrow;
597 y = *xa++ - *xb++ - borrow;
[all …]
H A Dstrtodg.c101 ULong borrow = 1, y; local
117 y = *x - borrow;
118 borrow = (y & 0x10000) >> 16;
120 } while(borrow && x < xe);
/freebsd/sys/contrib/openzfs/module/zfs/
H A Daggsum.c168 int64_t borrow; in aggsum_add() local
187 borrow = (delta < 0 ? -delta : delta); in aggsum_add()
188 borrow <<= aggsum_borrow_shift + as->as_bucketshift; in aggsum_add()
190 if (borrow >= asb->asc_borrowed) in aggsum_add()
191 borrow -= asb->asc_borrowed; in aggsum_add()
193 borrow = (borrow - (int64_t)asb->asc_borrowed) / 4; in aggsum_add()
197 asb->asc_borrowed += borrow; in aggsum_add()
200 as->as_lower_bound + delta - borrow); in aggsum_add()
202 as->as_upper_bound + delta + borrow); in aggsum_add()
/freebsd/sys/contrib/libsodium/test/default/
H A Dcore6.c24 unsigned int borrow = 0; in print() local
29 printf(",0x%02x", 255 & (xi - yi - borrow)); in print()
30 borrow = (xi < yi + borrow); in print()
/freebsd/share/examples/pf/
H A Dfaq-example324 queue std_ext bandwidth 500Kb cbq(default borrow)
26 queue www_ext_http bandwidth 50% priority 3 cbq(red borrow)
27 queue www_ext_misc bandwidth 50% priority 1 cbq(borrow)
28 queue boss_ext bandwidth 500Kb priority 3 cbq(borrow)
49 queue std_int bandwidth 250Kb cbq(default borrow)
50 queue it_int bandwidth 500Kb cbq(borrow)
51 queue boss_int bandwidth 250Kb priority 3 cbq(borrow)
52 queue www_int bandwidth 99Mb cbq(red borrow)
69 queue internal_dmz bandwidth 99Mb cbq(borrow)
71 queue net_dmz_http bandwidth 50% priority 3 cbq(red borrow)
[all …]
H A Dqueue212 queue http bandwidth 60% priority 2 cbq(borrow red) { employees, developers }
13 queue developers bandwidth 75% cbq(borrow)
15 queue mail bandwidth 10% priority 0 cbq(borrow ecn)
16 queue ssh bandwidth 20% cbq(borrow) { ssh_interactive, ssh_bulk }
H A Dqueue19 queue http_vhosts bandwidth 40% cbq(borrow red)
12 queue ssh bandwidth 100Kb priority 7 cbq(borrow)
H A Dfaq-example243 # borrow.
48 queue bob_in bandwidth 80Kb cbq(borrow)
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBDebuggerExtensions.i11 self.SetOutputFile(SBFile.Create(file, borrow=True))
18 self.SetInputFile(SBFile.Create(file, borrow=True))
25 self.SetErrorFile(SBFile.Create(file, borrow=True))
H A DSBFileExtensions.i15 def Create(cls, file, borrow=False, force_io_methods=False):
25 if borrow:
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_mod.c141 BN_ULONG borrow, carry, ta, tb, mask, *rp; in bn_mod_sub_fixed_top() local
151 for (i = 0, ai = 0, bi = 0, borrow = 0; i < mtop;) { in bn_mod_sub_fixed_top()
157 rp[i] = ta - tb - borrow; in bn_mod_sub_fixed_top()
159 borrow = (ta < tb); in bn_mod_sub_fixed_top()
166 for (i = 0, mask = 0 - borrow, carry = 0; i < mtop; i++) { in bn_mod_sub_fixed_top()
172 borrow -= carry; in bn_mod_sub_fixed_top()
173 for (i = 0, mask = 0 - borrow, carry = 0; i < mtop; i++) { in bn_mod_sub_fixed_top()
H A Dbn_add.c128 BN_ULONG t1, t2, borrow, *rp; in BN_usub() local
150 borrow = bn_sub_words(rp, ap, bp, min); in BN_usub()
157 t2 = (t1 - borrow) & BN_MASK2; in BN_usub()
159 borrow &= (t1 == 0); in BN_usub()
/freebsd/sys/net/altq/
H A Daltq_cbq.c273 struct rm_class *borrow, *parent; in cbq_add_queue() local
306 borrow = parent; in cbq_add_queue()
308 borrow = NULL; in cbq_add_queue()
319 if ((borrow != parent) && (borrow != NULL)) { in cbq_add_queue()
360 rmc_delay_action, a->qlimit, parent, borrow, in cbq_add_queue()
H A Daltq_rmclass.c230 cl->borrow_ = borrow; in rmc_newclass()
767 struct rm_class *borrow = cl->borrow_; in rmc_queue_packet() local
769 while (borrow != NULL && in rmc_queue_packet()
770 borrow->depth_ < ifd->cutoff_) { in rmc_queue_packet()
771 if (TV_LT(&borrow->undertime_, &now)) { in rmc_queue_packet()
772 ifd->cutoff_ = borrow->depth_; in rmc_queue_packet()
776 borrow = borrow->borrow_; in rmc_queue_packet()
1473 rmc_delay_action(struct rm_class *cl, struct rm_class *borrow) in rmc_delay_action() argument
1486 if (borrow != NULL) in rmc_delay_action()
1487 extradelay = borrow->offtime_; in rmc_delay_action()
[all …]
/freebsd/crypto/openssl/crypto/ec/curve448/
H A Dscalar.c55 c448_word_t borrow; in sc_subx() local
62 borrow = (c448_word_t)chain + extra; /* = 0 or -1 */ in sc_subx()
66 chain = (chain + out->limb[i]) + (p->limb[i] & borrow); in sc_subx()
/freebsd/crypto/openssl/crypto/bn/asm/
H A Dbn-c64xplus.asm163 [B0] ZERO A2 ; borrow flag
176 || AND 1,A1,A2 ; pass on borrow flag
179 AND 1,A1,RET ; return borrow flag
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DREADME.txt59 need to produce a borrow. (Note that there are no memory forms of
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp1384 int64_t borrow = 0; in KnuthDiv() local
1387 int64_t subres = int64_t(u[j+i]) - borrow - Lo_32(p); in KnuthDiv()
1389 borrow = Hi_32(p) - Hi_32(subres); in KnuthDiv()
1391 << ", borrow = " << borrow << '\n'); in KnuthDiv()
1393 bool isNeg = u[j+n] < borrow; in KnuthDiv()
1394 u[j+n] -= Lo_32(borrow); in KnuthDiv()
/freebsd/sys/dev/netmap/
H A Dif_ptnet.c1937 bool borrow = false; in ptnet_poll() local
1950 if (borrow) { in ptnet_poll()
1980 borrow = true; in ptnet_poll()
/freebsd/lib/libc/softfloat/bits32/
H A Dsoftfloat-macros326 2^64, so any borrow out (carry out) is lost. The result is broken into two
345 is modulo 2^96, so any borrow out (carry out) is lost. The result is broken
/freebsd/sys/crypto/openssl/arm/
H A Decp_nistz256-armv4.S2519 @ using value of borrow as a whole or extracting single bit.
2746 sbc r3,r3,r3 @ broadcast borrow bit
2755 @ broadcasting borrow bit to a register, r3, and using it as
3269 sbc r10,r10,#0 @ broadcast borrow bit
3274 @ broadcasting borrow bit to a register, r10, and using it as
3515 sbc r2,r2,r2 @ broadcast borrow bit
3559 sbc r2,r2,r2 @ broadcast borrow bit
3613 @ using value of borrow as a whole or extracting single bit.
H A Dpoly1305-armv4.S297 tst r7,#4 @ did it carry/borrow?
1119 tst r7,#4 @ did it carry/borrow?
/freebsd/lib/libc/softfloat/bits64/
H A Dsoftfloat-macros401 2^128, so any borrow out (carry out) is lost. The result is broken into two
420 Subtraction is modulo 2^192, so any borrow out (carry out) is lost. The
/freebsd/contrib/one-true-awk/
H A DChangeLog201 borrow code from the NetBSD version of nawk to fix the years-old

12