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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A D_json.c2211 PyObject *s_fast = NULL; local
2222 s_fast = PySequence_Fast(seq, "_iterencode_list needs a sequence");
2223 if (s_fast == NULL)
2225 if (PySequence_Fast_GET_SIZE(s_fast) == 0) {
2226 Py_DECREF(s_fast);
2257 for (i = 0; i < PySequence_Fast_GET_SIZE(s_fast); i++) {
2258 PyObject *obj = PySequence_Fast_GET_ITEM(s_fast, i);
2281 Py_DECREF(s_fast);
2286 Py_DECREF(s_fast);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_json.c2219 PyObject *s_fast = NULL; local
2232 s_fast = PySequence_Fast(seq, "_iterencode_list needs a sequence");
2233 if (s_fast == NULL)
2235 num_items = PySequence_Fast_GET_SIZE(s_fast);
2237 Py_DECREF(s_fast);
2257 seq_items = PySequence_Fast_ITEMS(s_fast);
2293 Py_DECREF(s_fast);
2298 Py_DECREF(s_fast);

Completed in 12 milliseconds