Searched refs:BufSize (Results 1 - 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_x86_64.cpp57 static constexpr size_t BufSize = 256; variable
58 char Line[BufSize] = {};
61 std::tie(BytesRead, Success) = retryingReadSome(Fd, Line, Line + BufSize);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileOutputBuffer.cpp78 InMemoryBuffer(StringRef Path, MemoryBlock Buf, std::size_t BufSize, argument
80 : FileOutputBuffer(Path), Buffer(Buf), BufferSize(BufSize),
H A DPath.cpp963 const size_t BufSize = 4096;
964 char *Buf = new char[BufSize];
967 BytesRead = read(ReadFD, Buf, BufSize);
1021 constexpr size_t BufSize = 4096;
1022 std::vector<uint8_t> Buf(BufSize);
1025 BytesRead = read(FD, Buf.data(), BufSize);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc472 size_t BufSize = 2048u;
476 Buf = std::make_unique<char[]>(BufSize);
477 Ret = mntctl(MCTL_QUERY, BufSize, Buf.get());
480 BufSize = *reinterpret_cast<unsigned int *>(Buf.get());
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeNVPTX.cpp236 &MappedDeclsFields, int BufSize) {
285 llvm::APInt ArraySize(32, BufSize);
232 buildRecordForGlobalizedVars( ASTContext &C, ArrayRef<const ValueDecl *> EscapedDecls, ArrayRef<const ValueDecl *> EscapedDeclsForTeams, llvm::SmallDenseMap<const ValueDecl *, const FieldDecl *> &MappedDeclsFields, int BufSize) argument
H A DCGOpenMPRuntime.cpp3445 llvm::Value *BufSize = CGF.getTypeSize(CopyprivateArrayTy); local
3453 BufSize, // size_t <buf_size>

Completed in 123 milliseconds