Lines Matching defs:copy
840 /* Cannot copy a block if it has a fallthrough, since
2125 struct fblockinfo copy = *top;
2127 if (!compiler_unwind_fblock(c, ©, preserve_tos)) {
2133 c->u->u_fblock[c->u->u_nfblocks] = copy;
3619 [exc] L1: COPY 1 ) save copy of the original exception
5639 exc = copy of (exception, instance, traceback)
6518 // Need to make a copy for (possibly) storing later:
6738 ADDOP_I(c, DICT_UPDATE, 2); // [copy, keys]
6739 ADDOP_I(c, UNPACK_SEQUENCE, size); // [copy, keys...]
6741 ADDOP_I(c, COPY, 1 + size--); // [copy, keys..., copy]
6742 ADDOP_I(c, SWAP, 2); // [copy, keys..., copy, key]
6743 ADDOP(c, DELETE_SUBSCR); // [copy, keys...]
6861 // No match. Pop the remaining copy of the subject and fail:
6870 // - A copy of the subject.
6897 // Pop the copy of the subject:
7033 // Only copy the subject if we're *not* on the last case:
7319 ExceptStack *copy = PyMem_Malloc(sizeof(ExceptStack));
7320 if (copy == NULL) {
7324 memcpy(copy, stack, sizeof(ExceptStack));
7325 return copy;
7364 ExceptStack *copy = copy_except_stack(except_stack);
7365 if (copy == NULL) {
7368 instr->i_target->b_exceptstack = copy;
7383 ExceptStack *copy = copy_except_stack(except_stack);
7384 if (copy == NULL) {
7387 instr->i_target->b_exceptstack = copy;
9074 /* copy only blocks without line number (like implicit 'return None's) */
9240 * then copy the line number. If a successor block has no line number, and only
9399 * copy the line number from the sole predecessor block.