Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libc/src/__support/File/
H A Dfile.cpp206 size_t to_fetch = len - available_data; in read_unlocked() local
207 if (to_fetch > bufsize) { in read_unlocked()
208 size_t fetched_size = platform_read(this, data, to_fetch); in read_unlocked()
209 if (fetched_size < to_fetch) { in read_unlocked()
222 size_t transfer_size = fetched_size >= to_fetch ? to_fetch : fetched_size; in read_unlocked()
226 if (fetched_size < to_fetch) { in read_unlocked()