Home
last modified time | relevance | path

Searched refs:s_fast (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Modules/
D_json.c2261 PyObject *s_fast = NULL; in encoder_listencode_list() local
2272 s_fast = PySequence_Fast(seq, "_iterencode_list needs a sequence"); in encoder_listencode_list()
2273 if (s_fast == NULL) in encoder_listencode_list()
2275 if (PySequence_Fast_GET_SIZE(s_fast) == 0) { in encoder_listencode_list()
2276 Py_DECREF(s_fast); in encoder_listencode_list()
2307 for (i = 0; i < PySequence_Fast_GET_SIZE(s_fast); i++) { in encoder_listencode_list()
2308 PyObject *obj = PySequence_Fast_GET_ITEM(s_fast, i); in encoder_listencode_list()
2331 Py_DECREF(s_fast); in encoder_listencode_list()
2336 Py_DECREF(s_fast); in encoder_listencode_list()