Home
last modified time | relevance | path

Searched refs:to_fetch (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/libc/src/__support/File/
H A Dfile.cpp236 size_t to_fetch = len - available_data; in read_unlocked_fbf() local
238 to_fetch); in read_unlocked_fbf()
240 if (to_fetch > bufsize) { in read_unlocked_fbf()
241 FileIOResult result = platform_read(this, dataref.data(), to_fetch); in read_unlocked_fbf()
243 if (result.has_error() || fetched_size < to_fetch) { in read_unlocked_fbf()
257 size_t transfer_size = fetched_size >= to_fetch ? to_fetch : fetched_size; in read_unlocked_fbf()
261 if (result.has_error() || fetched_size < to_fetch) { in read_unlocked_fbf()