Lines Matching refs:n
117 int n; in strip() local
119 n = strspn(str, " \t"); in strip()
120 str += n; in strip()
121 n = strcspn(str, " \t"); in strip()
122 str[n] = '\0'; in strip()
187 size_t n = 0; in bulk_read() local
189 while (n < length) { in bulk_read()
190 size_t to_read = (length - n > READ_BUF_SIZE) ? READ_BUF_SIZE : length - n; in bulk_read()
191 ret = TEMP_FAILURE_RETRY(read(bulk_out, buf + n, to_read)); in bulk_read()
197 n += ret; in bulk_read()
200 ret, to_read, n, length); in bulk_read()
205 return n; in bulk_read()