Lines Matching defs:rsize
119 static lbool help_fixup(void *r, uintmax val, int rsize, int rsigned)
123 if (rsize == sizeof (int))
130 } else if (rsize == sizeof (long long))
138 } else if (rsize == sizeof (intmax_t)) {
144 } else /* rsize == sizeof (long) */
152 if (rsize == sizeof (unsigned)) {
157 } else if (rsize == sizeof (unsigned long)) {
163 } else if (rsize == sizeof (unsigned long long)) {
169 } else /* rsize == sizeof (uintmax) */
184 public lbool help_ckd_add(void *r, uintmax a, uintmax b, int rsize, int rsigned)
187 return sum < a || help_fixup(r, sum, rsize, rsigned);
191 public lbool help_ckd_mul(void *r, uintmax a, uintmax b, int rsize, int rsigned)
195 || help_fixup(r, product, rsize, rsigned));