Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Host/common/
DFile.cpp476 #define MAX_READ_SIZE INT_MAX macro
483 #if defined(MAX_READ_SIZE) in Read()
484 if (num_bytes > MAX_READ_SIZE) { in Read()
492 if (bytes_left > MAX_READ_SIZE) in Read()
493 curr_num_bytes = MAX_READ_SIZE; in Read()
604 #if defined(MAX_READ_SIZE) in Read()
605 if (num_bytes > MAX_READ_SIZE) { in Read()
613 if (bytes_left > MAX_READ_SIZE) in Read()
614 curr_num_bytes = MAX_READ_SIZE; in Read()
/external/icu/icu4c/source/common/
Dputil.cpp878 #define MAX_READ_SIZE 512 macro
898 char bufferFile[MAX_READ_SIZE]; in compareBinaryFiles()
931 uprv_memset(bufferFile, 0, MAX_READ_SIZE); in compareBinaryFiles()
932 sizeFileToRead = sizeFileLeft < MAX_READ_SIZE ? sizeFileLeft : MAX_READ_SIZE; in compareBinaryFiles()