Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/builtins/
H A Dos_version_check.c161 size_t NumRead = fread(PListBuf, 1, (size_t)PListFileSize, PropertyList); in parseSystemVersionPList() local
162 if (NumRead != (size_t)PListFileSize) in parseSystemVersionPList()
168 NULL, PListBuf, (CFIndex)NumRead, AllocatorNull); in parseSystemVersionPList()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DMemoryBuffer.cpp473 ssize_t NumRead = sys::RetryAfterSignal(-1, ::pread, FD, BufPtr, BytesLeft, in getOpenFileImpl() local
476 ssize_t NumRead = sys::RetryAfterSignal(-1, ::read, FD, BufPtr, BytesLeft); in getOpenFileImpl()
478 if (NumRead == -1) { in getOpenFileImpl()
482 if (NumRead == 0) { in getOpenFileImpl()
486 BytesLeft -= NumRead; in getOpenFileImpl()
487 BufPtr += NumRead; in getOpenFileImpl()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp141 ssize_t NumRead = read(CmdLineFD, ExeName, PATH_MAX+1); in checkForOProfileProcEntry() local
150 while (Idx < NumRead-1 && ExeName[Idx] != 0) { in checkForOProfileProcEntry()