HomeSort by: relevance | last modified time | path
    Searched refs:excess (Results 1 - 25 of 31) sorted by relevancy

1 2

  /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/distrib/common/
buildfloppies.sh 161 excess=$(( 0 - $free_space + $pad_bytes))
163 "$prog: Image is ${excess} bytes ($(( ${excess} / 1024 )) KB)"\
  /src/sys/arch/m68k/m68k/
oc_cksum.s 99 | test for possible 1, 2 or 3 bytes of excess at end
100 | of buffer. The usual case is no excess (the usual
102 | 'not taken' leg of the compare. (We do the excess
107 jne .L5 | if one or three bytes excess
109 jne .L7 | if two bytes excess
192 .L5: | deal with 1 or 3 excess bytes at the end of the buffer.
194 jeq .L6 | if 1 excess
196 | 3 bytes excess
205 .L6: | 1 byte excess
216 .L7: | 2 bytes excess
    [all...]
  /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/sys/arch/mvme68k/stand/sboot/
oc_cksum.s 104 | test for possible 1, 2 or 3 bytes of excess at end
105 | of buffer. The usual case is no excess (the usual
107 | 'not taken' leg of the compare. (We do the excess
112 jne L5 | if one or three bytes excess
114 jne L7 | if two bytes excess
168 L5: | deal with 1 or 3 excess bytes at the end of the buffer.
170 jeq L6 | if 1 excess
172 | 3 bytes excess
177 L6: | 1 byte excess
184 L7: | 2 bytes excess
    [all...]
  /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/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/apache2/llvm/dist/llvm/lib/ProfileData/
GCOV.cpp 362 uint64_t excess = 0;
365 excess += e->onTree() ? propagateCounts(e->src, e) : e->count;
368 excess -= e->onTree() ? propagateCounts(e->dst, e) : e->count;
369 if (int64_t(excess) < 0)
370 excess = -excess;
372 pred->count = excess;
373 return excess;
  /src/sys/external/bsd/acpica/dist/tools/acpisrc/
asconvrt.c 566 * DESCRIPTION: Remove "excess" blank lines - any more than 2 blank lines.
  /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...]
wide-int.h 357 such as whether excess upper bits in a HWI are defined, and can therefore
926 int excess = len * HOST_BITS_PER_WIDE_INT - precision;
927 if (excess > 0)
928 high <<= excess;
1436 /* There are no excess bits in val[len - 1]. */
1658 /* There are no excess bits in val[len - 1]. */
2268 /* Excess bits in xi.val[0] will be signs or zeros, so comparisons
2272 /* Otherwise flush out any excess bits first. */
2274 int excess = HOST_BITS_PER_WIDE_INT - precision;
2275 if (excess > 0
    [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
diagnostic-show-locus.cc 3096 for (int excess = 1; excess <= 3; ++excess)
3097 test_offset_impl (line_bytes, line_display_cols + test_left_margin - excess,
3098 excess);
5243 Adapted from PR c/81405 seen on gcc.dg/init-excess-1.c*/
  /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
diagnostic-show-locus.cc 3018 for (int excess = 1; excess <= 3; ++excess)
3019 test_offset_impl (line_bytes, line_display_cols + test_left_margin - excess,
3020 excess);
5136 Adapted from PR c/81405 seen on gcc.dg/init-excess-1.c*/
  /src/sys/arch/luna68k/stand/boot/
locore.S 357 lea %sp@(12),%sp | clean the excess
365 lea %sp@(24),%sp | clean the excess
371 lea %sp@(84),%sp | clean the excess
539 * We check for ASTs first, just like the VAX. To avoid excess overhead
581 lea %sp@(12),%sp | clean the excess
589 lea %sp@(24),%sp | clean the excess
595 lea %sp@(84),%sp | clean the excess
  /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;
  /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;
  /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/tests/lib/libcurses/director/
testlang_parse.y 482 excess(const char *fname, size_t lineno, const char *func, const char *comment,
494 warnx("%s:%zu: [%s] Excess %zu bytes%s [%s]",
1028 excess(cur_file, line, __func__, " from slave",
1032 /* discard any excess saved output if required */
1046 * handle excess in file if it exists. Poll
1057 excess(check_file, 0, __func__, "", drain,
1234 excess(cur_file, line, __func__, " from slave",

Completed in 101 milliseconds

1 2