/external/protobuf/objectivec/ |
D | GPBArray.m | 60 //% _count = NEW_COUNT; 62 //% _count = NEW_COUNT; 77 //% NSUInteger _count; 81 //%@synthesize count = _count; 108 //% return [self initWithValues:array->_values count:array->_count]; 119 //% _count = count; 140 //% return [[GPB##NAME##Array allocWithZone:zone] initWithValues:_values count:_count]; 146 //%VALIDATE_RANGE(index, _count) 175 //% return (_count == otherArray->_count 176 //% && memcmp(_values, otherArray->_values, (_count * sizeof(TYPE))) == 0); [all …]
|
/external/autotest/client/cros/audio/ |
D | cras_dbus_utils.py | 62 self._count = 0 93 if self._count < self._target_signal_count: 101 self._count = self._count + 1 102 logging.debug('count = %d', self._count) 103 if self._count >= self._target_signal_count: 194 self._count = None 202 self._count = 0 221 logging.debug('Count result: %s', self._count) 222 self._child_conn.send(self._count) 238 self._count = self._count + 1 [all …]
|
/external/freetype/include/freetype/internal/ |
D | ftgloadr.h | 105 #define FT_GLYPHLOADER_CHECK_P( _loader, _count ) \ argument 106 ( (_count) == 0 || \ 109 (FT_UInt)(_count) ) <= (_loader)->max_points ) 111 #define FT_GLYPHLOADER_CHECK_C( _loader, _count ) \ argument 112 ( (_count) == 0 || \ 115 (FT_UInt)(_count) ) <= (_loader)->max_contours )
|
/external/perfetto/ui/src/frontend/ |
D | perf.ts | 47 private _count = 0; property in RunningStatistics 61 this._mean = (this._mean * this._count + value) / (this._count + 1); 62 this._count++; 69 return this._count;
|
/external/python/cpython3/Lib/ |
D | threading.py | 10 from itertools import islice as _islice, count as _count unknown 108 self._count = 0 121 self._count, 128 self._count = 0 158 self._count += 1 163 self._count = 1 186 self._count = count = self._count - 1 198 self._count, self._owner = state 201 if self._count == 0: 203 count = self._count [all …]
|
/external/grpc-grpc/src/python/grpcio_tests/tests/qps/ |
D | histogram.py | 34 self._count = 0 43 self._count = 0 52 self._count += 1 65 data.count = self._count
|
/external/OpenCL-CTS/test_common/harness/ |
D | os_helpers.cpp | 48 int const _count = 8; // How many times we will try to double buffer size. variable 81 int count = _count; in _err_msg() 134 int count = _count; in exe_path() 207 int count = _count; in _err_msg() 269 int count = _count; // Max number of iterations. in exe_path() 402 int count = _count; in exe_path() 453 count = _count; in exe_dir()
|
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/sym/ |
D | ByteQuadsCanonicalizer.java | 158 private int _count; field in ByteQuadsCanonicalizer 262 _count = state.count; in ByteQuadsCanonicalizer() 367 return _count; in size() 458 getClass().getName(), _count, _hashSize, in toString() 775 ++_count; in addName() 790 ++_count; in addName() 805 ++_count; in addName() 855 ++_count; in addName() 956 if (_count > (_hashSize >> 1)) { // over 50% in _checkNeedForRehash() 958 if ((spillCount > (1 + _count >> 7)) in _checkNeedForRehash() [all …]
|
/external/arm-trusted-firmware/include/lib/cpus/aarch32/ |
D | cpu_macros.S | 94 .macro fill_constants _count:req, _this, _rest:vararg 95 .ifgt \_count 104 fill_constants \_count-1, \_rest 106 fill_constants \_count-1, \_this
|
/external/python/cpython3/Lib/multiprocessing/ |
D | synchronize.py | 172 elif self._semlock._count() > 0: 195 count = self._semlock._count() 198 elif self._semlock._count() > 0: 255 count = self._lock._semlock._count() 369 self._count = 0 389 def _count(self): member in Barrier 392 @_count.setter 393 def _count(self, value): member in Barrier
|
/external/autotest/client/cros/ |
D | dark_resume_listener.py | 30 self._count = 0 80 return self._count 84 self._count += 1
|
/external/tensorflow/tensorflow/python/data/experimental/ops/ |
D | shuffle_ops.py | 38 self._count = constant_op.constant(-1, dtype=dtypes.int64, name="count") 40 self._count = ops.convert_to_tensor( 46 count=self._count,
|
/external/python/cpython3/Doc/library/ |
D | atexit.rst | 77 _count = int(infile.read()) 79 _count = 0 82 global _count 83 _count = _count + n 87 outfile.write("%d" % _count)
|
/external/perfetto/ui/src/controller/ |
D | logs_controller.ts | 103 private _count: number; property in Pagination 107 this._count = count; 115 return this._count; 119 return this._offset + this._count;
|
/external/grpc-grpc/src/objective-c/RxLibrary/private/ |
D | GRXNSFastEnumerator.m | 25 NSUInteger _count; 54 if (_index == _count) { 56 _count = [_container countByEnumeratingWithState:&_state objects:&_bufferValue count:1]; 57 if (_count == 0) {
|
/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/util/ |
D | os_memory_stdc.h | 42 #define os_calloc(_count, _size ) calloc(_count, _size ) argument
|
D | os_memory_debug.h | 85 #define os_calloc( _count, _size ) \ argument 86 debug_calloc(__FILE__, __LINE__, __FUNCTION__, _count, _size )
|
/external/virglrenderer/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/arm-trusted-firmware/include/lib/cpus/aarch64/ |
D | cpu_macros.S | 105 .macro fill_constants _count:req, _this, _rest:vararg 106 .ifgt \_count 115 fill_constants \_count-1, \_rest 117 fill_constants \_count-1, \_this
|
/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/harfbuzz_ng/src/ |
D | hb-ot-layout.hh | 153 _count = buffer->len, \ 154 start = 0, end = _count ? _hb_next_syllable (buffer, 0) : 0; \ 155 start < _count; \ 356 _count = buffer->len, \ 357 start = 0, end = _count ? _hb_next_grapheme (buffer, 0) : 0; \ 358 start < _count; \
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_state.c | 313 #define EMIT_RS(_rs, _count, _name, _value) \ argument 315 _rs[_count].state = _name; \ 316 _rs[_count].uintValue = _value; \ 317 _count++; \
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_dump_defines.c | 81 #define DEFINE_UTIL_STR_CONTINUOUS_COUNT(_name, _count) \ argument 85 STATIC_ASSERT(ARRAY_SIZE(util_##_name##_names) == _count); \ 86 STATIC_ASSERT(ARRAY_SIZE(util_##_name##_short_names) == _count); \
|