Searched defs:_idx (Results 1 - 9 of 9) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/test/
H A Dutility.h102 uint32_t _idx; member in class:webrtc::CircularBuffer
/external/libevent/
H A 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) argument
215 struct pollidx *idx = _idx;
272 poll_del(struct event_base *base, int fd, short old, short events, void *_idx) argument
276 struct pollidx *idx = _idx;
H A 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)
218 struct idx_info *idx = _idx;
240 void *_idx)
243 struct idx_info *idx = _idx;
214 win32_add(struct event_base *base, evutil_socket_t fd, short old, short events, void *_idx) argument
239 win32_del(struct event_base *base, evutil_socket_t fd, short old, short events, void *_idx) argument
/external/python/cpython2/Modules/_sqlite/
H A Drow.c82 Py_ssize_t _idx; local
93 _idx = PyInt_AsLong(idx);
94 if (_idx < 0)
95 _idx += PyTuple_GET_SIZE(self->data);
96 item = PyTuple_GetItem(self->data, _idx);
100 _idx = PyNumber_AsSsize_t(idx, PyExc_IndexError);
101 if (_idx == -1 && PyErr_Occurred())
103 if (_idx < 0)
104 _idx += PyTuple_GET_SIZE(self->data);
105 item = PyTuple_GetItem(self->data, _idx);
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_clip.c369 int _idx = plane_idx - 6; local
370 int cdi = _idx >= 4;
371 int vidx = cdi ? _idx - 4 : _idx;
/external/opencv/cxcore/src/
H A Dcxutils.cpp1051 cvSort( const CvArr* _src, CvArr* _dst, CvArr* _idx, int flags ) argument
1062 CvMat istub, *idx = _idx ? cvGetMat(_idx, &istub) : 0;
H A Dcxarray.cpp1985 int* _idx = (int*)cvStackAlloc(n*sizeof(_idx[0])); local
1990 _idx[i] = idx - t*m->size[i];
1993 ptr = icvGetNodePtr( (CvSparseMat*)arr, _idx, _type, 1, 0 );
H A Dcxdatastructs.cpp2449 int is_sorted, int* _idx, void* userdata )
2548 if( _idx )
2549 *_idx = idx;
2448 cvSeqSearch( CvSeq* seq, const void* _elem, CvCmpFunc cmp_func, int is_sorted, int* _idx, void* userdata ) argument
/external/opencv/ml/src/
H A Dmlann_mlp.cpp881 CvMat* _idx = 0; local
906 CV_CALL( _idx = cvCreateMat( 1, count, CV_32SC1 ));
908 _idx->data.i[i] = i;
952 CV_SWAP( _idx->data.i[j], _idx->data.i[k], tt );
956 idx = _idx->data.i[idx];
1042 cvReleaseMat( &_idx );

Completed in 584 milliseconds