| /freebsd-12-stable/contrib/gdtoa/ |
| 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 …]
|
| 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 …]
|
| D | strtodg.c | 101 ULong borrow = 1, y; local 117 y = *x - borrow; 118 borrow = (y & 0x10000) >> 16; 120 } while(borrow && x < xe);
|
| /freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| D | aggsum.c | 169 int64_t borrow; in aggsum_add() local 185 borrow = (delta < 0 ? -delta : delta) * aggsum_borrow_multiplier; 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() 194 asb->asc_borrowed += borrow; in aggsum_add() 196 delta - borrow); in aggsum_add() 198 delta + borrow); in aggsum_add()
|
| /freebsd-12-stable/share/examples/pf/ |
| D | faq-example3 | 25 queue std_ext bandwidth 500Kb cbq(default borrow) 27 queue www_ext_http bandwidth 50% priority 3 cbq(red borrow) 28 queue www_ext_misc bandwidth 50% priority 1 cbq(borrow) 29 queue boss_ext bandwidth 500Kb priority 3 cbq(borrow) 50 queue std_int bandwidth 250Kb cbq(default borrow) 51 queue it_int bandwidth 500Kb cbq(borrow) 52 queue boss_int bandwidth 250Kb priority 3 cbq(borrow) 53 queue www_int bandwidth 99Mb cbq(red borrow) 70 queue internal_dmz bandwidth 99Mb cbq(borrow) 72 queue net_dmz_http bandwidth 50% priority 3 cbq(red borrow) [all …]
|
| D | queue2 | 13 queue http bandwidth 60% priority 2 cbq(borrow red) { employees, developers } 14 queue developers bandwidth 75% cbq(borrow) 16 queue mail bandwidth 10% priority 0 cbq(borrow ecn) 17 queue ssh bandwidth 20% cbq(borrow) { ssh_interactive, ssh_bulk }
|
| D | queue1 | 10 queue http_vhosts bandwidth 40% cbq(borrow red) 13 queue ssh bandwidth 100Kb priority 7 cbq(borrow)
|
| D | faq-example2 | 44 # borrow. 49 queue bob_in bandwidth 80Kb cbq(borrow)
|
| /freebsd-12-stable/sys/contrib/libsodium/test/default/ |
| 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-12-stable/crypto/openssl/crypto/bn/ |
| D | bn_mod.c | 132 BN_ULONG borrow, carry, ta, tb, mask, *rp; in bn_mod_sub_fixed_top() local 142 for (i = 0, ai = 0, bi = 0, borrow = 0; i < mtop;) { in bn_mod_sub_fixed_top() 148 rp[i] = ta - tb - borrow; in bn_mod_sub_fixed_top() 150 borrow = (ta < tb); in bn_mod_sub_fixed_top() 157 for (i = 0, mask = 0 - borrow, carry = 0; i < mtop; i++) { in bn_mod_sub_fixed_top() 163 borrow -= carry; in bn_mod_sub_fixed_top() 164 for (i = 0, mask = 0 - borrow, carry = 0; i < mtop; i++) { in bn_mod_sub_fixed_top()
|
| 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-12-stable/sys/net/altq/ |
| D | altq_cbq.c | 310 struct rm_class *borrow, *parent; in cbq_add_queue() local 343 borrow = parent; in cbq_add_queue() 345 borrow = NULL; in cbq_add_queue() 356 if ((borrow != parent) && (borrow != NULL)) { in cbq_add_queue() 397 rmc_delay_action, a->qlimit, parent, borrow, in cbq_add_queue() 615 struct rm_class *borrow, *parent; local 629 borrow = clh_to_clp(cbqp, acp->cbq_class.borrow_class_handle); 640 if ((borrow != parent) && (borrow != NULL)) { 645 return cbq_class_create(cbqp, acp, parent, borrow); 708 cbq_class_create(cbqp, acp, parent, borrow) in cbq_class_create() argument [all …]
|
| D | altq_rmclass.c | 192 struct rm_class *parent, struct rm_class *borrow, u_int maxidle, in rmc_newclass() argument 241 cl->borrow_ = borrow; in rmc_newclass() 779 struct rm_class *borrow = cl->borrow_; in rmc_queue_packet() local 781 while (borrow != NULL && in rmc_queue_packet() 782 borrow->depth_ < ifd->cutoff_) { in rmc_queue_packet() 783 if (TV_LT(&borrow->undertime_, &now)) { in rmc_queue_packet() 784 ifd->cutoff_ = borrow->depth_; in rmc_queue_packet() 788 borrow = borrow->borrow_; in rmc_queue_packet() 1491 rmc_delay_action(struct rm_class *cl, struct rm_class *borrow) in rmc_delay_action() argument 1504 if (borrow != NULL) in rmc_delay_action() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/ |
| D | SBFile.i | 44 def Create(cls, file, borrow=False, force_io_methods=False): 54 if borrow:
|
| D | SBDebugger.i | 175 self.SetOutputFile(SBFile.Create(file, borrow=True)) 182 self.SetInputFile(SBFile.Create(file, borrow=True)) 189 self.SetErrorFile(SBFile.Create(file, borrow=True))
|
| /freebsd-12-stable/crypto/openssl/crypto/ec/curve448/ |
| 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-12-stable/crypto/openssl/crypto/bn/asm/ |
| D | bn-c64xplus.asm | 164 [B0] ZERO A2 ; borrow flag 177 || AND 1,A1,A2 ; pass on borrow flag 180 AND 1,A1,RET ; return borrow flag
|
| /freebsd-12-stable/contrib/gcc/config/s390/ |
| D | s390-modes.def | 135 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.
|
| /freebsd-12-stable/contrib/gcclibs/libssp/ |
| D | configure.ac | 36 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| D | README.txt | 59 need to produce a borrow. (Note that there are no memory forms of
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/ |
| D | APInt.cpp | 1409 int64_t borrow = 0; in KnuthDiv() local 1412 int64_t subres = int64_t(u[j+i]) - borrow - Lo_32(p); in KnuthDiv() 1414 borrow = Hi_32(p) - Hi_32(subres); in KnuthDiv() 1416 << ", borrow = " << borrow << '\n'); in KnuthDiv() 1418 bool isNeg = u[j+n] < borrow; in KnuthDiv() 1419 u[j+n] -= Lo_32(borrow); in KnuthDiv()
|
| /freebsd-12-stable/lib/libc/softfloat/bits32/ |
| D | softfloat-macros | 327 2^64, so any borrow out (carry out) is lost. The result is broken into two 346 is modulo 2^96, so any borrow out (carry out) is lost. The result is broken
|
| /freebsd-12-stable/sys/dev/netmap/ |
| D | if_ptnet.c | 2237 bool borrow = false; in ptnet_poll() local 2250 if (borrow) { in ptnet_poll() 2280 borrow = true; in ptnet_poll()
|
| /freebsd-12-stable/contrib/gcclibs/libmudflap/ |
| D | configure.ac | 34 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
|
| /freebsd-12-stable/secure/lib/libcrypto/arm/ |
| D | ecp_nistz256-armv4.S | 2518 @ using value of borrow as a whole or extracting single bit. 2745 sbc r3,r3,r3 @ broadcast borrow bit 2754 @ broadcasting borrow bit to a register, r3, and using it as 3268 sbc r10,r10,#0 @ broadcast borrow bit 3273 @ broadcasting borrow bit to a register, r10, and using it as 3514 sbc r2,r2,r2 @ broadcast borrow bit 3558 sbc r2,r2,r2 @ broadcast borrow bit 3612 @ using value of borrow as a whole or extracting single bit.
|