Searched refs:_size (Results 76 - 100 of 119) sorted by relevance

12345

/external/chromium_org/gpu/command_buffer/service/
H A Dprogram_manager.h58 GLsizei _size, GLenum _type, GLint _fake_location_base,
81 VertexAttrib(GLsizei _size, GLenum _type, const std::string& _name, argument
83 : size(_size),
/external/libunwind/src/coredump/
H A D_UCD_create.c72 #define NOTE_FITS_IN(_hdr, _size) ((_size) >= sizeof (Elf32_Nhdr) && (_size) >= NOTE_SIZE (_hdr))
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h102 AggBuffer(unsigned _size, raw_ostream &_O, NVPTXAsmPrinter &_AP) argument
104 buffer = new unsigned char[_size];
105 size = _size;
/external/chromium_org/third_party/opus/src/src/
H A Dopus_compare.c46 static void *opus_malloc(size_t _size){ argument
47 return check_alloc(malloc(_size));
50 static void *opus_realloc(void *_ptr,size_t _size){ argument
51 return check_alloc(realloc(_ptr,_size));
/external/libopus/src/
H A Dopus_compare.c46 static void *opus_malloc(size_t _size){ argument
47 return check_alloc(malloc(_size));
50 static void *opus_realloc(void *_ptr,size_t _size){ argument
51 return check_alloc(realloc(_ptr,_size));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
H A DApplicationCacheItemsView.js163 delete this._size;
176 this._size = applicationCache.size;
190 // WebInspector.UIString("(%s) Created: %s Updated: %s", this._size, this._creationTime, this._updateTime);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCookieParser.js309 return this._size;
317 this._size = size;
/external/chromium_org/tools/linux/
H A Dprocfs.py131 self._size = size
169 return int(self._size)
403 self._size = 0
409 'Size': '_size',
423 if self._size.endswith('kB'):
424 return int(self._size.split()[0])
425 return int(self._size)
441 self._size = total_dct['Size']
477 return self._size
/external/lzma/CPP/7zip/Archive/7z/
H A D7zIn.h102 size_t _size; member in class:NArchive::N7z::CInByte2
108 _size = size;
H A D7zIn.cpp185 if (_pos >= _size)
192 if (size > _size - _pos)
200 if (size > _size - _pos)
212 if (_pos >= _size)
225 if (_pos >= _size)
243 if (_pos + 4 > _size)
252 if (_pos + 8 > _size)
262 size_t rem = (_size - _pos) / 2 * 2;
/external/valgrind/main/VEX/pub/
H A Dlibvex.h244 #define VEX_CACHE_INIT(_kind, _level, _size, _line_size, _assoc) \
245 ({ (VexCache) { .kind = _kind, .level = _level, .sizeB = _size, \
/external/chromium_org/gpu/command_buffer/client/
H A Dprogram_info_manager.cc149 UniformInfo(GLsizei _size, GLenum _type, const std::string& _name);
158 VertexAttrib(GLsizei _size, GLenum _type, const std::string& _name, argument
160 : size(_size),
228 GLsizei _size, GLenum _type, const std::string& _name)
229 : size(_size),
227 UniformInfo( GLsizei _size, GLenum _type, const std::string& _name) argument
H A Dgles2_implementation.h356 GLsizeiptr _size)
360 size(_size) {
349 MappedBuffer( GLenum access, int shm_id, void* shm_mem, unsigned int shm_offset, GLenum _target, GLintptr _offset, GLsizeiptr _size) argument
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
H A Dtest.cc152 image._size = videoBuffer.Size();
H A Dnormal_async_test.cc234 newBuffer->VerifyAndAllocate(encodedImage._size);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_dump_state.c173 #define util_dump_array(_stream, _type, _obj, _size) \
177 for(idx = 0; idx < (_size); ++idx) { \
185 #define util_dump_struct_array(_stream, _type, _obj, _size) \
189 for(idx = 0; idx < (_size); ++idx) { \
204 #define util_dump_arg_array(_stream, _type, _arg, _size) \
207 util_dump_array(_stream, _type, _arg, _size); \
H A Du_debug.h135 #define debug_print_blob(_name, _blob, _size) ((void)0)
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_dump_state.c173 #define util_dump_array(_stream, _type, _obj, _size) \
177 for(idx = 0; idx < (_size); ++idx) { \
185 #define util_dump_struct_array(_stream, _type, _obj, _size) \
189 for(idx = 0; idx < (_size); ++idx) { \
204 #define util_dump_arg_array(_stream, _type, _arg, _size) \
207 util_dump_array(_stream, _type, _arg, _size); \
H A Du_debug.h134 #define debug_print_blob(_name, _blob, _size) ((void)0)
/external/chromium_org/mojo/public/python/mojo/
H A Dsystem.pyx115 cdef uint32_t _size
125 self._size = 0
140 self._size = size
151 self._size,
163 sizes[0] = self._size
171 return self._size
180 return self._size
/external/chromium_org/tools/deep_memory_profiler/lib/
H A Dsorter.py43 self._size = size
51 return self._size
67 return self._size
/external/qemu/target-i386/
H A Dhax-interface.h254 uint16_t _size; member in struct:hax_tunnel::__anon30152::__anon30153
/external/libvorbis/doc/
H A D06-floor0.tex122 \mathtt{floor0\_bark\_map\_size} - 1,
135 \mathrm{bark}\left(\frac{\mathtt{floor0\_rate} \cdot i}{2n}\right) \cdot \frac{\mathtt{floor0\_bark\_map\_size}} {\mathrm{bark}(.5 \cdot \mathtt{floor0\_rate})}
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DMemoryView.pyx305 cdef object _size
551 if self._size is None:
557 self._size = result
559 return self._size
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptCanvasModuleSource.js324 return this._size;
332 this._size = 0;
360 ++this._size;
2219 this._size = activeInfo.size;
2227 if (typeof this._size === "number")
2228 result.push({ name: "size", value: this._size });
2241 data.size = this._size;
2252 this._size = data.size;

Completed in 1614 milliseconds

12345