Searched refs:borrow (Results 1 - 7 of 7) sorted by relevance

/freebsd-9.3-release/contrib/gdtoa/
H A Ddmisc.c111 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 Dmisc.c533 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 Dstrtodg.c101 ULong borrow = 1, y; local
117 y = *x - borrow;
118 borrow = (y & 0x10000) >> 16;
120 } while(borrow && x < xe);
/freebsd-9.3-release/sys/contrib/altq/altq/
H A Daltq_cbq.c313 struct rm_class *borrow, *parent; local
343 /* Get pointers to parent and borrow classes. */
346 borrow = parent;
348 borrow = NULL;
351 * A class must borrow from it's parent or it can not
352 * borrow at all. Hence, borrow can be null.
359 if ((borrow != parent) && (borrow != NULL)) {
360 printf("cbq_add_class: borrow clas
618 struct rm_class *borrow, *parent; local
[all...]
H A Daltq_rmclass.c107 * borrow the offtime of the class borrowing from.
109 * to borrow much, especially when cutoff is taking effect.
154 * borrow class to borrow from (should be either 'parent' or null).
195 struct rm_class *parent, struct rm_class *borrow, u_int maxidle,
240 cl->borrow_ = borrow;
779 struct rm_class *borrow = cl->borrow_; local
781 while (borrow != NULL &&
782 borrow->depth_ < ifd->cutoff_) {
783 if (TV_LT(&borrow
193 rmc_newclass(int pri, struct rm_ifdat *ifd, u_int nsecPerByte, void (*action)(rm_class_t *, rm_class_t *), int maxq, struct rm_class *parent, struct rm_class *borrow, u_int maxidle, int minidle, u_int offtime, int pktsize, int flags) argument
1491 rmc_delay_action(struct rm_class *cl, struct rm_class *borrow) argument
1602 rmc_root_overlimit(struct rm_class *cl, struct rm_class *borrow) argument
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DAPInt.cpp209 /// @returns the borrow out of the subtraction
215 y = 1; // We have to "borrow 1" from next "digit"
217 y = 0; // No need to borrow
262 /// @returns returns the borrow out.
266 bool borrow = false;
268 uint64_t x_tmp = borrow ? x[i] - 1 : x[i];
269 borrow = y[i] > x_tmp || (borrow && x[i] == 0);
272 return borrow;
1571 bool borrow
[all...]
H A DAPFloat.cpp879 /* Subtract the significand of the RHS with a borrow flag. Returns
880 the borrow flag. */
882 APFloat::subtractSignificand(const APFloat &rhs, integerPart borrow)
891 return APInt::tcSubtract(parts, rhs.significandParts(), borrow,
1442 /* The code above is intended to ensure that no borrow is

Completed in 89 milliseconds