Home
last modified time | relevance | path

Searched refs:getindex (Results 1 – 4 of 4) sorted by relevance

/third_party/toybox/toys/pending/
Dcrontab.c45 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()
Dcrond.c107 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()
/third_party/python/Objects/
Dtypeobject.c6602 getindex(PyObject *self, PyObject *arg) in getindex() function
6632 i = getindex(self, arg); in wrap_sq_item()
6652 i = getindex(self, arg); in wrap_sq_setitem()
6672 i = getindex(self, arg); in wrap_sq_delitem()
/third_party/python/Lib/test/
Dtest_buffer.py321 def getindex(ndim, ind, strides): function
338 fr = getindex(ndim, ind, sstrides)
339 to = getindex(ndim, ind[::-1], dstrides)