Home
last modified time | relevance | path

Searched refs:_count (Results 1 – 25 of 93) sorted by relevance

1234

/external/protobuf/objectivec/
DGPBArray.m54 //% _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/
Dcras_dbus_utils.py61 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/freetype/include/freetype/internal/
Dftgloadr.h106 #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/perfetto/ui/src/frontend/
Dperf.ts47 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/
Dthreading.py10 from itertools import islice as _islice, count as _count unknown
101 self._count = 0
114 self._count,
146 self._count += 1
151 self._count = 1
174 self._count = count = self._count - 1
186 self._count, self._owner = state
189 if self._count == 0:
191 count = self._count
192 self._count = 0
[all …]
/external/webrtc/webrtc/voice_engine/
Dlevel_indicator.cc30 _count(0), in AudioLevel()
43 _count = 0; in Clear()
65 if (_count++ == kUpdateFrequency) in ComputeLevel()
69 _count = 0; in ComputeLevel()
/external/grpc-grpc/src/python/grpcio_tests/tests/qps/
Dhistogram.py34 self._count = 0
43 self._count = 0
52 self._count += 1
65 data.count = self._count
/external/python/cpython3/Lib/multiprocessing/
Dsynchronize.py172 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/
Ddark_resume_listener.py27 self._count = 0
53 return self._count
57 self._count += 1
/external/python/cpython3/Doc/library/
Datexit.rst77 _count = int(infile.read())
79 _count = 0
82 global _count
83 _count = _count + n
87 outfile.write("%d" % _count)
/external/python/cpython2/Doc/library/
Datexit.rst80 _count = int(open("counter").read())
82 _count = 0
85 global _count
86 _count = _count + n
89 open("counter", "w").write("%d" % _count)
/external/v8/tools/testrunner/testproc/
Dseed.py22 self._count = count
50 if not self._count or num < self._count:
Dcombiner.py27 self._count = count
71 if self._count and self._current_num >= self._count:
/external/tensorflow/tensorflow/python/data/experimental/ops/
Dshuffle_ops.py38 self._count = constant_op.constant(-1, dtype=dtypes.int64, name="count")
40 self._count = ops.convert_to_tensor(
46 count=self._count,
/external/perfetto/ui/src/controller/
Dlogs_controller.ts102 private _count: number; property in Pagination
106 this._count = count;
114 return this._count;
118 return this._offset + this._count;
/external/grpc-grpc/src/objective-c/RxLibrary/private/
DGRXNSFastEnumerator.m25 NSUInteger _count;
54 if (_index == _count) {
56 _count = [_container countByEnumeratingWithState:&_state objects:&_bufferValue count:1];
57 if (_count == 0) {
/external/harfbuzz_ng/src/
Dhb-ot-layout.hh160 _count = buffer->len, \
161 start = 0, end = _count ? _hb_next_syllable (buffer, 0) : 0; \
162 start < _count; \
352 _count = buffer->len, \
353 start = 0, end = _count ? _hb_next_grapheme (buffer, 0) : 0; \
354 start < _count; \
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_state.c257 #define EMIT_RS(_rs, _count, _name, _value) \ argument
259 _rs[_count].state = _name; \
260 _rs[_count].uintValue = _value; \
261 _count++; \
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/
Dtemplate_8-1.in21 int %%MYSIG2%%_count = 0;
25 %%MYSIG2%%_count++;
33 if (%%MYSIG2%%_count) {
/external/mesa3d/src/gallium/auxiliary/os/
Dos_memory_stdc.h44 #define os_calloc(_count, _size ) calloc(_count, _size ) argument
Dos_memory_debug.h82 #define os_calloc( _count, _size ) \ argument
83 debug_calloc(__FILE__, __LINE__, __FUNCTION__, _count, _size )
/external/virglrenderer/src/gallium/auxiliary/os/
Dos_memory_stdc.h44 #define os_calloc(_count, _size ) calloc(_count, _size ) argument
Dos_memory_debug.h82 #define os_calloc( _count, _size ) \ argument
83 debug_calloc(__FILE__, __LINE__, __FUNCTION__, _count, _size )
/external/mesa3d/src/gallium/auxiliary/util/
Du_dump_defines.c81 #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); \
/external/virglrenderer/src/gallium/auxiliary/util/
Du_memory.h50 #define CALLOC(_count, _size) os_calloc(_count, _size) argument

1234