Home
last modified time | relevance | path

Searched refs:_idx (Results 1 – 11 of 11) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/test/
Dutility.cc142 _idx(0), in CircularBuffer()
170 double oldVal = _buff[_idx]; in Update()
172 _buff[_idx] = newVal; in Update()
175 _idx++; in Update()
178 if (_idx >= _buffLen) { in Update()
181 _idx = 0; in Update()
207 lim = _idx; in SetArithMean()
225 lim = _idx; in SetVariance()
243 if (_idx > 0) { in ArithMean()
244 mean = _sum / (double) _idx; in ArithMean()
[all …]
Dutility.h102 uint32_t _idx; variable
/external/python/cpython2/Modules/_sqlite/
Drow.c82 Py_ssize_t _idx; in pysqlite_row_subscript() local
93 _idx = PyInt_AsLong(idx); in pysqlite_row_subscript()
94 if (_idx < 0) in pysqlite_row_subscript()
95 _idx += PyTuple_GET_SIZE(self->data); in pysqlite_row_subscript()
96 item = PyTuple_GetItem(self->data, _idx); in pysqlite_row_subscript()
100 _idx = PyNumber_AsSsize_t(idx, PyExc_IndexError); in pysqlite_row_subscript()
101 if (_idx == -1 && PyErr_Occurred()) in pysqlite_row_subscript()
103 if (_idx < 0) in pysqlite_row_subscript()
104 _idx += PyTuple_GET_SIZE(self->data); in pysqlite_row_subscript()
105 item = PyTuple_GetItem(self->data, _idx); in pysqlite_row_subscript()
/external/python/cpython3/Modules/_sqlite/
Drow.c81 Py_ssize_t _idx; in pysqlite_row_subscript() local
92 _idx = PyNumber_AsSsize_t(idx, PyExc_IndexError); in pysqlite_row_subscript()
93 if (_idx == -1 && PyErr_Occurred()) in pysqlite_row_subscript()
95 if (_idx < 0) in pysqlite_row_subscript()
96 _idx += PyTuple_GET_SIZE(self->data); in pysqlite_row_subscript()
97 item = PyTuple_GetItem(self->data, _idx); in pysqlite_row_subscript()
/external/u-boot/arch/x86/include/asm/
Dcoreboot_tables.h258 #define MEM_RANGE_PTR(_rec, _idx) \ argument
260 + (sizeof((_rec)->map[0]) * (_idx)))
/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/
Danf.py45 self._idx = 0
48 self._idx += 1
49 return stem + '_' + str(1000 + self._idx)
Danf_test.py39 self._idx = 0
42 self._idx += 1
43 return stem + '_' + str(1000 + self._idx)
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pipe_clip.c369 int _idx = plane_idx - 6; in getclipdist() local
370 int cdi = _idx >= 4; in getclipdist()
371 int vidx = cdi ? _idx - 4 : _idx; in getclipdist()
/external/curl/lib/vtls/
Dnss.c110 #define PK11_SETATTRS(_attr, _idx, _type, _val, _len) do { \ argument
111 CK_ATTRIBUTE *ptr = (_attr) + ((_idx)++); \
/external/freetype/
DChangeLog.244953 Revert a change of `_idx' type in `FTC_CACHE_LOOKUP_CMP'.
4956 the type of `_idx' from FT_PtrDist (by previous change)
4997 Also the type of the internal variable `_idx' is changed to
DChangeLog.231569 of `_idx' is matched with FTC_Cache->{p,mask}.