Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Ddictobject.c6668 PyDictValues *values = _PyObject_InlineValues(obj);
6709 PyDictValues *values = _PyObject_InlineValues(obj);
6868 PyDictValues *values = _PyObject_InlineValues(obj);
6884 PyDictValues *values = _PyObject_InlineValues(obj);
6968 PyDictValues *values = _PyObject_InlineValues(obj);
7046 PyDictValues *values = _PyObject_InlineValues(obj);
7079 PyDictValues *values = _PyObject_InlineValues(obj);
7096 PyDictValues *values = _PyObject_InlineValues(obj);
7187 if (FT_ATOMIC_LOAD_PTR_RELAXED(mp->ma_values) != _PyObject_InlineValues(obj)) {
7212 FT_ATOMIC_STORE_UINT8(_PyObject_InlineValues(obj)->valid, 0);
[all …]
/external/python/cpython3/Include/internal/
Dpycore_object.h741 _PyObject_InlineValues(PyObject *obj) in _PyObject_InlineValues() function
/external/python/cpython3/Python/
Dexecutor_cases.c.h1953 if (!_PyObject_InlineValues(owner)->valid) {
1967 attr = _PyObject_InlineValues(owner)->values[index];
1987 attr = _PyObject_InlineValues(owner)->values[index];
2214 if (_PyObject_InlineValues(owner)->valid == 0) {
2229 PyDictValues *values = _PyObject_InlineValues(owner);
2880 if (!_PyObject_InlineValues(owner)->valid) {
Dbytecodes.c1948 DEOPT_IF(!_PyObject_InlineValues(owner)->valid); in dummy_func()
1952 attr = _PyObject_InlineValues(owner)->values[index]; in dummy_func()
2119 DEOPT_IF(_PyObject_InlineValues(owner)->valid == 0); in dummy_func()
2125 PyDictValues *values = _PyObject_InlineValues(owner); in dummy_func()
2954 DEOPT_IF(!_PyObject_InlineValues(owner)->valid); in dummy_func()
Dgenerated_cases.c.h3866 DEOPT_IF(!_PyObject_InlineValues(owner)->valid, LOAD_ATTR); in TARGET()
3871 attr = _PyObject_InlineValues(owner)->values[index]; in TARGET()
3982 DEOPT_IF(!_PyObject_InlineValues(owner)->valid, LOAD_ATTR); in TARGET()
4097 DEOPT_IF(!_PyObject_InlineValues(owner)->valid, LOAD_ATTR); in TARGET()
5518 DEOPT_IF(_PyObject_InlineValues(owner)->valid == 0, STORE_ATTR); in TARGET()
5526 PyDictValues *values = _PyObject_InlineValues(owner); in TARGET()
Dspecialize.c844 if (type->tp_flags & Py_TPFLAGS_INLINE_VALUES && _PyObject_InlineValues(owner)->valid) { in specialize_dict_access()
/external/python/cpython3/Modules/
D_testinternalcapi.c1359 PyDictValues *values = _PyObject_InlineValues(obj); in get_object_dict_values()
1997 _PyObject_InlineValues(obj)->valid) { in has_inline_values()