Searched defs:lnotab (Results 1 - 9 of 9) sorted by relevance

/external/python/cpython3/Python/
H A Dpeephole.c432 unsigned char *lnotab; local
445 /* Bypass optimization when the lnotab table is too complex */
447 lnotab = (unsigned char*)PyBytes_AS_STRING(lnotab_obj);
450 if (memchr(lnotab, 255, tabsiz) != NULL) {
718 /* Fixup lnotab */
730 cum_orig_offset += lnotab[i];
736 lnotab[i] = (unsigned char)offset_delta;
H A Dmarshal.c1338 PyObject *lnotab = NULL; local
1401 lnotab = r_object(p);
1402 if (lnotab == NULL)
1410 firstlineno, lnotab);
1422 Py_XDECREF(lnotab);
H A Dcompile.c4813 PyObject *a_lnotab; /* string containing lnotab */
4814 int a_lnotab_off; /* offset into lnotab */
4959 unsigned char *lnotab; local
4985 lnotab = (unsigned char *)
4988 *lnotab++ = 255;
4989 *lnotab++ = 0;
5023 lnotab = (unsigned char *)
5025 *lnotab++ = d_bytecode;
5026 *lnotab++ = k;
5029 *lnotab
[all...]
/external/python/cpython2/Objects/
H A Dcodeobject.c97 PyObject *lnotab)
110 lnotab == NULL || !PyString_Check(lnotab) ||
143 Py_INCREF(lnotab);
144 co->co_lnotab = lnotab;
189 emptystring /* lnotab */
264 varnames, filename, name, firstlineno, lnotab[, freevars[, cellvars]])\n\
285 PyObject *lnotab; local
294 &firstlineno, &lnotab,
335 name, firstlineno, lnotab);
93 PyCode_New(int argcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, int firstlineno, PyObject *lnotab) argument
[all...]
H A Dframeobject.c101 unsigned char *lnotab = NULL; /* Iterating over co_lnotab */ local
153 lnotab = (unsigned char *) tmp;
158 addr += lnotab[offset];
159 line += lnotab[offset+1];
/external/python/cpython3/Objects/
H A Dframeobject.c70 unsigned char *lnotab = NULL; /* Iterating over co_lnotab */ local
134 lnotab = (unsigned char *) tmp;
139 addr += lnotab[offset];
140 line += (signed char)lnotab[offset+1];
H A Dcodeobject.c110 PyObject *lnotab)
126 lnotab == NULL || !PyBytes_Check(lnotab) ||
199 Py_INCREF(lnotab);
200 co->co_lnotab = lnotab;
246 emptystring /* lnotab */
321 lnotab[, freevars[, cellvars]])\n\
343 PyObject *lnotab; local
353 &firstlineno, &lnotab,
401 name, firstlineno, lnotab);
105 PyCode_New(int argcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, int firstlineno, PyObject *lnotab) argument
[all...]
/external/python/cpython2/Python/
H A Dmarshal.c1012 PyObject *lnotab = NULL; local
1046 lnotab = r_object(p);
1047 if (lnotab == NULL)
1054 firstlineno, lnotab);
1065 Py_XDECREF(lnotab);
H A Dcompile.c3402 PyObject *a_lnotab; /* string containing lnotab */
3403 int a_lnotab_off; /* offset into lnotab */
3554 unsigned char *lnotab; local
3581 lnotab = (unsigned char *)
3584 *lnotab++ = 255;
3585 *lnotab++ = 0;
3607 lnotab = (unsigned char *)
3609 *lnotab++ = d_bytecode;
3610 *lnotab++ = 255;
3613 *lnotab
[all...]

Completed in 212 milliseconds