Lines Matching defs:src
627 /* Return new dict containing names from src that match scope(s).
629 src is a symbol table dictionary. If the scope of a name matches
636 dictbytype(PyObject *src, int scope_type, int flag, Py_ssize_t offset)
651 sorted_keys = PyDict_Keys(src);
664 v = PyDict_GetItemWithError(src, k);
9095 for (int src = 0; src < bb->b_iused; src++) {
9096 int lineno = bb->b_instr[src].i_lineno;
9097 if (bb->b_instr[src].i_opcode == NOP) {
9107 if (src < bb->b_iused - 1) {
9108 int next_lineno = bb->b_instr[src+1].i_lineno;
9113 COPY_INSTR_LOC(bb->b_instr[src], bb->b_instr[src+1]);
9131 if (dest != src) {
9132 bb->b_instr[dest] = bb->b_instr[src];