Home
last modified time | relevance | path

Searched refs:codebytes (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
DcPickle.c4288 char *codebytes; /* the nbytes bytes after the opcode */ in load_extension() local
4296 if (self->read_func(self, &codebytes, nbytes) < 0) return -1; in load_extension()
4297 code = calc_binint(codebytes, nbytes); in load_extension()
5105 char *codebytes; in noload_extension() local
5108 if (self->read_func(self, &codebytes, nbytes) < 0) return -1; in noload_extension()
/external/python/cpython3/Modules/
D_pickle.c5815 char *codebytes; /* the nbytes bytes after the opcode */ in load_extension() local
5824 if (_Unpickler_Read(self, &codebytes, nbytes) < 0) in load_extension()
5826 code = calc_binint(codebytes, nbytes); in load_extension()