Lines Matching refs:length

170              uintmax_t length);
243 md5_sum_stream (FILE *stream, void *resstream, uintmax_t *length) in md5_sum_stream() argument
248 sha1_sum_stream (FILE *stream, void *resstream, uintmax_t *length) in sha1_sum_stream() argument
253 sha224_sum_stream (FILE *stream, void *resstream, uintmax_t *length) in sha224_sum_stream() argument
258 sha256_sum_stream (FILE *stream, void *resstream, uintmax_t *length) in sha256_sum_stream() argument
263 sha384_sum_stream (FILE *stream, void *resstream, uintmax_t *length) in sha384_sum_stream() argument
268 sha512_sum_stream (FILE *stream, void *resstream, uintmax_t *length) in sha512_sum_stream() argument
273 blake2b_sum_stream (FILE *stream, void *resstream, uintmax_t *length) in blake2b_sum_stream() argument
275 return blake2b_stream (stream, resstream, *length); in blake2b_sum_stream()
278 sm3_sum_stream (FILE *stream, void *resstream, uintmax_t *length) in sm3_sum_stream() argument
571 size_t length = strcspn (s, "\\\n\r"); in problematic_chars() local
572 return s[length] != '\0'; in problematic_chars()
819 uintmax_t length; in split_3() local
821 if (! (xstrtoumax (s + i, &siend, 0, &length, nullptr) == LONGINT_OK in split_3()
822 && 0 < length && length <= digest_length in split_3()
823 && length % 8 == 0)) in split_3()
827 digest_length = length; in split_3()
965 bool *missing, MAYBE_UNUSED uintmax_t *length) in digest_file() argument
1004 *length = digest_length / 8; in digest_file()
1005 err = DIGEST_STREAM (fp, bin_result, length); in digest_file()
1007 err = DIGEST_STREAM (fp, bin_result, length); in digest_file()
1032 MAYBE_UNUSED uintmax_t length) in output_file() argument
1222 uintmax_t length; in digest_check() local
1223 ok = digest_file (filename, &binary, bin_buffer, &missing, &length); in digest_check()
1612 uintmax_t length; in main() local
1614 if (! digest_file (file, &binary_file, bin_buffer, &missing, &length)) in main()
1619 digest_delim, optind != argc, length); in main()