/external/lzma/CPP/7zip/Archive/Common/ |
H A D | MultiStream.h | 15 UInt64 _pos;
member in class:CMultiStream 39 _pos = 0;
|
/external/lzma/CPP/7zip/Common/ |
H A D | LockedStream.h | 25 UInt64 _pos;
member in class:CLockedSequentialInStreamImp 30 _pos = startPos;
|
H A D | OutBuffer.h | 21 UInt32 _pos;
member in class:COutBuffer 36 COutBuffer(): _buffer(0), _pos(0), _stream(0), _buffer2(0) {}
51 _buffer[_pos++] = b;
52 if(_pos == _limitPos)
|
H A D | LimitedStreams.h | 16 UInt64 _pos;
member in class:CLimitedSequentialInStream 24 _pos = 0;
31 UInt64 GetSize() const { return _pos; }
|
H A D | StreamObjects.h | 23 UInt64 _pos;
member in class:CBufInStream 31 _pos = 0;
81 size_t _pos;
member in class:CBufPtrSeqOutStream 86 _pos = 0;
89 size_t GetPos() const { return _pos; }
120 UInt64 _pos;
member in class:CCachedInStream
|
/external/icu/icu4c/source/i18n/ |
H A D | fphdlimp.cpp | 39 FieldPositionOnlyHandler::FieldPositionOnlyHandler(FieldPosition& _pos) argument 40 : pos(_pos) {
|
H A D | nfsubs.cpp | 74 MultiplierSubstitution(int32_t _pos, argument 80 : NFSubstitution(_pos, _ruleSet, formatter, description, status), divisor(_divisor) 186 IntegralPartSubstitution(int32_t _pos, argument 191 : NFSubstitution(_pos, _ruleSet, formatter, description, status) {} 222 virtual void doSubstitution(int64_t /*number*/, UnicodeString& /*toInsertInto*/, int32_t /*_pos*/, UErrorCode& /*status*/) const {} 246 AbsoluteValueSubstitution(int32_t _pos, argument 251 : NFSubstitution(_pos, _ruleSet, formatter, description, status) {} 279 NumeratorSubstitution(int32_t _pos, argument 285 : NFSubstitution(_pos, _ruleSet, formatter, fixdesc(description), status), denominator(_denominator) 297 virtual void doSubstitution(int64_t /*number*/, UnicodeString& /*toInsertInto*/, int32_t /*_pos*/, UErrorCod 321 NullSubstitution(int32_t _pos, const NFRuleSet* _ruleSet, const RuleBasedNumberFormat* formatter, const UnicodeString& description, UErrorCode& status) argument 442 NFSubstitution(int32_t _pos, const NFRuleSet* _ruleSet, const RuleBasedNumberFormat* formatter, const UnicodeString& description, UErrorCode& status) argument 605 doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t _pos, UErrorCode& status) const argument 639 doSubstitution(double number, UnicodeString& toInsertInto, int32_t _pos, UErrorCode& status) const argument 806 SameValueSubstitution(int32_t _pos, const NFRuleSet* _ruleSet, const RuleBasedNumberFormat* formatter, const UnicodeString& description, UErrorCode& status) argument 843 ModulusSubstitution(int32_t _pos, double _divisor, const NFRule* predecessor, const NFRuleSet* _ruleSet, const RuleBasedNumberFormat* formatter, const UnicodeString& description, UErrorCode& status) argument 897 doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t _pos, UErrorCode& status) const argument 922 doSubstitution(double number, UnicodeString& toInsertInto, int32_t _pos, UErrorCode& status) const argument 1021 FractionalPartSubstitution(int32_t _pos, const NFRuleSet* _ruleSet, const RuleBasedNumberFormat* formatter, const UnicodeString& description, UErrorCode& status) argument 1060 doSubstitution(double number, UnicodeString& toInsertInto, int32_t _pos, UErrorCode& status) const argument [all...] |
/external/lzma/CS/7zip/Compress/LZ/ |
H A D | LzOutWindow.cs | 8 uint _pos;
field in class:SevenZip.Compression.LZ.OutWindow 23 _pos = 0;
34 _pos = 0;
45 _streamPos = _pos = 0;
48 uint curSize = _windowSize - _pos;
51 int numReadBytes = stream.Read(_buffer, (int)_pos, (int)curSize);
55 _pos += (uint)numReadBytes;
57 if (_pos == _windowSize)
58 _streamPos = _pos = 0;
71 uint size = _pos [all...] |
H A D | LzInWindow.cs | 19 public UInt32 _pos; // offset (from _buffer) of curent byte
field in class:SevenZip.Compression.LZ.InWindow 20 UInt32 _keepSizeBefore; // how many BYTEs must be kept in buffer before _pos
21 UInt32 _keepSizeAfter; // how many BYTEs must be kept buffer after _pos
26 UInt32 offset = (UInt32)(_bufferOffset) + _pos - _keepSizeBefore;
60 if (_streamPos >= _pos + _keepSizeAfter)
87 _pos = 0;
95 _pos++;
96 if (_pos > _posLimit)
98 UInt32 pointerToPostion = _bufferOffset + _pos;
105 public Byte GetIndexByte(Int32 index) { return _bufferBase[_bufferOffset + _pos [all...] |
/external/lzma/Java/SevenZip/Compression/LZ/ |
H A D | OutWindow.java | 10 int _pos;
field in class:OutWindow 20 _pos = 0;
41 _pos = 0;
47 int size = _pos - _streamPos;
51 if (_pos >= _windowSize)
52 _pos = 0;
53 _streamPos = _pos;
58 int pos = _pos - distance - 1;
65 _buffer[_pos++] = _buffer[pos++];
66 if (_pos > [all...] |
H A D | InWindow.java | 19 public int _pos; // offset (from _buffer) of curent byte
field in class:InWindow 20 int _keepSizeBefore; // how many BYTEs must be kept in buffer before _pos
21 int _keepSizeAfter; // how many BYTEs must be kept buffer after _pos
26 int offset = _bufferOffset + _pos - _keepSizeBefore;
60 if (_streamPos >= _pos + _keepSizeAfter)
87 _pos = 0;
95 _pos++;
96 if (_pos > _posLimit)
98 int pointerToPostion = _bufferOffset + _pos;
105 public byte GetIndexByte(int index) { return _bufferBase[_bufferOffset + _pos [all...] |
/external/opencv/cv/src/ |
H A D | _cvlist.h | 63 struct _pos struct 70 typedef struct _pos CVPOS;
|
/external/lzma/CPP/7zip/Archive/7z/ |
H A D | 7zOut.h | 20 size_t _pos;
member in class:NArchive::N7z::CWriteBufferLoc 22 CWriteBufferLoc(): _size(0), _pos(0) {}
27 _pos = 0;
31 if (size > _size - _pos)
33 memcpy(_data + _pos, data, size);
34 _pos += size;
38 if (_size == _pos)
40 _data[_pos++] = b;
42 size_t GetPos() const { return _pos; }
|
H A D | 7zIn.h | 104 size_t _pos;
member in class:NArchive::N7z::CInByte2 109 _pos = 0;
|
/external/icu/icu4c/source/common/ |
H A D | servls.cpp | 158 int32_t _pos; member in class:ServiceEnumeration 165 , _pos(0) 174 , _pos(0) 185 _pos = other._pos; 228 if (upToDate(status) && (_pos < _ids.size())) { 229 return (const UnicodeString*)_ids[_pos++]; 240 _pos = 0;
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
H A D | DTMDefaultBaseIterators.java | 1980 int _pos; field in class:DTMDefaultBaseIterators.NthDescendantIterator 1990 _pos = pos; 2019 while ((pos < _pos) && (child = _nextsib(child)) != END);
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
H A D | MultiPartInputStream.java | 812 int _pos; field in class:MultiPartInputStream.Base64InputStream 823 if (_buffer==null || _pos>= _buffer.length) 845 _pos=0; 848 return _buffer[_pos++];
|
/external/lzma/Java/SevenZip/ |
H A D | LzmaBench.java | 144 int _pos;
field in class:LzmaBench.MyOutputStream 154 _pos = 0;
159 if (_pos >= _size)
161 _buffer[_pos++] = (byte)b;
166 return _pos;
174 int _pos;
field in class:LzmaBench.MyInputStream 184 _pos = 0;
189 if (_pos >= _size)
191 return _buffer[_pos++] & 0xFF;
|
/external/wpa_supplicant_8/wpa_supplicant/ |
H A D | config_file.c | 56 * @_pos: Buffer for the pointer to the beginning of data on the text line or 65 char **_pos) 115 if (_pos) 116 *_pos = pos; 120 if (_pos) 121 *_pos = NULL; 64 wpa_config_get_line(char *s, int size, FILE *stream, int *line, char **_pos) argument
|
/external/valgrind/perf/ |
H A D | test_input_for_tinycc.c | 5078 int _pos; member in struct:_IO_marker
|