HomeSort by relevance Sort by last modified time
    Searched defs:_pos (Results 1 - 25 of 49) sorted by null

1 2

  /frameworks/compile/libbcc/bcinfo/include/bcinfo/Wrap/
in_memory_wrapper_input.h 47 size_t _pos; member in class:InMemoryWrapperInput
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.h 15 UInt64 _pos; member in class:CMultiStream
44 _pos = 0;
  /external/lzma/CPP/7zip/Archive/7z/
7zFolderInStream.h 23 UInt64 _pos; member in class:NArchive::N7z::CFolderInStream
7zDecode.cpp 140 UInt64 _pos; member in class:NArchive::N7z::CLockedSequentialInStreamMT
147 _pos = startPos;
159 if (_pos != _glob->Pos)
161 RINOK(_glob->Stream->Seek(_pos, STREAM_SEEK_SET, NULL));
162 _glob->Pos = _pos;
167 _pos += realProcessedSize;
168 _glob->Pos = _pos;
184 UInt64 _pos; member in class:NArchive::N7z::CLockedSequentialInStreamST
191 _pos = startPos;
201 if (_pos != _glob->Pos)
    [all...]
7zOut.h 21 size_t _pos; member in class:NArchive::N7z::CWriteBufferLoc
23 CWriteBufferLoc(): _size(0), _pos(0) {}
28 _pos = 0;
34 if (size > _size - _pos)
36 memcpy(_data + _pos, data, size);
37 _pos += size;
41 if (_size == _pos)
43 _data[_pos++] = b;
45 size_t GetPos() const { return _pos; }
7zIn.h 296 size_t _pos; member in struct:NArchive::N7z::CInByte2
298 size_t GetRem() const { return _size - _pos; }
299 const Byte *GetPtr() const { return _buffer + _pos; }
304 _pos = 0;
308 void SkipDataNoCheck(UInt64 size) { _pos += (size_t)size; }
312 void SkipRem() { _pos = _size; }
355 _inByteBack->_pos += _inByteVector[_numInByteBufs]._pos;
  /external/lzma/CPP/7zip/Common/
OutBuffer.h 21 UInt32 _pos; member in class:COutBuffer
36 COutBuffer(): _buf(0), _pos(0), _stream(0), _buf2(0) {}
50 _buf[_pos++] = b;
51 if (_pos == _limitPos)
StreamObjects.h 16 UInt64 _pos; member in class:CBufferInStream
19 void Init() { _pos = 0; }
40 UInt64 _pos; member in class:CBufInStream
48 _pos = 0;
103 size_t _pos; member in class:CBufPtrSeqOutStream
108 _pos = 0;
111 size_t GetPos() const { return _pos; }
142 UInt64 _pos; member in class:CCachedInStream
LimitedStreams.h 17 UInt64 _pos; member in class:CLimitedSequentialInStream
25 _pos = 0;
32 UInt64 GetSize() const { return _pos; }
33 UInt64 GetRem() const { return _size - _pos; }
  /external/lzma/CS/7zip/Compress/LZ/
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 - _streamPos;
    [all...]
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 + index]; }
    [all...]
  /external/lzma/CPP/Common/
DynamicBuffer.h 10 size_t _pos; member in class:CDynamicBuffer
29 if (_pos != 0)
30 memcpy(newBuffer, _items, _pos * sizeof(T));
37 CDynamicBuffer(): _items(0), _size(0), _pos(0) {}
44 size_t rem = _size - _pos;
47 T *res = _items + _pos;
48 _pos += addSize;
57 const size_t GetPos() const { return _pos; }
59 // void Empty() { _pos = 0; }
  /external/lzma/Java/SevenZip/Compression/LZ/
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 >= _windowSize)
    [all...]
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 + index]; }
    [all...]
  /external/opencv/cv/src/
_cvlist.h 63 struct _pos struct
70 typedef struct _pos CVPOS;
  /external/flatbuffers/net/FlatBuffers/
ByteBuffer.cs 42 private int _pos; // Must track start of the buffer. field in class:FlatBuffers.ByteBuffer
53 _pos = pos;
57 get { return _pos; }
58 set { _pos = value; }
63 _pos = 0;
  /external/icu/icu4c/source/common/
servls.cpp 160 int32_t _pos; member in class:ServiceEnumeration
167 , _pos(0)
176 , _pos(0)
187 _pos = other._pos;
230 if (upToDate(status) && (_pos < _ids.size())) {
231 return (const UnicodeString*)_ids[_pos++];
242 _pos = 0;
  /external/flatbuffers/php/
ByteBuffer.php 28 * @var int $_pos;
30 private $_pos; variable
66 return $this->_pos;
74 $this->_pos = $pos; variable
82 $this->_pos = 0; variable
98 return substr($this->_buffer, $this->_pos);
342 for ($i = $this->_pos, $j = 0; $j < strlen($buffer); $i++, $j++) {
  /device/linaro/bootloader/edk2/StdLib/Include/
stdio.h 184 __off_t _pos; member in struct:__sfpos
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseIterators.java 1980 int _pos; field in class:DTMDefaultBaseIterators.NthDescendantIterator
    [all...]
  /external/lzma/CPP/7zip/UI/FileManager/
ExtractCallback.h 101 size_t _pos; member in class:CVirtFileSystem
143 size_t GetMemStreamWrittenSize() const { return _pos; }
151 _pos = 0;
158 size_t GetPos() const { return _pos; }
  /external/lzma/Java/SevenZip/
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/flatbuffers/samples/
monster_generated.h 486 auto _pos = _o->pos ? _o->pos.get() : 0; local
497 _pos,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
libio.h 191 /* If _pos >= 0
192 it points to _buf->Gbase()+_pos. FIXME comment */
193 /* if _pos < 0, it points to _buf->eBptr()+_pos. FIXME comment */
194 int _pos; member in struct:_IO_marker
197 void set_offset(int offset) { _pos = offset; _spos = (streampos)(-2); }
  /external/flatbuffers/tests/
monster_test_generated.h 1652 auto _pos = _o->pos ? _o->pos.get() : 0; local
    [all...]

Completed in 1200 milliseconds

1 2