Lines Matching defs:count
202 __errordecl(__read_count_toobig_error, "read called with count > SSIZE_MAX");
208 ssize_t read(int fd, void* buf, size_t count) {
212 if (__builtin_constant_p(count) && (count > SSIZE_MAX)) {
217 return __read_real(fd, buf, count);
220 if (__builtin_constant_p(count) && (count > bos)) {
224 if (__builtin_constant_p(count) && (count <= bos)) {
225 return __read_real(fd, buf, count);
229 return __read_chk(fd, buf, count, bos);