/external/qemu/android/utils/ |
D | duff.h | 22 #define DUFF1(_count,_stmnt) \ argument 24 int __n = (_count); \ 30 #define DUFF2(_count,_stmnt) \ argument 32 int __count = (_count); \ 41 #define DUFF4(_count,_stmnt) \ argument 43 int __count = (_count); \ 54 #define DUFF8(_count,_stmnt) \ argument 56 int __count = (_count); \
|
/external/chromium_org/third_party/bintrees/bintrees/ |
D | qavltree.pyx | 18 cdef int _count 22 self._count = 0 31 return self._count 41 self._count = 0 62 self._count += res 70 self._count -= 1
|
D | qrbtree.pyx | 18 cdef int _count 22 self._count = 0 31 return self._count 41 self._count = 0 62 self._count += res 70 self._count -= 1
|
D | qbintree.pyx | 18 cdef int _count 22 self._count = 0 31 return self._count 41 self._count = 0 61 self._count += res 69 self._count -= 1
|
D | bintree.py | 64 self._count = 0 76 self._count = 0 87 return self._count 91 self._count += 1 146 self._count -= 1
|
D | avltree.py | 121 self._count = 0 133 self._count = 0 139 return self._count 148 self._count += 1 248 self._count -= 1 272 self._count -= 1
|
D | rbtree.py | 121 self._count = 0 133 self._count = 0 139 return self._count 148 self._count += 1 261 self._count -= 1
|
/external/freetype/include/freetype/internal/ |
D | ftgloadr.h | 124 #define FT_GLYPHLOADER_CHECK_P( _loader, _count ) \ argument 125 ( (_count) == 0 || ((_loader)->base.outline.n_points + \ 127 (unsigned long)(_count)) <= (_loader)->max_points ) 129 #define FT_GLYPHLOADER_CHECK_C( _loader, _count ) \ argument 130 ( (_count) == 0 || ((_loader)->base.outline.n_contours + \ 132 (unsigned long)(_count)) <= (_loader)->max_contours )
|
/external/chromium_org/third_party/freetype/include/freetype/internal/ |
D | ftgloadr.h | 124 #define FT_GLYPHLOADER_CHECK_P( _loader, _count ) \ argument 125 ( (_count) == 0 || ((_loader)->base.outline.n_points + \ 127 (unsigned long)(_count)) <= (_loader)->max_points ) 129 #define FT_GLYPHLOADER_CHECK_C( _loader, _count ) \ argument 130 ( (_count) == 0 || ((_loader)->base.outline.n_contours + \ 132 (unsigned long)(_count)) <= (_loader)->max_contours )
|
/external/webrtc/src/system_wrappers/source/ |
D | event_posix.cc | 48 _count(0), in EventPosix() 263 _count=0; in Process() 267 unsigned long long time = _time * ++_count; in Process() 286 if(_periodic || _count==1) in Process() 321 _count=0; in StopTimer()
|
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/ |
D | DNSResolverTask.java | 25 protected int _count = 0; field in DNSResolverTask 40 return super.toString() + " count: " + _count; in toString() 64 if (_count++ < 3) { in run()
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_state.c | 245 #define EMIT_RS(_rs, _count, _name, _value) \ argument 247 _rs[_count].state = _name; \ 248 _rs[_count].uintValue = _value; \ 249 _count++; \
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
D | svga_state.c | 245 #define EMIT_RS(_rs, _count, _name, _value) \ argument 247 _rs[_count].state = _name; \ 248 _rs[_count].uintValue = _value; \ 249 _count++; \
|
/external/chromium_org/gpu/command_buffer/common/ |
D | gles2_cmd_format_autogen.h | 2108 void Init(GLenum _mode, GLint _first, GLsizei _count) { in Init() 2112 count = _count; in Init() 2115 void* Set(void* cmd, GLenum _mode, GLint _first, GLsizei _count) { in Set() 2116 static_cast<ValueType*>(cmd)->Init(_mode, _first, _count); in Set() 2150 void Init(GLenum _mode, GLsizei _count, GLenum _type, GLuint _index_offset) { in Init() 2153 count = _count; in Init() 2159 void* cmd, GLenum _mode, GLsizei _count, GLenum _type, in Set() 2161 static_cast<ValueType*>(cmd)->Init(_mode, _count, _type, _index_offset); in Set() 5741 GLint _location, GLsizei _count, uint32 _v_shm_id, in Init() 5745 count = _count; in Init() [all …]
|
/external/mesa3d/src/gallium/auxiliary/os/ |
D | os_memory_stdc.h | 44 #define os_calloc(_count, _size ) calloc(_count, _size ) argument
|
D | os_memory_debug.h | 73 #define os_calloc( _count, _size ) \ argument 74 debug_calloc(__FILE__, __LINE__, __FUNCTION__, _count, _size )
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/ |
D | os_memory_stdc.h | 44 #define os_calloc(_count, _size ) calloc(_count, _size ) argument
|
D | os_memory_debug.h | 73 #define os_calloc( _count, _size ) \ argument 74 debug_calloc(__FILE__, __LINE__, __FUNCTION__, _count, _size )
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_memory.h | 50 #define CALLOC(_count, _size) os_calloc(_count, _size) argument
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
D | u_memory.h | 50 #define CALLOC(_count, _size) os_calloc(_count, _size) argument
|
/external/chromium_org/third_party/freetype/src/sfnt/ |
D | ttbdf.c | 178 FT_UInt _count = FT_NEXT_USHORT( p ); in tt_face_find_bdf_prop() local 182 count = _count; in tt_face_find_bdf_prop() 186 strike += 10 * _count; in tt_face_find_bdf_prop()
|
/external/freetype/src/sfnt/ |
D | ttbdf.c | 178 FT_UInt _count = FT_NEXT_USHORT( p ); in tt_face_find_bdf_prop() local 182 count = _count; in tt_face_find_bdf_prop() 186 strike += 10 * _count; in tt_face_find_bdf_prop()
|
/external/harfbuzz/src/ |
D | harfbuzz-impl.h | 100 #define ALLOC_ARRAY(_ptr,_count,_type) \ argument 101 ALLOC(_ptr,(_count)*sizeof(_type))
|
/external/harfbuzz_ng/src/hb-old/ |
D | harfbuzz-impl.h | 104 #define ALLOC_ARRAY(_ptr,_count,_type) \ argument 105 ALLOC(_ptr,(_count)*sizeof(_type))
|
/external/llvm/include/llvm/Analysis/ |
D | PathProfileInfo.h | 62 inline unsigned int getCount() const { return _count; } in getCount() 72 unsigned int _count; variable
|