Lines Matching refs:intptr_t
224 intptr_t wrapIndex(intptr_t index) {
233 intptr_t linearizeIndex(intptr_t index) {
234 intptr_t linearIndex = index * step + startIndex;
244 pybind11::object getItem(intptr_t index) {
270 explicit Sliceable(intptr_t startIndex, intptr_t length, intptr_t step)
277 ElementTy getElement(intptr_t index) {
288 intptr_t size() { return length; }
296 for (intptr_t i = 0; i < length; ++i) {
299 for (intptr_t i = 0; i < other.length; ++i) {
360 intptr_t startIndex;
361 intptr_t length;
362 intptr_t step;