Home
last modified time | relevance | path

Searched refs:_idx (Results 1 – 8 of 8) 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/libevent/
Dpoll.c66 static int poll_add(struct event_base *, int, short old, short events, void *_idx);
67 static int poll_del(struct event_base *, int, short old, short events, void *_idx);
211 poll_add(struct event_base *base, int fd, short old, short events, void *_idx) in poll_add() argument
215 struct pollidx *idx = _idx; in poll_add()
272 poll_del(struct event_base *base, int fd, short old, short events, void *_idx) in poll_del() argument
276 struct pollidx *idx = _idx; in poll_del()
Dwin32select.c80 static int win32_add(struct event_base *, evutil_socket_t, short old, short events, void *_idx);
81 static int win32_del(struct event_base *, evutil_socket_t, short old, short events, void *_idx);
215 short old, short events, void *_idx) in win32_add() argument
218 struct idx_info *idx = _idx; in win32_add()
240 void *_idx) in win32_del() argument
243 struct idx_info *idx = _idx; in win32_del()
/external/syslinux/gpxe/src/drivers/infiniband/
Dlinda.c136 #define linda_readq_array8b( _linda, _ptr, _offset, _idx ) \ argument
137 linda_readq ( (_linda), (_ptr), ( (_offset) + ( (_idx) * 8 ) ) )
138 #define linda_readq_array64k( _linda, _ptr, _offset, _idx ) \ argument
139 linda_readq ( (_linda), (_ptr), ( (_offset) + ( (_idx) * 65536 ) ) )
161 #define linda_writeq_array8b( _linda, _ptr, _offset, _idx ) \ argument
162 linda_writeq ( (_linda), (_ptr), ( (_offset) + ( (_idx) * 8 ) ) )
163 #define linda_writeq_array64k( _linda, _ptr, _offset, _idx ) \ argument
164 linda_writeq ( (_linda), (_ptr), ( (_offset) + ( (_idx) * 65536 ) ) )
/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.c93 #define PK11_SETATTRS(_attr, _idx, _type, _val, _len) do { \ argument
94 CK_ATTRIBUTE *ptr = (_attr) + ((_idx)++); \