Searched defs:S2I_max (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libast/common/string/
H A Dstrtoi.h104 #define S2I_max S2I_umax macro
107 #define S2I_min (-S2I_max-1)
108 #define S2I_max (S2I_umax>>1) macro
371 n = S2I_max;
373 n = negative ? S2I_min : S2I_max;
591 if (negative && (n - 1) > S2I_max)
594 else if (n > S2I_max)
611 return (S2I_type)S2I_max;

Completed in 57 milliseconds