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

1 2 3

  /src/crypto/external/bsd/heimdal/dist/lib/roken/
memset_s.c 38 memset_s(void *s, size_t smax, int c, size_t n)
  /src/external/gpl3/gcc/dist/fixincludes/
fixlib.c 235 make_raw_shell_str( char* pz_d, tCC* pz_s, size_t smax )
241 smax--; /* adjust for trailing NUL */
255 if (dtaSize > smax)
261 if ((size_t) (pz_d - pz_d_start) >= smax)
268 if ((size_t) (pz_d - pz_d_start) >= smax - sizeof( zQ )-1)
fixlib.h 266 char* make_raw_shell_str ( char* pz_d, tCC* pz_s, size_t smax );
  /src/external/gpl3/gcc.old/dist/fixincludes/
fixlib.c 235 make_raw_shell_str( char* pz_d, tCC* pz_s, size_t smax )
241 smax--; /* adjust for trailing NUL */
255 if (dtaSize > smax)
261 if ((size_t) (pz_d - pz_d_start) >= smax)
268 if ((size_t) (pz_d - pz_d_start) >= smax - sizeof( zQ )-1)
fixlib.h 266 char* make_raw_shell_str ( char* pz_d, tCC* pz_s, size_t smax );
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
parse_number.exp 56 set smax [expr 1 << ($type_bits - 1)];
59 return [expr ($n <= $smax)]
62 return [expr ($n < $smax)]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
parse_number.exp 56 set smax [expr 1 << ($type_bits - 1)];
59 return [expr ($n <= $smax)]
62 return [expr ($n < $smax)]
  /src/usr.bin/fsplit/
fsplit.c 394 scan_name(char *s, size_t smax, const char *ptr)
402 sptrmax = smax - 3;
  /src/usr.bin/xlint/lint1/
tree.c 55 int64_t smax; /* signed maximum */ member in struct:integer_constraints
232 c.smax = width < 64 ? (int64_t)vbits : INT64_MAX;
238 c.smax = (int64_t)(vbits >> 1);
253 int64_t lu = si_mult_sat(tp, a.smin, b.smax);
254 int64_t ul = si_mult_sat(tp, a.smax, b.smin);
255 int64_t uu = si_mult_sat(tp, a.smax, b.smax);
258 c.smax = s64_max(ll, s64_max(lu, s64_max(ul, uu)));
260 c.umax = c.smin >= 0 ? (uint64_t)c.smax : UINT64_MAX;
269 c.smax = INT64_MAX
    [all...]
  /src/external/bsd/openldap/dist/libraries/liblutil/
utils.c 97 size_t lutil_gentime( char *s, size_t smax, const struct tm *tm )
106 ret = strftime( s, smax, "%Y%m%d%H%M%SZ", tm );
115 size_t lutil_localtime( char *s, size_t smax, const struct tm *tm, long delta )
120 if ( smax < 16 ) { /* YYYYmmddHHMMSSZ */
130 ret = strftime( s, smax, "%Y%m%d%H%M%SZ", tm );
139 if ( smax < 20 ) { /* YYYYmmddHHMMSS+HHMM */
153 snprintf( p, smax - 15, "%02ld%02ld", delta / 3600,
  /src/external/gpl3/gdb/dist/gnulib/import/
intprops.h 473 signed, its type is ST with bounds SMIN..SMAX; otherwise its type
477 # define _GL_INT_OP_WRAPV_SMALLISH(a,b,r,op,overflow,st,smin,smax,ut,umax) \
479 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, st, smin, smax) \
482 # define _GL_INT_OP_WRAPV_SMALLISH(a,b,r,op,overflow,st,smin,smax,ut,umax) \
483 (overflow (a, b, smin, smax) \
  /src/external/gpl3/gdb.old/dist/gnulib/import/
intprops.h 473 signed, its type is ST with bounds SMIN..SMAX; otherwise its type
477 # define _GL_INT_OP_WRAPV_SMALLISH(a,b,r,op,overflow,st,smin,smax,ut,umax) \
479 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, st, smin, smax) \
482 # define _GL_INT_OP_WRAPV_SMALLISH(a,b,r,op,overflow,st,smin,smax,ut,umax) \
483 (overflow (a, b, smin, smax) \
  /src/external/gpl3/gcc/dist/contrib/vim-gcc-dev/syntax/
gcc-rtl.vim 30 \ lshiftrt rotatert smin smax umin umax pre_dec
  /src/external/gpl3/gcc.old/dist/contrib/vim-gcc-dev/syntax/
gcc-rtl.vim 30 \ lshiftrt rotatert smin smax umin umax pre_dec
  /src/crypto/external/bsd/heimdal/include/
roken.h 314 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL memset_s(void *s, size_t smax,
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ConstantRange.h 388 ConstantRange smax(const ConstantRange &Other) const;
IntrinsicInst.h 64 case Intrinsic::smax:
477 case Intrinsic::smax:
499 case Intrinsic::smax:
  /src/external/bsd/openldap/dist/include/
lutil.h 228 lutil_localtime LDAP_P(( char *s, size_t smax, const struct tm *tm,
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantRange.cpp 100 APInt SMax(CR.getSignedMax());
101 if (SMax.isMinSignedValue())
103 return ConstantRange(APInt::getSignedMinValue(W), std::move(SMax));
255 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax();
258 SMax.isStrictlyPositive() ? SignedMinVal - SMax : SignedMinVal);
266 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax();
268 SMax.isStrictlyPositive() ? SignedMinVal + SMax : SignedMinVal,
677 APInt SMax = APInt::getSignedMaxValue(BW).sextOrSelf(ResultBitWidth)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gimple-ssa-warn-restrict.cc 1264 acs.sizrange[0] = wi::smax (wi::abs (endoff - srcref->offrange[0]) + 1,
1282 acs.sizrange[1] = wi::smax (acs.dstsiz[1], srcref->sizrange[1]).to_shwi ();
1330 acs.sizrange[0] = wi::smax (dstref->sizrange[0],
1332 acs.sizrange[1] = wi::smax (dstref->sizrange[1],
1416 sizrange[0] = wi::smax (acs.dstsiz[0], srcref->sizrange[0]).to_shwi ();
1417 sizrange[1] = wi::smax (acs.dstsiz[1], srcref->sizrange[1]).to_shwi ();
double-int.h 183 double_int smax (double_int b);
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-ssa-warn-restrict.cc 1261 acs.sizrange[0] = wi::smax (wi::abs (endoff - srcref->offrange[0]) + 1,
1279 acs.sizrange[1] = wi::smax (acs.dstsiz[1], srcref->sizrange[1]).to_shwi ();
1327 acs.sizrange[0] = wi::smax (dstref->sizrange[0],
1329 acs.sizrange[1] = wi::smax (dstref->sizrange[1],
1413 sizrange[0] = wi::smax (acs.dstsiz[0], srcref->sizrange[0]).to_shwi ();
1414 sizrange[1] = wi::smax (acs.dstsiz[1], srcref->sizrange[1]).to_shwi ();
double-int.h 183 double_int smax (double_int b);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
KnownBits.h 325 /// Compute known bits for smax(LHS, RHS).
326 static KnownBits smax(const KnownBits &LHS, const KnownBits &RHS);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
MVELaneInterleavingPass.cpp 204 case Intrinsic::smax:

Completed in 42 milliseconds

1 2 3