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

  /src/lib/libedit/
tokenizer.c 89 Char *wptr, *wmax; /* Space and limit on the word buffer */ local
148 tok->wmax = tok->wspace + WINCR;
407 if (tok->wptr >= tok->wmax - 4) {
408 size_t size = (size_t)(tok->wmax - tok->wspace + WINCR);
424 tok->wmax = s + size;
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-range-fold.cc 1234 wide_int wmax local
1242 tree range_max = wide_int_to_tree (type, wmax - 2);
simplify-rtx.cc 2164 wide_int wmax, wmin;
2176 wmax = wi::max_value (width, SIGNED);
2177 real_from_integer (&t, VOIDmode, wmax, SIGNED);
2179 return immed_wide_int_const (wmax, mode);
2195 wmax = wi::max_value (width, UNSIGNED);
2196 real_from_integer (&t, VOIDmode, wmax, UNSIGNED);
2198 return immed_wide_int_const (wmax, mode);
2156 wide_int wmax, wmin; local
tree-vrp.cc 601 /* Given a range in [WMIN, WMAX], adjust it for possible overflow and
607 occurred while originally calculating WMIN or WMAX. -1 indicates
613 const wide_int &wmin, const wide_int &wmax,
622 if (prec == 1 && wi::lt_p (wmax, wmin, sgn))
633 wide_int tmax = wide_int::from (wmax, prec, sgn);
702 max = wide_int_to_tree (type, wmax);
849 wide_int wmin, wmax; local
855 combine_bound (code, wmax, max_ovf, expr_type, max_op0, max_op1);
871 wmin, wmax, min_ovf, max_ovf);
vr-values.cc 883 wide_int wmax = wi::to_wide (max, TYPE_PRECISION (TREE_TYPE (max))); local
885 tree range_max = wide_int_to_tree (expr_type, wmax - 1);
1112 widest_int wmin, wmax; local
1139 wmax = wt;
1144 wmax = wi::smax (wmax, wt);
1148 [wmin, wmax]. */
1151 /* If all values in [wmin, wmax] are smaller than
1154 if (wmax < wtmin || wmin > wtmax)
  /src/external/gpl3/gcc/dist/gcc/
simplify-rtx.cc 2259 wide_int wmax, wmin;
2271 wmax = wi::max_value (width, SIGNED);
2272 real_from_integer (&t, VOIDmode, wmax, SIGNED);
2274 return immed_wide_int_const (wmax, mode);
2290 wmax = wi::max_value (width, UNSIGNED);
2291 real_from_integer (&t, VOIDmode, wmax, UNSIGNED);
2293 return immed_wide_int_const (wmax, mode);
2251 wide_int wmax, wmin; local
vr-values.cc 117 widest2_int wmin, wmax; local
146 wmax = wt;
151 wmax = wi::smax (wmax, wt);
155 [wmin, wmax]. */
160 /* If all values in [wmin, wmax] are smaller than
163 if (wmax < wtmin || wmin > wtmax)
  /src/external/gpl3/gcc/dist/gcc/cp/
mangle.cc 4201 offset_int wmax = wi::to_offset (max) + 1; local
4204 wmax = wi::zext (wmax, TYPE_PRECISION (TREE_TYPE (max)));
4205 gcc_assert (wi::fits_uhwi_p (wmax));
4206 write_unsigned_number (wmax.to_uhwi ());
  /src/external/gpl3/gcc.old/dist/gcc/cp/
mangle.cc 3858 offset_int wmax = wi::to_offset (max) + 1; local
3861 wmax = wi::zext (wmax, TYPE_PRECISION (TREE_TYPE (max)));
3862 gcc_assert (wi::fits_uhwi_p (wmax));
3863 write_unsigned_number (wmax.to_uhwi ());

Completed in 79 milliseconds