| /trueos/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);
|
| /trueos/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)
|
| /trueos/sys/contrib/altq/altq/ |
| HD | altq_cbq.c | 315 struct rm_class *borrow, *parent; in cbq_add_queue() local 348 borrow = parent; in cbq_add_queue() 350 borrow = NULL; in cbq_add_queue() 361 if ((borrow != parent) && (borrow != NULL)) { in cbq_add_queue() 402 rmc_delay_action, a->qlimit, parent, borrow, in cbq_add_queue() 620 struct rm_class *borrow, *parent; local 634 borrow = clh_to_clp(cbqp, acp->cbq_class.borrow_class_handle); 645 if ((borrow != parent) && (borrow != NULL)) { 650 return cbq_class_create(cbqp, acp, parent, borrow); 713 cbq_class_create(cbqp, acp, parent, borrow) in cbq_class_create() argument [all …]
|
| HD | altq_rmclass.c | 196 struct rm_class *parent, struct rm_class *borrow, u_int maxidle, in rmc_newclass() argument 237 cl->borrow_ = borrow; in rmc_newclass() 776 struct rm_class *borrow = cl->borrow_; in rmc_queue_packet() local 778 while (borrow != NULL && in rmc_queue_packet() 779 borrow->depth_ < ifd->cutoff_) { in rmc_queue_packet() 780 if (TV_LT(&borrow->undertime_, &now)) { in rmc_queue_packet() 781 ifd->cutoff_ = borrow->depth_; in rmc_queue_packet() 785 borrow = borrow->borrow_; in rmc_queue_packet() 1488 rmc_delay_action(struct rm_class *cl, struct rm_class *borrow) in rmc_delay_action() argument 1501 if (borrow != NULL) in rmc_delay_action() [all …]
|
| /trueos/contrib/llvm/lib/Support/ |
| HD | APInt.cpp | 266 bool borrow = false; in sub() local 268 uint64_t x_tmp = borrow ? x[i] - 1 : x[i]; in sub() 269 borrow = y[i] > x_tmp || (borrow && x[i] == 0); in sub() 272 return borrow; in sub() 1571 bool borrow = subtrahend > u_tmp; in KnuthDiv() local 1574 << ", borrow = " << borrow << '\n'); in KnuthDiv() 1580 while (borrow && k <= m+n) { // deal with borrow to the left in KnuthDiv() 1581 borrow = u[k] == 0; in KnuthDiv() 1585 isNeg |= borrow; in KnuthDiv()
|
| HD | APFloat.cpp | 882 APFloat::subtractSignificand(const APFloat &rhs, integerPart borrow) in subtractSignificand() argument 891 return APInt::tcSubtract(parts, rhs.significandParts(), borrow, in subtractSignificand()
|
| /trueos/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.
|
| /trueos/contrib/gcclibs/libssp/ |
| HD | configure.ac | 36 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
|
| /trueos/contrib/llvm/lib/Target/SystemZ/ |
| HD | README.txt | 81 need to produce a borrow. (Note that there are no memory forms of
|
| /trueos/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
|
| /trueos/contrib/gcclibs/libmudflap/ |
| HD | configure.ac | 34 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
|
| /trueos/lib/libdispatch/src/ |
| HD | object.m | 558 // cannot borrow any references, because the block might be
|
| /trueos/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
|
| /trueos/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
|
| /trueos/contrib/gcclibs/libgomp/ |
| HD | configure.ac | 99 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
|
| /trueos/contrib/openpam/ |
| HD | HISTORY | 362 - ENHANCE: Add openpam_{borrow,restore}_cred(), for temporarily
|
| /trueos/contrib/jansson/doc/ |
| HD | apiref.rst | 480 .. refcounting:: borrow 594 .. refcounting:: borrow 719 .. refcounting:: borrow
|
| /trueos/share/examples/IPv6/ |
| HD | USAGE | 29 Pseudo interfaces (like "gif" tunnel device) will borrow IPv6
|
| /trueos/games/fortune/datfiles/ |
| HD | murphy | 683 you will borrow it and 1079 even if you have to borrow to do so. 2199 You sure have to borrow a lot of money these days to
|
| /trueos/contrib/binutils/bfd/ |
| HD | configure.in | 468 # We borrow WIN32LIBADD so that the shared libbfd won't depend on
|