Searched refs:_size (Results 26 - 50 of 119) sorted by relevance

12345

/external/lzma/CPP/7zip/Archive/7z/
H A D7zSpecStream.h17 UInt64 _size; member in class:CSequentialInStreamSizeCount2
24 _size = 0;
26 UInt64 GetSize() const { return _size; }
H A D7zSpecStream.cpp11 _size += realProcessedSize;
/external/lzma/CPP/7zip/Archive/Common/
H A DOutStreamWithCRC.h17 UInt64 _size; member in class:COutStreamWithCRC
27 _size = 0;
32 UInt64 GetSize() const { return _size; }
H A DInStreamWithCRC.h22 UInt64 _size; member in class:CSequentialInStreamWithCRC
29 _size = 0;
35 UInt64 GetSize() const { return _size; }
50 UInt64 _size; member in class:CInStreamWithCRC
57 _size = 0;
63 UInt64 GetSize() const { return _size; }
H A DDummyOutStream.cpp18 _size += realProcessedSize;
H A DOutStreamWithCRC.cpp14 _size += size;
H A DInStreamWithCRC.cpp11 _size += realProcessedSize;
28 _size += realProcessedSize;
39 _size = 0;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_memory_debug.h71 #define os_malloc( _size ) \
72 debug_malloc( __FILE__, __LINE__, __FUNCTION__, _size )
73 #define os_calloc( _count, _size ) \
74 debug_calloc(__FILE__, __LINE__, __FUNCTION__, _count, _size )
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprmem.h80 ** PR_NEW() allocates an untyped item of size _size from the heap.
81 ** INPUTS: _size: size in bytes of item to be allocated
100 ** PR_REALLOC() re-allocates _ptr bytes from the heap as a _size
103 ** _size: size of node to allocate
107 #define PR_REALLOC(_ptr, _size) (PR_Realloc((_ptr), (_size)))
112 ** PR_CALLOC() allocates a _size bytes untyped item from the heap
114 ** INPUTS: _size: size of node to allocate
118 #define PR_CALLOC(_size) (PR_Calloc(1, (_size)))
[all...]
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_memory_debug.h71 #define os_malloc( _size ) \
72 debug_malloc( __FILE__, __LINE__, __FUNCTION__, _size )
73 #define os_calloc( _count, _size ) \
74 debug_calloc(__FILE__, __LINE__, __FUNCTION__, _count, _size )
/external/lzma/CPP/7zip/Common/
H A DStreamObjects.h24 size_t _size; member in class:CBufInStream
30 _size = size;
61 size_t _size; member in class:CDynBufSeqOutStream
63 CDynBufSeqOutStream(): _size(0) {}
64 void Init() { _size = 0; }
65 size_t GetSize() const { return _size; }
69 void UpdateSize(size_t addSize) { _size += addSize; }
80 size_t _size; member in class:CBufPtrSeqOutStream
87 _size = size;
100 UInt64 _size; member in class:CSequentialOutStreamSizeCount
119 UInt64 _size; member in class:CCachedInStream
[all...]
H A DStreamObjects.cpp15 if (_pos > _size)
17 size_t rem = _size - (size_t)_pos;
33 case STREAM_SEEK_END: _pos = _size + offset; break;
70 addSize += _size;
71 if (addSize < _size)
75 return (Byte *)_buffer + _size;
80 dest.SetCapacity(_size);
81 memcpy(dest, _buffer, _size);
102 size_t rem = _size - _pos;
116 _size
[all...]
H A DLimitedStreams.cpp11 UInt32 sizeToRead = (UInt32)MyMin((_size - _pos), (UInt64)size);
29 if (_virtPos >= _size)
30 return (_virtPos == _size) ? S_OK: E_FAIL;
31 UInt64 rem = _size - _virtPos;
54 case STREAM_SEEK_END: _virtPos = _size + offset; break;
135 if (size > _size)
137 if (_size == 0)
146 size = (UInt32)_size;
150 _size -= size;
H A DInOutTempBuffer.h20 UInt64 _size; member in class:CInOutTempBuffer
33 UInt64 GetDataSize() const { return _size; }
H A DLimitedStreams.h15 UInt64 _size; member in class:CLimitedSequentialInStream
23 _size = streamSize;
42 UInt64 _size; member in class:CLimitedInStream
53 _size = size;
107 UInt64 _size; member in class:CLimitedSequentialOutStream
117 _size = size;
121 bool IsFinishedOK() const { return (_size == 0 && !_overflow); }
122 UInt64 GetRem() const { return _size; }
H A DInOutTempBuffer.cpp35 _size = 0;
58 _size += processed;
72 _size += cur;
96 while (size < _size)
108 return (_crc == crc && size == _size) ? S_OK : E_FAIL;
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_file_image.cc45 image_buffer._size = buffer_size;
50 image_buffer._buffer = new uint8_t[ image_buffer._size + 1];
51 if (image_buffer._size != fread(image_buffer._buffer, sizeof(uint8_t),
52 image_buffer._size, image_file)) {
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
H A Dtr_dump.h137 #define trace_dump_array(_type, _obj, _size) \
141 for(idx = 0; idx < (_size); ++idx) { \
149 #define trace_dump_struct_array(_type, _obj, _size) \
153 for(idx = 0; idx < (_size); ++idx) { \
168 #define trace_dump_arg_array(_type, _arg, _size) \
171 trace_dump_array(_type, _arg, _size); \
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_dump.h137 #define trace_dump_array(_type, _obj, _size) \
141 for(idx = 0; idx < (_size); ++idx) { \
149 #define trace_dump_struct_array(_type, _obj, _size) \
153 for(idx = 0; idx < (_size); ++idx) { \
168 #define trace_dump_arg_array(_type, _arg, _size) \
171 trace_dump_array(_type, _arg, _size); \
/external/lzma/CPP/Common/
H A DMyVector.h13 int _size; member in class:CBaseRecordVector
20 { if (index + num > _size) num = _size - index; }
22 CBaseRecordVector(size_t itemSize): _capacity(0), _size(0), _items(0), _itemSize(itemSize) {}
25 int Size() const { return _size; }
26 bool IsEmpty() const { return (_size == 0); }
57 ((T *)_items)[_size] = item;
58 return _size++;
71 const T& Back() const { return operator[](_size - 1); }
72 T& Back() { return operator[](_size
[all...]
/external/chromium_org/third_party/opus/src/celt/
H A Dentenc.h35 _size: The size of the buffer, in chars.*/
36 void ec_enc_init(ec_enc *_this,unsigned char *_buf,opus_uint32 _size);
100 _size: The number of bytes in the new buffer.
103 void ec_enc_shrink(ec_enc *_this,opus_uint32 _size);
/external/libopus/celt/
H A Dentenc.h35 _size: The size of the buffer, in chars.*/
36 void ec_enc_init(ec_enc *_this,unsigned char *_buf,opus_uint32 _size);
100 _size: The number of bytes in the new buffer.
103 void ec_enc_shrink(ec_enc *_this,opus_uint32 _size);
/external/opencv/
H A DWLNonFileByteStream.h43 int _size; member in class:WLNonFileByteStream
/external/bison/lib/
H A Dstdio-impl.h36 struct { unsigned char *_base; int _size; } _bf; \
42 struct { unsigned char *_base; int _size; } _ub; \
46 struct { unsigned char *_base; int _size; } _lb; \
/external/chromium_org/gpu/command_buffer/common/
H A Dcmd_buffer_common.h50 void Init(uint32_t _command, int32_t _size) { argument
51 DCHECK_LE(_size, kMaxSize);
53 size = _size;
262 void Init(uint32_t _bucket_id, uint32_t _size) { argument
265 size = _size;
267 static void* Set(void* cmd, uint32_t _bucket_id, uint32_t _size) { argument
268 static_cast<ValueType*>(cmd)->Init(_bucket_id, _size);
300 uint32_t _size,
306 size = _size;
313 uint32_t _size,
298 Init(uint32_t _bucket_id, uint32_t _offset, uint32_t _size, uint32_t _shared_memory_id, uint32_t _shared_memory_offset) argument
310 Set(void* cmd, uint32_t _bucket_id, uint32_t _offset, uint32_t _size, uint32_t _shared_memory_id, uint32_t _shared_memory_offset) argument
360 Init(uint32_t _bucket_id, uint32_t _offset, uint32_t _size) argument
368 Set(void* cmd, uint32_t _bucket_id, uint32_t _offset, uint32_t _size) argument
486 Init(uint32_t _bucket_id, uint32_t _offset, uint32_t _size, uint32_t _shared_memory_id, uint32_t _shared_memory_offset) argument
498 Set(void* cmd, uint32_t _bucket_id, uint32_t _offset, uint32_t _size, uint32_t _shared_memory_id, uint32_t _shared_memory_offset) argument
[all...]

Completed in 3384 milliseconds

12345