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

/external/llvm/utils/count/
H A Dcount.c14 unsigned Count, NumLines, NumRead; local
32 NumRead = fread(Buffer, 1, sizeof(Buffer), stdin);
34 for (i = 0; i != NumRead; ++i)
37 } while (NumRead == sizeof(Buffer));
/external/llvm/lib/Support/
H A DMemoryBuffer.cpp368 ssize_t NumRead = ::pread(FD, BufPtr, BytesLeft, MapSize-BytesLeft+Offset); local
370 ssize_t NumRead = ::read(FD, BufPtr, BytesLeft);
372 if (NumRead == -1) {
378 if (NumRead == 0) {
382 BytesLeft -= NumRead;
383 BufPtr += NumRead;
/external/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp141 ssize_t NumRead = read(CmdLineFD, ExeName, PATH_MAX+1); local
150 while (Idx < NumRead-1 && ExeName[Idx] != 0) {

Completed in 177 milliseconds