Searched refs:getindex (Results 1 – 5 of 5) sorted by relevance
/external/toybox/toys/pending/ |
D | crontab.c | 45 static int getindex(char *src, int size) in getindex() function 98 } else if (getindex(dtoken, max) < 0) return 1; in validate_component() 107 } else if (getindex(ctoken, max) < 0) return 1; in validate_component()
|
D | crond.c | 107 static int getindex(char *src, int size) in getindex() function 175 } else if ((start = getindex(dtoken, max)) < 0) goto ERROR; in parse_and_fillarray() 183 } else if ((end = getindex(ctoken, max)) < 0) goto ERROR; in parse_and_fillarray()
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 5542 getindex(PyObject *self, PyObject *arg) in getindex() function 5572 i = getindex(self, arg); in wrap_sq_item() 5592 i = getindex(self, arg); in wrap_sq_setitem() 5612 i = getindex(self, arg); in wrap_sq_delitem()
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 4546 getindex(PyObject *self, PyObject *arg) function 4574 i = getindex(self, arg); 4605 i = getindex(self, arg); 4626 i = getindex(self, arg);
|
/external/python/cpython3/Lib/test/ |
D | test_buffer.py | 313 def getindex(ndim, ind, strides): function 330 fr = getindex(ndim, ind, sstrides) 331 to = getindex(ndim, ind[::-1], dstrides)
|