Home
last modified time | relevance | path

Searched refs:_tempBuf (Results 1 – 13 of 13) sorted by relevance

/dports/archivers/7-zip/7-zip-21.07/CPP/7zip/Archive/Cab/
H A DCabIn.cpp43 s.SetFrom((const char *)(const Byte *)_tempBuf, (unsigned)i); in ReadName()
46 if (_tempBuf.Size() == i) in ReadName()
47 _tempBuf.ChangeSize_KeepData(i * 2, i); in ReadName()
48 _tempBuf[i] = b; in ReadName()
272 if (_tempBuf.Size() == 0) in Open2()
273 _tempBuf.Alloc(1 << 12); in Open2()
H A DCabIn.h157 CByteBuffer _tempBuf; variable
/dports/archivers/maxcso/maxcso-1.10.0/7zip/CPP/7zip/Archive/Cab/
H A DCabIn.cpp43 s.SetFrom((const char *)(const Byte *)_tempBuf, (unsigned)i); in ReadName()
46 if (_tempBuf.Size() == i) in ReadName()
47 _tempBuf.ChangeSize_KeepData(i * 2, i); in ReadName()
48 _tempBuf[i] = b; in ReadName()
272 if (_tempBuf.Size() == 0) in Open2()
273 _tempBuf.Alloc(1 << 12); in Open2()
H A DCabIn.h157 CByteBuffer _tempBuf; variable
/dports/deskutils/akregator/akregator-21.12.3/plugins/mk4storage/metakit/src/
H A Dviewx.cpp19 , _tempBuf(nullptr) in c4_Sequence()
31 delete _tempBuf; in ~c4_Sequence()
147 if (_tempBuf == nullptr) { in Buffer()
148 _tempBuf = d4_new c4_Bytes; in Buffer()
150 return *_tempBuf; in Buffer()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Ports/src/System/IO/Ports/
H A DSerialStream.cs58 … private byte[] _tempBuf; // used to avoid multiple array allocations in ReadByte() field in System.IO.Ports.SerialStream
624 _tempBuf = new byte[1]; // used in ReadByte() in SerialStream()
1103 IAsyncResult result = BeginReadCore(_tempBuf, 0, 1, null, null); in ReadByte()
1109 numBytes = ReadFileNative(_tempBuf, 0, 1, null, out hr); in ReadByte()
1119 return _tempBuf[0]; in ReadByte()
1205 _tempBuf[0] = value; in WriteByte()
1212 IAsyncResult result = BeginWriteCore(_tempBuf, 0, 1, null, null); in WriteByte()
1221 numBytes = WriteFileNative(_tempBuf, 0, 1, null, out hr); in WriteByte()
/dports/graphics/opencv/opencv-4.5.3/3rdparty/carotene/src/
H A Dscharr.cpp91 std::vector<s16> _tempBuf((delta << 1) + 64); in ScharrDeriv() local
92 …s16 *trow0 = internal::alignPtr(&_tempBuf[cn], 16), *trow1 = internal::alignPtr(trow0 + delta, 16); in ScharrDeriv()
H A Dsobel.cpp106 std::vector<f32> _tempBuf((delta << 1) + 64); in Sobel3x3() local
107 … f32 *trow0 = internal::alignPtr(&_tempBuf[1], 32), *trow1 = internal::alignPtr(trow0 + delta, 32); in Sobel3x3()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/optflow/src/rlof/
H A Drlof_localflow.cpp29 AutoBuffer<deriv_type> _tempBuf(delta * 2 + 64); in calcSharrDeriv() local
30 deriv_type *trow0 = alignPtr(_tempBuf.data() + cn, 16), *trow1 = alignPtr(trow0 + delta, 16); in calcSharrDeriv()
/dports/archivers/7-zip/7-zip-21.07/CPP/7zip/Archive/Rar/
H A DRar5Handler.cpp998 CByteBuffer _tempBuf; member
1196 _tempBuf.AllocAtLeast((size_t)item.Size); in DecodeToBuf()
1197 outSpec->Init(_tempBuf, (size_t)item.Size); in DecodeToBuf()
1223 buffer.CopyFrom(_tempBuf, (size_t)item.Size); in DecodeToBuf()
/dports/archivers/maxcso/maxcso-1.10.0/7zip/CPP/7zip/Archive/Rar/
H A DRar5Handler.cpp1032 CByteBuffer _tempBuf; member
1226 _tempBuf.AllocAtLeast((size_t)item.Size); in DecodeToBuf()
1227 outSpec->Init(_tempBuf, (size_t)item.Size); in DecodeToBuf()
1253 buffer.CopyFrom(_tempBuf, (size_t)item.Size); in DecodeToBuf()
/dports/deskutils/akregator/akregator-21.12.3/plugins/mk4storage/metakit/include/
H A Dmk4.h861 c4_Bytes *_tempBuf; variable
/dports/graphics/opencv/opencv-4.5.3/modules/video/src/
H A Dlkpyramid.cpp76 AutoBuffer<deriv_type> _tempBuf(delta*2 + 64); in operator ()() local
77 deriv_type *trow0 = alignPtr(_tempBuf.data() + cn, 16), *trow1 = alignPtr(trow0 + delta, 16); in operator ()()