OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_convpos
(Results
1 - 2
of
2
) sorted by null
/external/lzma/CPP/7zip/Common/
FilterCoder.cpp
166
HRESULT res = _outStream->Write(_buf +
_convPos
, num, &processed);
170
_convPos
+= processed;
176
if (
_convPos
!= 0)
178
UInt32 num = _bufPos -
_convPos
;
180
_buf[i] = _buf[
_convPos
+ i];
182
_convPos
= 0;
198
//
_convPos
is 0
325
memcpy(data, _buf +
_convPos
, size);
326
_convPos
+= size;
334
if (
_convPos
!= 0)
[
all
...]
FilterCoder.h
102
UInt32
_convPos
; // current pos in buffer for converted data
103
UInt32 _convSize; // size of converted data starting from
_convPos
108
_convPos
= 0;
Completed in 91 milliseconds