Searched refs:_idx (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Modules/_sqlite/ |
D | row.c | 82 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/ |
D | row.c | 109 Py_ssize_t _idx; in pysqlite_row_subscript() local 114 _idx = PyNumber_AsSsize_t(idx, PyExc_IndexError); in pysqlite_row_subscript() 115 if (_idx == -1 && PyErr_Occurred()) in pysqlite_row_subscript() 117 if (_idx < 0) in pysqlite_row_subscript() 118 _idx += PyTuple_GET_SIZE(self->data); in pysqlite_row_subscript() 119 item = PyTuple_GetItem(self->data, _idx); in pysqlite_row_subscript()
|
/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/ |
D | anf.py | 48 self._idx = 0 51 self._idx += 1 52 return stem + '_' + str(1000 + self._idx)
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pipe_clip.c | 324 int _idx = plane_idx - 6; in getclipdist() local 325 int cdi = _idx >= 4; in getclipdist() 326 int vidx = cdi ? _idx - 4 : _idx; in getclipdist()
|
/external/crosvm/devices/src/virtio/vhost/user/ |
D | handler.rs | 120 |_idx, guest_phys_addr, memory_size, userspace_addr, mmap, mmap_offset| { in set_mem_table()
|
/external/mesa3d/src/vulkan/overlay-layer/ |
D | overlay.cpp | 866 static float get_time_stat(void *_data, int _idx) in get_time_stat() argument 869 if ((ARRAY_SIZE(data->frames_stats) - _idx) > data->n_frames) in get_time_stat() 873 _idx - data->n_frames : in get_time_stat() 874 _idx + data->n_frames; in get_time_stat() 880 static float get_stat(void *_data, int _idx) in get_stat() argument 883 if ((ARRAY_SIZE(data->frames_stats) - _idx) > data->n_frames) in get_stat() 887 _idx - data->n_frames : in get_stat() 888 _idx + data->n_frames; in get_stat()
|
/external/curl/lib/vtls/ |
D | nss.c | 109 #define PK11_SETATTRS(_attr, _idx, _type, _val, _len) do { \ argument 110 CK_ATTRIBUTE *ptr = (_attr) + ((_idx)++); \
|
/external/freetype/ |
D | ChangeLog.24 | 4953 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
|
D | ChangeLog.23 | 1569 of `_idx' is matched with FTC_Cache->{p,mask}.
|