Home
last modified time | relevance | path

Searched refs:BufSize (Results 1 – 12 of 12) sorted by relevance

/external/clang/unittests/libclang/
DLibclangTest.cpp62 unsigned BufSize; in ~TestVFO() local
63 clang_VirtualFileOverlay_writeToBuffer(VFO, 0, &BufPtr, &BufSize); in ~TestVFO()
64 std::string BufStr(BufPtr, BufSize); in ~TestVFO()
344 unsigned BufSize; in TEST() local
345 clang_ModuleMapDescriptor_writeToBuffer(MMD, 0, &BufPtr, &BufSize); in TEST()
346 std::string BufStr(BufPtr, BufSize); in TEST()
/external/lzma/CPP/7zip/Common/
DFileStreams.cpp39 BufSize(0), in CInFileStream()
81 if (BufSize > 0 && BufStartPos == alignedPos) in Read()
84 if (pos >= BufSize) in Read()
86 UInt32 rem = MyMin(BufSize - pos, size); in Read()
131 bool result = File.Read1(Buf, readSize, BufSize); in Read()
135 if (BufSize == 0) in Read()
137 PhyPos += BufSize; in Read()
DFileStreams.h52 UInt32 BufSize; variable
/external/webrtc/webrtc/test/channel_transport/
Dtraffic_control_win.h31 HANDLE SubCode, ULONG BufSize, PVOID Buffer);
Dtraffic_control_win.cc247 HANDLE SubCode, ULONG BufSize, PVOID Buffer) in MyClNotifyHandler() argument
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DPath.cpp931 const size_t BufSize = 4096; in copy_file_internal() local
932 char *Buf = new char[BufSize]; in copy_file_internal()
935 BytesRead = read(ReadFD, Buf, BufSize); in copy_file_internal()
987 constexpr size_t BufSize = 4096; in md5_contents() local
988 std::vector<uint8_t> Buf(BufSize); in md5_contents()
991 BytesRead = read(FD, Buf.data(), BufSize); in md5_contents()
/external/llvm/lib/Support/
DPath.cpp903 const size_t BufSize = 4096; in copy_file() local
904 char *Buf = new char[BufSize]; in copy_file()
907 BytesRead = read(ReadFD, Buf, BufSize); in copy_file()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DPath.cpp905 const size_t BufSize = 4096; in copy_file() local
906 char *Buf = new char[BufSize]; in copy_file()
909 BytesRead = read(ReadFD, Buf, BufSize); in copy_file()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
Dllvm-objcopy.cpp455 auto BufSize = Buf->getBufferSize(); in HandleArgs() local
457 ArrayRef<uint8_t>(BufPtr, BufSize)); in HandleArgs()
/external/mesa3d/src/imgui/
Dimgui_widgets.cpp3036 if (new_text_len + BufTextLen >= BufSize) in InsertChars()
3049 BufSize = edit_state->BufCapacityA = new_buf_size; in InsertChars()
3532 callback_data.BufSize = edit_state.BufCapacityA; in InputTextEx()
3546 IM_ASSERT(callback_data.BufSize == edit_state.BufCapacityA); in InputTextEx()
3582 callback_data.BufSize = ImMax(buf_size, apply_new_text_length + 1); in InputTextEx()
3586 buf_size = callback_data.BufSize; in InputTextEx()
Dimgui.h1434 …int BufSize; // Buffer size (in bytes) = capacity+1 // Read-only // [Re… member
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp2276 auto *BufSize = CGF.getTypeSize(CopyprivateArrayTy); in emitSingleRegion() local
2284 BufSize, // size_t <buf_size> in emitSingleRegion()