| /freebsd-11-stable/contrib/gdtoa/ |
| HD | 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 …]
|
| HD | 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 …]
|
| HD | strtodg.c | 101 ULong borrow = 1, y; local 117 y = *x - borrow; 118 borrow = (y & 0x10000) >> 16; 120 } while(borrow && x < xe);
|
| /freebsd-11-stable/share/examples/pf/ |
| HD | 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 …]
|
| HD | 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 }
|
| HD | queue1 | 10 queue http_vhosts bandwidth 40% cbq(borrow red) 13 queue ssh bandwidth 100Kb priority 7 cbq(borrow)
|
| HD | faq-example2 | 44 # borrow. 49 queue bob_in bandwidth 80Kb cbq(borrow)
|
| /freebsd-11-stable/crypto/openssl/crypto/bn/ |
| HD | bn_mod.c | 246 BN_ULONG borrow, carry, ta, tb, mask, *rp; in bn_mod_sub_fixed_top() local 256 for (i = 0, ai = 0, bi = 0, borrow = 0; i < mtop;) { in bn_mod_sub_fixed_top() 262 rp[i] = ta - tb - borrow; in bn_mod_sub_fixed_top() 264 borrow = (ta < tb); in bn_mod_sub_fixed_top() 271 for (i = 0, mask = 0 - borrow, carry = 0; i < mtop; i++) { in bn_mod_sub_fixed_top() 277 borrow -= carry; in bn_mod_sub_fixed_top() 278 for (i = 0, mask = 0 - borrow, carry = 0; i < mtop; i++) { in bn_mod_sub_fixed_top()
|
| /freebsd-11-stable/sys/net/altq/ |
| HD | altq_cbq.c | 311 struct rm_class *borrow, *parent; in cbq_add_queue() local 344 borrow = parent; in cbq_add_queue() 346 borrow = NULL; in cbq_add_queue() 357 if ((borrow != parent) && (borrow != NULL)) { in cbq_add_queue() 398 rmc_delay_action, a->qlimit, parent, borrow, in cbq_add_queue() 616 struct rm_class *borrow, *parent; local 630 borrow = clh_to_clp(cbqp, acp->cbq_class.borrow_class_handle); 641 if ((borrow != parent) && (borrow != NULL)) { 646 return cbq_class_create(cbqp, acp, parent, borrow); 709 cbq_class_create(cbqp, acp, parent, borrow) in cbq_class_create() argument [all …]
|
| HD | 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-11-stable/contrib/llvm-project/lldb/bindings/interface/ |
| HD | SBFile.i | 44 def Create(cls, file, borrow=False, force_io_methods=False): 54 if borrow:
|
| HD | 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-11-stable/contrib/gcc/config/s390/ |
| HD | 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-11-stable/contrib/gcclibs/libssp/ |
| HD | configure.ac | 36 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| HD | README.txt | 59 need to produce a borrow. (Note that there are no memory forms of
|
| HD | SystemZInstrVector.td | 812 // Subtract compute borrow indication. 820 // Subtract with borrow indication. 824 // Subtract with borrow compute borrow indication.
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ |
| HD | APInt.cpp | 1406 int64_t borrow = 0; in KnuthDiv() local 1409 int64_t subres = int64_t(u[j+i]) - borrow - Lo_32(p); in KnuthDiv() 1411 borrow = Hi_32(p) - Hi_32(subres); in KnuthDiv() 1413 << ", borrow = " << borrow << '\n'); in KnuthDiv() 1415 bool isNeg = u[j+n] < borrow; in KnuthDiv() 1416 u[j+n] -= Lo_32(borrow); in KnuthDiv()
|
| /freebsd-11-stable/lib/libc/softfloat/bits32/ |
| HD | 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-11-stable/contrib/gcclibs/libmudflap/ |
| HD | configure.ac | 34 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
|
| /freebsd-11-stable/contrib/binutils/opcodes/ |
| HD | s390-opc.txt | 598 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
|
| /freebsd-11-stable/lib/libc/softfloat/bits64/ |
| HD | softfloat-macros | 402 2^128, so any borrow out (carry out) is lost. The result is broken into two 421 Subtraction is modulo 2^192, so any borrow out (carry out) is lost. The
|
| /freebsd-11-stable/contrib/gcclibs/libgomp/ |
| HD | configure.ac | 99 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
|
| /freebsd-11-stable/secure/lib/libcrypto/arm/ |
| HD | aesv8-armx.S | 104 vmov.i8 q10,#8 @ borrow q10
|
| HD | bsaes-armv7.S | 1354 add r8, r6, #.LREVM0SR-.LM0 @ borrow r8 1373 adrl r8, .LREVM0SR @ borrow r8
|
| /freebsd-11-stable/contrib/openpam/ |
| HD | HISTORY | 408 - ENHANCE: Add openpam_{borrow,restore}_cred(), for temporarily
|