Lines Matching defs:opcode
49 enum opcode {
1707 /* Generate a GET opcode for an object stored in the memo. */
1756 of objects currently stored in the memo and generate a PUT opcode. */
2285 do not insert a protocol 4 frame opcode to make it possible to optimize
2406 /* Older pickle protocols do not have an opcode for pickling bytes
2483 /* Older pickle protocols do not have an opcode for pickling
2873 * opcode sequences. Calling code should have arranged to first create an
2985 * opcode sequences. Calling code should have arranged to first create an
3109 * opcode sequences. Calling code should have arranged to first create an
3243 * opcode sequences. Calling code should have arranged to first create an
3673 * so generate an EXT opcode.
3716 /* Generate an EXT opcode. */
3770 /* Generate a normal global opcode if we are using a pickle
4201 /* Add NEWOBJ opcode. */
4252 * REDUCE opcode triggers the state_setter(obj, state) function
4316 a GET (or BINGET) opcode, instead of pickling the object
5456 "the STRING opcode argument must be quoted");
5883 identifiers are permitted in Python 3.0, since the INST opcode is only
6266 * the number of bytes following the opcode, holding the index (code) value.
6271 char *codebytes; /* the nbytes bytes after the opcode */
6801 * is the first opcode for protocols >= 2.
6861 #define OP(opcode, load_func) \
6862 case opcode: if (load_func(self) < 0) break; continue;
6864 #define OP_ARG(opcode, load_func, arg) \
6865 case opcode: if (load_func(self, (arg)) < 0) break; continue;
6876 switch ((enum opcode)s[0]) {