Lines Matching refs:size_t

116   size_t size = n_operands;  in input_from_argv()
171 static size_t
172 read_input_reservoir_sampling (FILE *in, char eolbyte, size_t k, in read_input_reservoir_sampling()
177 size_t n_alloc_lines = MIN (k, RESERVOIR_LINES_INCREMENT); in read_input_reservoir_sampling()
237 write_permuted_output_reservoir (size_t n_lines, struct linebuffer *lines, in write_permuted_output_reservoir()
238 size_t const *permutation) in write_permuted_output_reservoir()
240 for (size_t i = 0; i < n_lines; i++) in write_permuted_output_reservoir()
256 static size_t
261 size_t used; in read_input()
264 size_t n_lines; in read_input()
290 for (size_t i = 1; i <= n_lines; i++) in read_input()
301 write_permuted_lines (size_t n_lines, char *const *line, in write_permuted_lines()
302 size_t const *permutation) in write_permuted_lines()
304 for (size_t i = 0; i < n_lines; i++) in write_permuted_lines()
307 size_t len = p[1] - p[0]; in write_permuted_lines()
318 write_permuted_numbers (size_t n_lines, size_t lo_input, in write_permuted_numbers()
319 size_t const *permutation, char eolbyte) in write_permuted_numbers()
321 for (size_t i = 0; i < n_lines; i++) in write_permuted_numbers()
334 write_random_numbers (struct randint_source *s, size_t count, in write_random_numbers()
335 size_t lo_input, size_t hi_input, char eolbyte) in write_random_numbers()
339 for (size_t i = 0; i < count; i++) in write_random_numbers()
353 write_random_lines (struct randint_source *s, size_t count, in write_random_lines()
354 char *const *lines, size_t n_lines) in write_random_lines()
356 for (size_t i = 0; i < count; i++) in write_random_lines()
360 size_t len = p[1] - p[0]; in write_random_lines()
373 size_t lo_input = SIZE_MAX; in main()
374 size_t hi_input = 0; in main()
375 size_t head_lines = SIZE_MAX; in main()
386 size_t n_lines; in main()
390 size_t *permutation = nullptr; in main()
541 size_t ahead_lines = repeat || head_lines < n_lines ? head_lines : n_lines; in main()