Lines Matching refs:bytes
218 size_t bytes; in array_size() local
220 if (check_mul_overflow(a, b, &bytes)) in array_size()
223 return bytes; in array_size()
240 size_t bytes; in array3_size() local
242 if (check_mul_overflow(a, b, &bytes)) in array3_size()
244 if (check_mul_overflow(bytes, c, &bytes)) in array3_size()
247 return bytes; in array3_size()
252 size_t bytes; in __ab_c_size() local
254 if (check_mul_overflow(n, size, &bytes)) in __ab_c_size()
256 if (check_add_overflow(bytes, c, &bytes)) in __ab_c_size()
259 return bytes; in __ab_c_size()