Home
last modified time | relevance | path

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

/third_party/lzma/CPP/7zip/Common/
DFileStreams.cpp56 BufSize(0), in CInFileStream()
105 if (BufSize > 0 && BufStartPos == alignedPos) in Read()
108 if (pos >= BufSize) in Read()
110 UInt32 rem = MyMin(BufSize - pos, size); in Read()
155 bool result = File.Read1(Buf, readSize, BufSize); in Read()
159 if (BufSize == 0) in Read()
161 PhyPos += BufSize; in Read()
DFileStreams.h45 UInt32 BufSize; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DFileOutputBuffer.cpp78 InMemoryBuffer(StringRef Path, MemoryBlock Buf, std::size_t BufSize, in InMemoryBuffer() argument
80 : FileOutputBuffer(Path), Buffer(Buf), BufferSize(BufSize), in InMemoryBuffer()
DPath.cpp963 const size_t BufSize = 4096; in copy_file_internal() local
964 char *Buf = new char[BufSize]; in copy_file_internal()
967 BytesRead = read(ReadFD, Buf, BufSize); in copy_file_internal()
1021 constexpr size_t BufSize = 4096; in md5_contents() local
1022 std::vector<uint8_t> Buf(BufSize); in md5_contents()
1025 BytesRead = read(FD, Buf.data(), BufSize); in md5_contents()
/third_party/ffmpeg/libavcodec/
Dqsvenc_h264.c66 payload->BufSize = sei_size + 2; in qsv_h264_set_encode_ctrl()
67 payload->NumBit = payload->BufSize * 8; in qsv_h264_set_encode_ctrl()
/third_party/zlib/contrib/delphi/
DZLib.pas152 const OutBuf: Pointer; BufSize: Integer);
367 const OutBuf: Pointer; BufSize: Integer);
377 strm.avail_out := BufSize;
/third_party/skia/third_party/externals/libjpeg-turbo/gtest/
Dtjunittest-gtest-wrapper.cpp140 TEST_P(TJUnitTest, BufSize) { in TEST_P() argument
/third_party/skia/third_party/externals/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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DPath.inc477 size_t BufSize = 2048u;
481 Buf = std::make_unique<char[]>(BufSize);
482 Ret = mntctl(MCTL_QUERY, BufSize, Buf.get());
485 BufSize = *reinterpret_cast<unsigned int *>(Buf.get());
/third_party/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
/third_party/skia/third_party/externals/imgui/
Dimgui_widgets.cpp3820 if (new_text_len + BufTextLen >= BufSize) in InsertChars()
3833 BufSize = edit_state->BufCapacityA = new_buf_size; in InsertChars()
4458 callback_data.BufSize = state->BufCapacityA; in InputTextEx()
4472 IM_ASSERT(callback_data.BufSize == state->BufCapacityA); in InputTextEx()
4512 callback_data.BufSize = ImMax(buf_size, apply_new_text_length + 1); in InputTextEx()
4516 buf_size = callback_data.BufSize; in InputTextEx()
Dimgui.h1981 …int BufSize; // Buffer size (in bytes) = capacity+1 // Read-only // [Re… member
Dimgui_demo.cpp1401 …my_str->resize(data->BufSize); // NB: On resizing calls, generally data->BufSize == data->BufTextL… in ShowDemoWindowWidgets()