HomeSort by: relevance | last modified time | path
    Searched defs:borrow (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/external/isc/libsodium/dist/test/default/
core6.c 24 unsigned int borrow = 0; local in function:print
29 printf(",0x%02x", 255 & (xi - yi - borrow));
30 borrow = (xi < yi + borrow);
  /src/lib/libc/gdtoa/
dmisc.c 118 ULLong borrow, carry, y, ys; local in function:quorem
120 ULong borrow, carry, y, ys; local in function:quorem
143 borrow = 0;
150 y = *bx - (ys & 0xffffffffUL) - borrow;
151 borrow = y >> 32 & 1UL;
160 y = (*bx & 0xffff) - (ys & 0xffff) - borrow;
161 borrow = (y & 0x10000) >> 16;
162 z = (*bx >> 16) - (zs & 0xffff) - borrow;
163 borrow = (z & 0x10000) >> 16;
168 y = *bx - (ys & 0xffff) - borrow;
    [all...]
misc.c 570 ULLong borrow, y; local in function:diff
572 ULong borrow, y; local in function:diff
606 borrow = 0;
609 y = (ULLong)*xa++ - *xb++ - borrow;
610 borrow = y >> 32 & 1UL;
616 y = *xa++ - borrow;
617 borrow = y >> 32 & 1UL;
624 y = (*xa & 0xffff) - (*xb & 0xffff) - borrow;
625 borrow = (y & 0x10000) >> 16;
626 z = (*xa++ >> 16) - (*xb++ >> 16) - borrow;
    [all...]
strtodg.c 104 ULong borrow = 1, y; local in function:decrement
120 y = *x - borrow;
121 borrow = (y & 0x10000) >> 16;
123 } while(borrow && x < xe);
  /src/sys/kern/
subr_time_arith.c 316 bool borrow; local in function:timespecsubok
330 * Fail if a - b - borrow overflows TIME_MIN, or if a - b
331 * overflows TIME_MAX because timespecsub subtracts the borrow
338 borrow = (tsp->tv_nsec - usp->tv_nsec < 0);
357 * If b >= 0, then a - b - borrow <= a - b < 0, so
361 * a - b - borrow < TIME_MIN,
365 * a < TIME_MIN + b + borrow.
368 * values of b and borrow as long as TIME_MIN +
375 * - a + borrow) without extra cases like checking for
379 if (b >= 0 && a < TIME_MIN + b + borrow)
    [all...]
  /src/sys/altq/
altq_cbq.c 313 struct rm_class *borrow, *parent; local in function:cbq_add_queue
343 /* Get pointers to parent and borrow classes. */
346 borrow = parent;
348 borrow = NULL;
351 * A class must borrow from its 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 class != parent\n")
613 struct rm_class *borrow, *parent; local in function:cbq_add_class
    [all...]
altq_rmclass.c 112 * borrow the offtime of the class borrowing from.
114 * to borrow much, especially when cutoff is taking effect.
159 * borrow class to borrow from (should be either 'parent' or null).
200 struct rm_class *parent, struct rm_class *borrow, u_int maxidle,
242 cl->borrow_ = borrow;
771 struct rm_class *borrow = cl->borrow_; local in function:rmc_queue_packet
773 while (borrow != NULL &&
774 borrow->depth_ < ifd->cutoff_) {
775 if (TS_LT(&borrow->undertime_, &now))
    [all...]
  /src/usr.sbin/altq/libaltq/
qop_cbq.c 169 const char *borrow = NULL; local in function:cbq_class_parser
218 } else if (EQUAL(*argv, "borrow")) {
219 borrow = parent_name;
221 /* support old style "borrow [parent]" */
298 error = qcmd_cbq_add_class(ifname, class_name, parent_name, borrow,
335 struct classinfo *parent = NULL, *borrow = NULL;
348 (borrow = clname2clinfo(ifinfo, borrow_name)) == NULL)
369 borrow, pri, bandwidth,
523 struct classinfo *borrow, u_int pri, uint64_t bandwidth,
596 borrow_handle = borrow != NULL ? borrow->handle : NULL_CLASS_HANDLE
    [all...]
  /src/sys/net/
if_wg.c 1577 int borrow; local in function:wg_initiator_priority
1586 for (borrow = 0, i = 0; i < BLAKE2S_MAX_DIGEST; i++)
1587 borrow = (h_local[i] - h_peer[i] + borrow) >> 8;
1589 return 1 & (h_local[0] ^ h_peer[0] ^ h_min ^ borrow);

Completed in 19 milliseconds