/freebsd/contrib/gdtoa/ |
H A D | dmisc.c | 111 ULLong borrow, carry, y, ys; local 113 ULong borrow, carry, y, ys; local 136 borrow = 0; 142 y = *bx - (ys & 0xffffffffUL) - borrow; 143 borrow = y >> 32 & 1UL; 151 y = (*bx & 0xffff) - (ys & 0xffff) - borrow; 152 borrow = (y & 0x10000) >> 16; 153 z = (*bx >> 16) - (zs & 0xffff) - borrow; 154 borrow = (z & 0x10000) >> 16; 159 y = *bx - (ys & 0xffff) - borrow; [all …]
|
H A D | misc.c | 533 ULLong borrow, y; local 535 ULong borrow, y; local 565 borrow = 0; 568 y = (ULLong)*xa++ - *xb++ - borrow; 569 borrow = y >> 32 & 1UL; 574 y = *xa++ - borrow; 575 borrow = y >> 32 & 1UL; 581 y = (*xa & 0xffff) - (*xb & 0xffff) - borrow; 582 borrow = (y & 0x10000) >> 16; 583 z = (*xa++ >> 16) - (*xb++ >> 16) - borrow; [all …]
|
H A D | strtodg.c | 101 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 D | aggsum.c | 168 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/share/examples/pf/ |
H A D | faq-example3 | 24 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 D | queue2 | 12 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 D | queue1 | 9 queue http_vhosts bandwidth 40% cbq(borrow red) 12 queue ssh bandwidth 100Kb priority 7 cbq(borrow)
|
H A D | faq-example2 | 43 # borrow. 48 queue bob_in bandwidth 80Kb cbq(borrow)
|
/freebsd/sys/contrib/libsodium/test/default/ |
H A D | core6.c | 24 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/crypto/libecc/src/nn/ |
H A D | nn_div.c | 76 u8 shift, word_t *borrow) in _nn_cnd_sub_shift() argument 84 MUST_HAVE((borrow != NULL), ret, err); in _nn_cnd_sub_shift() 99 (*borrow) = _borrow; in _nn_cnd_sub_shift() 115 word_t *borrow) in _nn_submul_word_shift() argument 122 MUST_HAVE((borrow != NULL), ret, err); in _nn_submul_word_shift() 145 (*borrow) = _borrow; in _nn_submul_word_shift() 197 word_t borrow, qstar, qh, ql, rh, rl; /* for 3-by-2 div. */ in _nn_divrem_normalized() local 244 ret = _nn_submul_word_shift(r, b, qstar, shift, &borrow); EG(ret, err); in _nn_divrem_normalized() 247 MUST_HAVE(!(r->val[i - 1] < borrow), ret, err); in _nn_divrem_normalized() 248 r->val[i - 1] = (word_t)(r->val[i - 1] - borrow); in _nn_divrem_normalized() [all …]
|
H A D | nn_add.c | 252 word_t tmp, borrow1, borrow2, borrow = WORD(0); in nn_cnd_sub() local 272 out->val[i] = (word_t)(tmp - borrow); in nn_cnd_sub() 275 borrow = (word_t)(borrow1 | borrow2); in nn_cnd_sub() 279 ret = (borrow != WORD(0)) ? -1 : 0; in nn_cnd_sub() 299 word_t tmp, borrow; in nn_dec() local 308 borrow = w; in nn_dec() 310 tmp = (word_t)(in1->val[i] - borrow); in nn_dec() 311 borrow = (word_t)(tmp > in1->val[i]); in nn_dec() 315 ret = (borrow != WORD(0)) ? -1 : 0; in nn_dec()
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBDebuggerExtensions.i | 11 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 D | SBFileExtensions.i | 15 def Create(cls, file, borrow=False, force_io_methods=False): 25 if borrow:
|
/freebsd/crypto/openssl/crypto/bn/ |
H A D | bn_mod.c | 141 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 D | bn_add.c | 128 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 D | altq_cbq.c | 273 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 D | altq_rmclass.c | 181 struct rm_class *parent, struct rm_class *borrow, u_int maxidle, in rmc_newclass() argument 230 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() [all …]
|
/freebsd/crypto/openssl/crypto/ec/curve448/ |
H A D | scalar.c | 55 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 D | bn-c64xplus.asm | 163 [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 D | README.txt | 59 need to produce a borrow. (Note that there are no memory forms of
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APInt.cpp | 1348 int64_t borrow = 0; in KnuthDiv() local 1351 int64_t subres = int64_t(u[j+i]) - borrow - Lo_32(p); in KnuthDiv() 1353 borrow = Hi_32(p) - Hi_32(subres); in KnuthDiv() 1355 << ", borrow = " << borrow << '\n'); in KnuthDiv() 1357 bool isNeg = u[j+n] < borrow; in KnuthDiv() 1358 u[j+n] -= Lo_32(borrow); in KnuthDiv()
|
/freebsd/sys/dev/netmap/ |
H A D | if_ptnet.c | 1931 bool borrow = false; in ptnet_poll() local 1944 if (borrow) { in ptnet_poll() 1974 borrow = true; in ptnet_poll()
|
/freebsd/lib/libc/softfloat/bits32/ |
H A D | softfloat-macros | 326 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 D | ecp_nistz256-armv4.S | 2519 @ 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.
|
/freebsd/lib/libc/softfloat/bits64/ |
H A D | softfloat-macros | 401 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
|