Lines Matching defs:state
23 void *state = PyModule_GetState(module);
24 assert(state != NULL);
25 return (bisect_state *)state;
144 bisect_state *state = get_bisect_state(module);
145 result = _PyObject_CallMethod(a, state->str_insert, "nO", index, x);
271 bisect_state *state = get_bisect_state(module);
272 result = _PyObject_CallMethod(a, state->str_insert, "nO", index, x);
300 bisect_state *state = get_bisect_state(module);
301 Py_CLEAR(state->str_insert);
314 bisect_state *state = get_bisect_state(m);
315 state->str_insert = PyUnicode_InternFromString("insert");
316 if (state->str_insert == NULL) {