Searched refs:NumRead (Results 1 – 3 of 3) sorted by relevance
| /minix3/external/bsd/llvm/dist/llvm/utils/count/ |
| H A D | count.c | 14 unsigned Count, NumLines, NumRead; in main() local 32 NumRead = fread(Buffer, 1, sizeof(Buffer), stdin); in main() 34 for (i = 0; i != NumRead; ++i) in main() 37 } while (NumRead == sizeof(Buffer)); in main()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Support/ |
| H A D | MemoryBuffer.cpp | 386 ssize_t NumRead = ::pread(FD, BufPtr, BytesLeft, MapSize-BytesLeft+Offset); in getOpenFileImpl() local 388 ssize_t NumRead = ::read(FD, BufPtr, BytesLeft); in getOpenFileImpl() 390 if (NumRead == -1) { in getOpenFileImpl() 396 if (NumRead == 0) { in getOpenFileImpl() 400 BytesLeft -= NumRead; in getOpenFileImpl() 401 BufPtr += NumRead; in getOpenFileImpl()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/OProfileJIT/ |
| H A D | OProfileWrapper.cpp | 141 ssize_t NumRead = read(CmdLineFD, ExeName, PATH_MAX+1); in checkForOProfileProcEntry() local 150 while (Idx < NumRead-1 && ExeName[Idx] != 0) { in checkForOProfileProcEntry()
|