Lines Matching defs:kind
159 _Py_set_localsplus_info(int offset, PyObject *name, _PyLocals_Kind kind,
164 _PyLocals_SetKind(kinds, offset, kind);
178 _PyLocals_Kind kind = _PyLocals_GetKind(kinds, i);
179 if (kind & CO_FAST_LOCAL) {
181 if (kind & CO_FAST_CELL) {
185 else if (kind & CO_FAST_CELL) {
189 else if (kind & CO_FAST_FREE) {
208 get_localsplus_names(PyCodeObject *co, _PyLocals_Kind kind, int num)
217 if ((k & kind) == 0) {
554 _PyLocals_Kind kind = _PyLocals_GetKind(localspluskinds, argoffset);
555 _PyLocals_SetKind(localspluskinds, argoffset, kind | CO_FAST_CELL);