Home | History | Annotate | Download | only in Python

Lines Matching full:addrmap

307     int *addrmap = NULL;
346 addrmap = PyMem_New(int, codelen);
347 if (addrmap == NULL) {
601 addrmap[i] = i - nops;
609 new_line = addrmap[cum_orig_line];
629 j = addrmap[GETARG(codestr, i)];
639 j = addrmap[GETARG(codestr, i) + i + 3] - addrmap[i] - 3;
650 PyMem_Free(addrmap);
661 if (addrmap != NULL)
662 PyMem_Free(addrmap);