Lines Matching defs:elt
178 ndbuf_push(NDArrayObject *nd, ndbuf_t *elt)
180 elt->next = nd->head;
181 if (nd->head) nd->head->prev = elt;
182 nd->head = elt;
183 elt->prev = NULL;
187 ndbuf_delete(NDArrayObject *nd, ndbuf_t *elt)
189 if (elt->prev)
190 elt->prev->next = elt->next;
192 nd->head = elt->next;
194 if (elt->next)
195 elt->next->prev = elt->prev;
197 ndbuf_free(elt);
1288 PyObject *strides = NULL; /* number of bytes to the next elt in each dim */
1354 PyObject *strides = NULL; /* number of bytes to the next elt in each dim */