Searched refs:load_counted_tuple (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Modules/ |
D | cPickle.c | 3812 load_counted_tuple(Unpicklerobject *self, int len) in load_counted_tuple() function 3831 return load_counted_tuple(self, self->stack->length - i); in load_tuple() 4816 if (load_counted_tuple(self, 0) < 0) in load() 4821 if (load_counted_tuple(self, 1) < 0) in load() 4826 if (load_counted_tuple(self, 2) < 0) in load() 4831 if (load_counted_tuple(self, 3) < 0) in load() 5233 if (load_counted_tuple(self, 0) < 0) in noload() 5238 if (load_counted_tuple(self, 1) < 0) in noload() 5243 if (load_counted_tuple(self, 2) < 0) in noload() 5248 if (load_counted_tuple(self, 3) < 0) in noload()
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 5679 load_counted_tuple(UnpicklerObject *self, Py_ssize_t len) in load_counted_tuple() function 5701 return load_counted_tuple(self, Py_SIZE(self->stack) - i); in load_tuple() 6945 OP_ARG(EMPTY_TUPLE, load_counted_tuple, 0) in load() 6946 OP_ARG(TUPLE1, load_counted_tuple, 1) in load() 6947 OP_ARG(TUPLE2, load_counted_tuple, 2) in load() 6948 OP_ARG(TUPLE3, load_counted_tuple, 3) in load()
|