Lines Matching defs:offset
159 _Py_set_localsplus_info(int offset, PyObject *name, _PyLocals_Kind kind,
163 PyTuple_SET_ITEM(names, offset, name);
164 _PyLocals_SetKind(kinds, offset, kind);
215 for (int offset = 0; offset < co->co_nlocalsplus; offset++) {
216 _PyLocals_Kind k = _PyLocals_GetKind(co->co_localspluskinds, offset);
221 PyObject *name = PyTuple_GET_ITEM(co->co_localsplusnames, offset);
403 int offset = 0;
411 while (offset < PyBytes_GET_SIZE(locations)) {
419 int code = (data[offset] >> 3) & 15;
421 *output++ = data[offset];
424 int blength = (data[offset] & 7)+1;
427 int ldelta = get_line_delta(&data[offset]);
430 offset++;
431 while (offset < PyBytes_GET_SIZE(locations) &&
432 (data[offset] & 128) == 0) {
433 offset++;
532 int offset = 0;
533 for (int i = 0; i < nvarnames; i++, offset++) {
535 _Py_set_localsplus_info(offset, name, CO_FAST_LOCAL,
538 for (int i = 0; i < ncellvars; i++, offset++) {
553 offset -= 1;
558 _Py_set_localsplus_info(offset, name, CO_FAST_CELL,
561 for (int i = 0; i < nfreevars; i++, offset++) {
563 _Py_set_localsplus_info(offset, name, CO_FAST_FREE,
1056 emit_pair(PyObject **bytes, int *offset, int a, int b)
1059 if (*offset + 2 >= len) {
1064 lnotab += *offset;
1067 *offset += 2;
1072 emit_delta(PyObject **bytes, int bdelta, int ldelta, int *offset)
1075 if (!emit_pair(bytes, offset, 255, 0)) {
1081 if (!emit_pair(bytes, offset, bdelta, 127)) {
1088 if (!emit_pair(bytes, offset, bdelta, -128)) {
1094 return emit_pair(bytes, offset, bdelta, ldelta);