Lines Matching refs:bytes
133 size_t bytes; in array_size() local
135 if (check_mul_overflow(a, b, &bytes)) in array_size()
138 return bytes; in array_size()
155 size_t bytes; in array3_size() local
157 if (check_mul_overflow(a, b, &bytes)) in array3_size()
159 if (check_mul_overflow(bytes, c, &bytes)) in array3_size()
162 return bytes; in array3_size()
171 size_t bytes; in __ab_c_size() local
173 if (check_mul_overflow(a, b, &bytes)) in __ab_c_size()
175 if (check_add_overflow(bytes, c, &bytes)) in __ab_c_size()
178 return bytes; in __ab_c_size()