Searched refs:ReadBytes (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | linux.cpp | 182 ssize_t ReadBytes; in getRandom() 188 ReadBytes = in getRandom() 190 if (ReadBytes == static_cast<ssize_t>(Length)) in getRandom() 198 ReadBytes = read(FileDesc, Buffer, Length); 200 return (ReadBytes == static_cast<ssize_t>(Length)); in GetRSSFromBuffer() 175 ssize_t ReadBytes; getRandom() local
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPrintfRuntimeBinding.cpp | 368 uint64_t ReadBytes = 0; in lowerPrintfForGpu() local 372 ReadBytes = Extractor.getU8(Offset); in lowerPrintfForGpu() 375 ReadBytes = Extractor.getU16(Offset); in lowerPrintfForGpu() 378 ReadBytes = Extractor.getU24(Offset); in lowerPrintfForGpu() 381 ReadBytes = Extractor.getU32(Offset); in lowerPrintfForGpu() 388 APInt IntVal(8 * ReadSize, ReadBytes); in lowerPrintfForGpu()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | AMDGPUEmitPrintf.cpp | 319 uint64_t ReadBytes = 0; in processConstantStringArg() local 324 ReadBytes = Extractor.getU8(Offset); in processConstantStringArg() 327 ReadBytes = Extractor.getU16(Offset); in processConstantStringArg() 330 ReadBytes = Extractor.getU24(Offset); in processConstantStringArg() 333 ReadBytes = Extractor.getU32(Offset); in processConstantStringArg() 338 APInt IntVal(8 * ReadSize, ReadBytes); in processConstantStringArg()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | MemoryBuffer.cpp | 523 Expected<size_t> ReadBytes = in getOpenFileImpl() local 525 if (!ReadBytes) in getOpenFileImpl() 526 return errorToErrorCode(ReadBytes.takeError()); in getOpenFileImpl() 527 if (*ReadBytes == 0) { in getOpenFileImpl() 531 ToRead = ToRead.drop_front(*ReadBytes); in getOpenFileImpl() 532 Offset += *ReadBytes; in getOpenFileImpl()
|
H A D | Path.cpp | 1184 Expected<size_t> ReadBytes = readNativeFile( in readNativeFileToEOF() local 1186 if (!ReadBytes) in readNativeFileToEOF() 1187 return ReadBytes.takeError(); in readNativeFileToEOF() 1188 if (*ReadBytes == 0) in readNativeFileToEOF() 1190 Size += *ReadBytes; in readNativeFileToEOF()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Address.cpp | 63 static size_t ReadBytes(ExecutionContextScope *exe_scope, in ReadBytes() function 113 success = ReadBytes(exe_scope, address, &buf, byte_size) == byte_size; in ReadUIntMax64() 170 if (ReadBytes(exe_scope, address, &buf[0], buf.size()) == buf.size()) { in DumpUInt() 206 while ((bytes_read = ReadBytes(exe_scope, curr_address, buf, k_buf_len)) > in ReadCStringFromMemory()
|