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

  /src/external/lgpl3/gmp/dist/mpf/
mul_ui.c 95 mp_size_t prec, excess; local
127 excess = size - prec;
130 if (excess > 0)
140 i = excess - 1;
164 up += excess;
  /src/external/ibm-public/postfix/dist/src/postconf/
postconf.c 791 int excess; local
797 && (excess = (optval & ~((*op)[0] | (*op)[1]))) != 0)
802 excess, NAME_MASK_NUMBER));
  /src/external/cddl/osnet/lib/libzfs/
thread_pool.c 393 int excess; local
402 excess = tpool->tp_njobs - tpool->tp_idle;
403 while (excess-- > 0 && tpool->tp_current < tpool->tp_maximum) {
  /src/external/gpl2/libmalloc/dist/
ralloc.c 319 int excess = 0;
326 excess += (char *) h->end - (char *) ((break_value < h->bloc_start)
330 if (excess > extra_bytes * 2 && (*real_morecore) (0) == last_heap->end)
334 excess -= extra_bytes;
336 if ((char *)last_heap->end - (char *)last_heap->bloc_start <= excess)
344 excess = (char *)last_heap->end - (char *)last_heap->start;
350 excess = (char *) last_heap->end
351 - (char *) ROUNDUP ((char *)last_heap->end - excess);
352 last_heap->end -= excess;
355 if ((*real_morecore) (- excess) == 0
316 int excess = 0; local
818 SIZE excess = (char *)first_heap->bloc_start local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
wide-int.cc 210 int excess = len * HOST_BITS_PER_WIDE_INT - x.get_precision (); local
219 if (excess > 0)
220 t[len - 1] = (unsigned HOST_WIDE_INT) t[len - 1] << excess >> excess;
224 else if (excess > 0)
229 t[len - 1] = (unsigned HOST_WIDE_INT) v[len - 1] << excess >> excess;
232 else if (excess < 0 && wi::neg_p (x))
234 int extra = CEIL (-excess, HOST_BITS_PER_WIDE_INT);
240 excess = (-excess) % HOST_BITS_PER_WIDE_INT
    [all...]
calls.cc 5129 poly_int64 excess;
5141 excess = 0;
5148 excess = (arg->locate.size.constant
5168 = known_alignment (excess) * BITS_PER_UNIT;
5220 parm_align, partial, reg, excess, argblock,
5126 poly_int64 excess; local
  /src/external/gpl3/gcc.old/dist/gcc/
wide-int.cc 211 int excess = len * HOST_BITS_PER_WIDE_INT - x.get_precision (); local
220 if (excess > 0)
221 t[len - 1] = (unsigned HOST_WIDE_INT) t[len - 1] << excess >> excess;
225 else if (excess > 0)
230 t[len - 1] = (unsigned HOST_WIDE_INT) v[len - 1] << excess >> excess;
233 else if (excess < 0 && wi::neg_p (x))
236 = (-excess + HOST_BITS_PER_WIDE_INT - 1) / HOST_BITS_PER_WIDE_INT;
242 excess = (-excess) % HOST_BITS_PER_WIDE_INT
    [all...]
wide-int.h 338 such as whether excess upper bits in a HWI are defined, and can therefore
861 int excess = len * HOST_BITS_PER_WIDE_INT - precision; local
862 if (excess > 0)
863 high <<= excess; local
1298 /* There are no excess bits in val[len - 1]. */
1875 /* Excess bits in xi.val[0] will be signs or zeros, so comparisons
1879 /* Otherwise flush out any excess bits first. */
1881 int excess = HOST_BITS_PER_WIDE_INT - precision; local
1882 if (excess > 0)
1883 diff <<= excess; local
    [all...]
calls.cc 5060 poly_int64 excess;
5072 excess = 0;
5079 excess = (arg->locate.size.constant
5099 = known_alignment (excess) * BITS_PER_UNIT;
5151 parm_align, partial, reg, excess, argblock,
5057 poly_int64 excess; local
  /src/external/gpl3/gdb/dist/gdb/
target-float.c 185 not evenly divisible by 8. So we compute ``excess'' which
188 int excess = FLOATFORMAT_CHAR_BIT - (total_len % FLOATFORMAT_CHAR_BIT); local
191 - ((start + len + excess) / FLOATFORMAT_CHAR_BIT);
192 cur_bitshift = ((start + len + excess) % FLOATFORMAT_CHAR_BIT)
248 int excess = FLOATFORMAT_CHAR_BIT - (total_len % FLOATFORMAT_CHAR_BIT); local
251 - ((start + len + excess) / FLOATFORMAT_CHAR_BIT);
252 cur_bitshift = ((start + len + excess) % FLOATFORMAT_CHAR_BIT)
788 /* Use static volatile to ensure that any excess precision is
  /src/external/gpl3/gdb.old/dist/gdb/
target-float.c 185 not evenly divisible by 8. So we compute ``excess'' which
188 int excess = FLOATFORMAT_CHAR_BIT - (total_len % FLOATFORMAT_CHAR_BIT); local
191 - ((start + len + excess) / FLOATFORMAT_CHAR_BIT);
192 cur_bitshift = ((start + len + excess) % FLOATFORMAT_CHAR_BIT)
248 int excess = FLOATFORMAT_CHAR_BIT - (total_len % FLOATFORMAT_CHAR_BIT); local
251 - ((start + len + excess) / FLOATFORMAT_CHAR_BIT);
252 cur_bitshift = ((start + len + excess) % FLOATFORMAT_CHAR_BIT)
788 /* Use static volatile to ensure that any excess precision is
  /src/external/gpl3/binutils/dist/gas/config/
tc-loongarch.c 2171 int bytes, size, excess; local
2188 excess = bytes % size;
2190 gas_assert (excess < 4);
2191 fragp->fr_fix += excess;
2193 while (excess-- != 0)
tc-riscv.c 655 /* Remove any excess mapping symbols generated for alignment frags in
5281 bfd_signed_vma excess = bytes % size; local
5288 if (excess)
5290 if (excess % 2)
5292 riscv_make_nops (p, excess);
5293 fragP->fr_fix += excess;
5294 p += excess;
tc-mips.c 20078 int bytes, size, excess;
20104 excess = bytes % size;
20110 gas_assert (excess < 4);
20111 fragp->fr_fix += excess;
20112 switch (excess)
20062 int bytes, size, excess; local
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-loongarch.c 2103 int bytes, size, excess; local
2120 excess = bytes % size;
2122 gas_assert (excess < 4);
2123 fragp->fr_fix += excess;
2125 while (excess-- != 0)
tc-riscv.c 655 /* Remove any excess mapping symbols generated for alignment frags in
5270 bfd_signed_vma excess = bytes % size; local
5277 if (excess)
5279 if (excess % 2)
5281 riscv_make_nops (p, excess);
5282 fragP->fr_fix += excess;
5283 p += excess;
tc-mips.c 19766 int bytes, size, excess;
19792 excess = bytes % size;
19798 gas_assert (excess < 4);
19799 fragp->fr_fix += excess;
19800 switch (excess)
19750 int bytes, size, excess; local
  /src/external/public-domain/sqlite/dist/
sqlite3.c 30033 sqlite3_int64 excess; local
    [all...]

Completed in 149 milliseconds