/external/protobuf/objectivec/ |
D | GPBArray.m | 54 //% _count = NEW_COUNT; 56 //% _count = NEW_COUNT; 71 //% NSUInteger _count; 75 //%@synthesize count = _count; 102 //% return [self initWithValues:array->_values count:array->_count]; 113 //% _count = count; 134 //% return [[GPB##NAME##Array allocWithZone:zone] initWithValues:_values count:_count]; 140 //%VALIDATE_RANGE(index, _count) 168 //% return (_count == other->_count 169 //% && memcmp(_values, other->_values, (_count * sizeof(TYPE))) == 0); [all …]
|
/external/autotest/client/cros/audio/ |
D | cras_dbus_utils.py | 61 self._count = 0 92 if self._count < self._target_signal_count: 100 self._count = self._count + 1 101 logging.debug('count = %d', self._count) 102 if self._count >= self._target_signal_count: 193 self._count = None 201 self._count = 0 220 logging.debug('Count result: %s', self._count) 221 self._child_conn.send(self._count) 237 self._count = self._count + 1 [all …]
|
/external/pdfium/third_party/freetype/include/freetype/internal/ |
D | ftgloadr.h | 124 #define FT_GLYPHLOADER_CHECK_P( _loader, _count ) \ argument 125 ( (_count) == 0 || \ 128 (FT_UInt)(_count) ) <= (_loader)->max_points ) 130 #define FT_GLYPHLOADER_CHECK_C( _loader, _count ) \ argument 131 ( (_count) == 0 || \ 134 (FT_UInt)(_count) ) <= (_loader)->max_contours )
|
/external/freetype/include/freetype/internal/ |
D | ftgloadr.h | 106 #define FT_GLYPHLOADER_CHECK_P( _loader, _count ) \ argument 107 ( (_count) == 0 || \ 110 (FT_UInt)(_count) ) <= (_loader)->max_points ) 112 #define FT_GLYPHLOADER_CHECK_C( _loader, _count ) \ argument 113 ( (_count) == 0 || \ 116 (FT_UInt)(_count) ) <= (_loader)->max_contours )
|
/external/webrtc/webrtc/voice_engine/ |
D | level_indicator.cc | 30 _count(0), in AudioLevel() 43 _count = 0; in Clear() 65 if (_count++ == kUpdateFrequency) in ComputeLevel() 69 _count = 0; in ComputeLevel()
|
/external/autotest/client/cros/ |
D | dark_resume_listener.py | 26 self._count = 0 51 return self._count 55 self._count += 1
|
/external/syslinux/gpxe/src/include/gpxe/ |
D | io.h | 115 unsigned int _count = (count); \ 116 unsigned int _dbg_count = _count; \ 117 _func ( _io_addr, _data, _count ); \ 144 unsigned int _count = (count); \ 145 unsigned int _dbg_count = _count; \ 152 _func ( _io_addr, _data, _count ); \
|
/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/python/cpython2/Doc/library/ |
D | atexit.rst | 80 _count = int(open("counter").read()) 82 _count = 0 85 global _count 86 _count = _count + n 89 open("counter", "w").write("%d" % _count)
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_dump_defines.c | 80 #define DEFINE_UTIL_DUMP_CONTINUOUS_COUNT(_name, _count) \ argument 84 STATIC_ASSERT(ARRAY_SIZE(util_dump_##_name##_names) == _count); \ 85 STATIC_ASSERT(ARRAY_SIZE(util_dump_##_name##_short_names) == _count); \
|
D | u_memory.h | 50 #define CALLOC(_count, _size) os_calloc(_count, _size) argument
|
/external/python/cpython2/Lib/test/ |
D | test_thread.py | 105 orig = thread._count() 116 self.assertEqual(thread._count(), orig + 1) 127 self.assertEqual(thread._count(), orig) 140 c = thread._count() 148 while thread._count() > c:
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_state.c | 262 #define EMIT_RS(_rs, _count, _name, _value) \ argument 264 _rs[_count].state = _name; \ 265 _rs[_count].uintValue = _value; \ 266 _count++; \
|
/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 | 82 #define os_calloc( _count, _size ) \ argument 83 debug_calloc(__FILE__, __LINE__, __FUNCTION__, _count, _size )
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/ |
D | template_8-1.in | 21 int %%MYSIG2%%_count = 0; 25 %%MYSIG2%%_count++; 33 if (%%MYSIG2%%_count) {
|
/external/freetype/src/sfnt/ |
D | ttbdf.c | 178 FT_UInt _count = FT_NEXT_USHORT( p ); in tt_face_find_bdf_prop() local 183 count = _count; in tt_face_find_bdf_prop() 187 strike += 10 * _count; in tt_face_find_bdf_prop()
|
/external/pdfium/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/fmtlib/test/ |
D | posix-mock-test.cc | 77 if (func##_count != 0) { \ 78 if (func##_count++ != 3) { \ 203 func##_count = 1; \ 205 EXPECT_EQ(4, func##_count); \ 206 func##_count = 0; 210 func##_count = 1; \ 212 func##_count = 0;
|
/external/python/cpython2/Lib/multiprocessing/ |
D | synchronize.py | 157 elif self._semlock._count() > 0: 180 count = self._semlock._count() 183 elif self._semlock._count() > 0: 240 count = self._lock._semlock._count()
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | PathProfileInfo.h | 62 inline unsigned int getCount() const { return _count; } in getCount() 72 unsigned int _count; variable
|
/external/clang/cmake/modules/ |
D | CMakeLists.txt | 26 string(REGEX REPLACE "/" ";" _count "${CLANG_INSTALL_PACKAGE_DIR}") 27 foreach(p ${_count})
|
/external/harfbuzz_ng/src/ |
D | hb-ot-name-table.hh | 108 unsigned int _count = count; in sanitize_records() local 109 for (unsigned int i = 0; i < _count; i++) in sanitize_records()
|
/external/emma/core/java12/com/vladium/emma/report/ |
D | AbstractReportGenerator.java | 144 final int [] _count = new int [1]; in initialize() local 154 final int count = countMap.get (packageVMName, _count) in initialize() 155 ? _count [0] in initialize()
|
/external/libdrm/intel/ |
D | uthash.h | 405 unsigned _count; \ 407 _count = 0; \ 421 _count += _bkt_count; \ 427 if (_count != (head)->hh.tbl->num_items) { \ 429 (head)->hh.tbl->num_items, _count ); \ 432 _count = 0; \ 436 _count++; \ 445 if (_count != (head)->hh.tbl->num_items) { \ 447 (head)->hh.tbl->num_items, _count ); \
|