Home
last modified time | relevance | path

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

/third_party/python/Include/internal/
Dpycore_long.h50 static inline PyObject* __PyLong_GetSmallInt_internal(int value) in __PyLong_GetSmallInt_internal() function
65 { return __PyLong_GetSmallInt_internal(0); } in _PyLong_GetZero()
70 { return __PyLong_GetSmallInt_internal(1); } in _PyLong_GetOne()
/third_party/python/Objects/
Dlongobject.c45 PyObject *v = __PyLong_GetSmallInt_internal(ival); in get_small_int()