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

  /src/common/dist/zlib/
inftrees.c 39 unsigned mmin, mmax; /* minimum and maximum code lengths */ local
123 for (mmin = 1; mmin <= MAXBITS; mmin++)
124 if (count[mmin] != 0) break;
125 if (root < mmin) root = mmin;
197 len = mmin; /* starting code length */
230 mmin = fill; /* save offset to next table */
261 next += mmin; /* here mmin is 1 << curr *
    [all...]
  /src/external/bsd/bzip2/dist/
blocksort.c 596 #define mmin(a,b) ((a) < (b)) ? (a) : (b) macro
698 n = mmin(ltLo-lo, unLo-ltLo); mvswap(lo, unLo-n, n);
699 m = mmin(hi-gtHi, gtHi-unHi); mvswap(unLo, hi-m+1, m);
725 #undef mmin macro
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
zlib.c 770 unsigned mmin, mmax; /* minimum and maximum code lengths */ local
854 for (mmin = 1; mmin <= MAXBITS; mmin++)
855 if (count[mmin] != 0) break;
856 if (root < mmin) root = mmin;
931 len = mmin; /* starting code length */
963 mmin = fill; /* save offset to next table */
994 next += mmin; /* here mmin is 1 << curr *
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
loop-iv.cc 2063 rtx mmin, mmax, cond_over, cond_under; local
2065 get_mode_bounds (mode, signed_p, iv->extend_mode, &mmin, &mmax);
2067 iv->base, mmin);
2238 rtx mmin, mmax, cmp; local
2254 get_mode_bounds (desc->mode, desc->signed_p, desc->mode, &mmin, &mmax);
2255 nmax = UINTVAL (mmax) - UINTVAL (mmin);
2302 rtx mmin, mmax, mode_mmin, mode_mmax; local
2381 get_mode_bounds (mode, (cond == LE || cond == LT), comp_mode, &mmin, &mmax);
2382 mode_mmin = lowpart_subreg (mode, mmin, comp_mode);
2537 bound = simplify_gen_binary (PLUS, comp_mode, mmin, step)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
loop-iv.cc 2079 rtx mmin, mmax, cond_over, cond_under; local
2081 get_mode_bounds (mode, signed_p, iv->extend_mode, &mmin, &mmax);
2083 iv->base, mmin);
2254 rtx mmin, mmax, cmp; local
2270 get_mode_bounds (desc->mode, desc->signed_p, desc->mode, &mmin, &mmax);
2271 nmax = UINTVAL (mmax) - UINTVAL (mmin);
2318 rtx mmin, mmax, mode_mmin, mode_mmax; local
2397 get_mode_bounds (mode, (cond == LE || cond == LT), comp_mode, &mmin, &mmax);
2398 mode_mmin = lowpart_subreg (mode, mmin, comp_mode);
2553 bound = simplify_gen_binary (PLUS, comp_mode, mmin, step)
    [all...]

Completed in 33 milliseconds