Home
last modified time | relevance | path

Searched defs:op (Results 1 – 25 of 264) sorted by relevance

1234567891011

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dcellobject.c8 PyCellObject *op; in PyCell_New() local
21 PyCell_Get(PyObject *op) in PyCell_Get()
32 PyCell_Set(PyObject *op, PyObject *obj) in PyCell_Set()
47 cell_dealloc(PyCellObject *op) in cell_dealloc()
73 cell_repr(PyCellObject *op) in cell_repr()
84 cell_traverse(PyCellObject *op, visitproc visit, void *arg) in cell_traverse()
91 cell_clear(PyCellObject *op) in cell_clear()
98 cell_get_contents(PyCellObject *op, void *closure) in cell_get_contents()
Dfuncobject.c12 PyFunctionObject *op = PyObject_GC_New(PyFunctionObject, in PyFunction_New() local
64 PyFunction_GetCode(PyObject *op) in PyFunction_GetCode()
74 PyFunction_GetGlobals(PyObject *op) in PyFunction_GetGlobals()
84 PyFunction_GetModule(PyObject *op) in PyFunction_GetModule()
94 PyFunction_GetDefaults(PyObject *op) in PyFunction_GetDefaults()
104 PyFunction_SetDefaults(PyObject *op, PyObject *defaults) in PyFunction_SetDefaults()
125 PyFunction_GetClosure(PyObject *op) in PyFunction_GetClosure()
135 PyFunction_SetClosure(PyObject *op, PyObject *closure) in PyFunction_SetClosure()
187 func_get_dict(PyFunctionObject *op) in func_get_dict()
201 func_set_dict(PyFunctionObject *op, PyObject *value) in func_set_dict()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dcellobject.c8 PyCellObject *op; in PyCell_New() local
21 PyCell_Get(PyObject *op) in PyCell_Get()
32 PyCell_Set(PyObject *op, PyObject *obj) in PyCell_Set()
47 cell_dealloc(PyCellObject *op) in cell_dealloc()
73 cell_repr(PyCellObject *op) in cell_repr()
84 cell_traverse(PyCellObject *op, visitproc visit, void *arg) in cell_traverse()
91 cell_clear(PyCellObject *op) in cell_clear()
98 cell_get_contents(PyCellObject *op, void *closure) in cell_get_contents()
Dfuncobject.c12 PyFunctionObject *op = PyObject_GC_New(PyFunctionObject, in PyFunction_New() local
64 PyFunction_GetCode(PyObject *op) in PyFunction_GetCode()
74 PyFunction_GetGlobals(PyObject *op) in PyFunction_GetGlobals()
84 PyFunction_GetModule(PyObject *op) in PyFunction_GetModule()
94 PyFunction_GetDefaults(PyObject *op) in PyFunction_GetDefaults()
104 PyFunction_SetDefaults(PyObject *op, PyObject *defaults) in PyFunction_SetDefaults()
125 PyFunction_GetClosure(PyObject *op) in PyFunction_GetClosure()
135 PyFunction_SetClosure(PyObject *op, PyObject *closure) in PyFunction_SetClosure()
187 func_get_dict(PyFunctionObject *op) in func_get_dict()
201 func_set_dict(PyFunctionObject *op, PyObject *value) in func_set_dict()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dtupleobject.h36 #define PyTuple_Check(op) \ argument
38 #define PyTuple_CheckExact(op) (Py_TYPE(op) == &PyTuple_Type) argument
50 #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i]) argument
51 #define PyTuple_GET_SIZE(op) Py_SIZE(op) argument
54 #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v) argument
Ddatetime.h170 #define PyDate_Check(op) PyObject_TypeCheck(op, &PyDateTime_DateType) argument
171 #define PyDate_CheckExact(op) (Py_TYPE(op) == &PyDateTime_DateType) argument
173 #define PyDateTime_Check(op) PyObject_TypeCheck(op, &PyDateTime_DateTimeType) argument
174 #define PyDateTime_CheckExact(op) (Py_TYPE(op) == &PyDateTime_DateTimeType) argument
176 #define PyTime_Check(op) PyObject_TypeCheck(op, &PyDateTime_TimeType) argument
177 #define PyTime_CheckExact(op) (Py_TYPE(op) == &PyDateTime_TimeType) argument
179 #define PyDelta_Check(op) PyObject_TypeCheck(op, &PyDateTime_DeltaType) argument
180 #define PyDelta_CheckExact(op) (Py_TYPE(op) == &PyDateTime_DeltaType) argument
182 #define PyTZInfo_Check(op) PyObject_TypeCheck(op, &PyDateTime_TZInfoType) argument
183 #define PyTZInfo_CheckExact(op) (Py_TYPE(op) == &PyDateTime_TZInfoType) argument
[all …]
Dlistobject.h43 #define PyList_Check(op) \ argument
45 #define PyList_CheckExact(op) (Py_TYPE(op) == &PyList_Type) argument
61 #define PyList_GET_ITEM(op, i) (((PyListObject *)(op))->ob_item[i]) argument
62 #define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v)) argument
63 #define PyList_GET_SIZE(op) Py_SIZE(op) argument
Dstringobject.h58 #define PyString_Check(op) \ argument
60 #define PyString_CheckExact(op) (Py_TYPE(op) == &PyString_Type) argument
88 #define PyString_CHECK_INTERNED(op) (((PyStringObject *)(op))->ob_sstate) argument
91 #define PyString_AS_STRING(op) (((PyStringObject *)(op))->ob_sval) argument
92 #define PyString_GET_SIZE(op) Py_SIZE(op) argument
Ddictobject.h99 #define PyDict_Check(op) \ argument
101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type) argument
102 #define PyDictKeys_Check(op) (Py_TYPE(op) == &PyDictKeys_Type) argument
103 #define PyDictItems_Check(op) (Py_TYPE(op) == &PyDictItems_Type) argument
104 #define PyDictValues_Check(op) (Py_TYPE(op) == &PyDictValues_Type) argument
106 # define PyDictViewSet_Check(op) \ argument
Dintobject.h30 #define PyInt_Check(op) \ argument
32 #define PyInt_CheckExact(op) ((op)->ob_type == &PyInt_Type) argument
51 #define PyInt_AS_LONG(op) (((PyIntObject *)(op))->ob_ival) argument
Dweakrefobject.h45 #define PyWeakref_CheckRef(op) PyObject_TypeCheck(op, &_PyWeakref_RefType) argument
46 #define PyWeakref_CheckRefExact(op) \ argument
48 #define PyWeakref_CheckProxy(op) \ argument
55 #define PyWeakref_Check(op) \ argument
Dcellobject.h16 #define PyCell_Check(op) (Py_TYPE(op) == &PyCell_Type) argument
22 #define PyCell_GET(op) (((PyCellObject *)(op))->ob_ref) argument
23 #define PyCell_SET(op, v) (((PyCellObject *)(op))->ob_ref = v) argument
Dmemoryobject.h11 #define PyMemoryView_Check(op) (Py_TYPE(op) == &PyMemoryView_Type) argument
14 #define PyMemoryView_GET_BUFFER(op) (&((PyMemoryViewObject *)(op))->view) argument
16 #define PyMemoryView_GET_BASE(op) (((PyMemoryViewObject *)(op))->view.obj) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dtupleobject.h36 #define PyTuple_Check(op) \ argument
38 #define PyTuple_CheckExact(op) (Py_TYPE(op) == &PyTuple_Type) argument
50 #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i]) argument
51 #define PyTuple_GET_SIZE(op) Py_SIZE(op) argument
54 #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v) argument
Ddatetime.h170 #define PyDate_Check(op) PyObject_TypeCheck(op, &PyDateTime_DateType) argument
171 #define PyDate_CheckExact(op) (Py_TYPE(op) == &PyDateTime_DateType) argument
173 #define PyDateTime_Check(op) PyObject_TypeCheck(op, &PyDateTime_DateTimeType) argument
174 #define PyDateTime_CheckExact(op) (Py_TYPE(op) == &PyDateTime_DateTimeType) argument
176 #define PyTime_Check(op) PyObject_TypeCheck(op, &PyDateTime_TimeType) argument
177 #define PyTime_CheckExact(op) (Py_TYPE(op) == &PyDateTime_TimeType) argument
179 #define PyDelta_Check(op) PyObject_TypeCheck(op, &PyDateTime_DeltaType) argument
180 #define PyDelta_CheckExact(op) (Py_TYPE(op) == &PyDateTime_DeltaType) argument
182 #define PyTZInfo_Check(op) PyObject_TypeCheck(op, &PyDateTime_TZInfoType) argument
183 #define PyTZInfo_CheckExact(op) (Py_TYPE(op) == &PyDateTime_TZInfoType) argument
[all …]
Dlistobject.h43 #define PyList_Check(op) \ argument
45 #define PyList_CheckExact(op) (Py_TYPE(op) == &PyList_Type) argument
61 #define PyList_GET_ITEM(op, i) (((PyListObject *)(op))->ob_item[i]) argument
62 #define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v)) argument
63 #define PyList_GET_SIZE(op) Py_SIZE(op) argument
Dstringobject.h58 #define PyString_Check(op) \ argument
60 #define PyString_CheckExact(op) (Py_TYPE(op) == &PyString_Type) argument
88 #define PyString_CHECK_INTERNED(op) (((PyStringObject *)(op))->ob_sstate) argument
91 #define PyString_AS_STRING(op) (((PyStringObject *)(op))->ob_sval) argument
92 #define PyString_GET_SIZE(op) Py_SIZE(op) argument
Ddictobject.h99 #define PyDict_Check(op) \ argument
101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type) argument
102 #define PyDictKeys_Check(op) (Py_TYPE(op) == &PyDictKeys_Type) argument
103 #define PyDictItems_Check(op) (Py_TYPE(op) == &PyDictItems_Type) argument
104 #define PyDictValues_Check(op) (Py_TYPE(op) == &PyDictValues_Type) argument
106 # define PyDictViewSet_Check(op) \ argument
Dintobject.h30 #define PyInt_Check(op) \ argument
32 #define PyInt_CheckExact(op) ((op)->ob_type == &PyInt_Type) argument
52 #define PyInt_AS_LONG(op) (((PyIntObject *)(op))->ob_ival) argument
Dweakrefobject.h45 #define PyWeakref_CheckRef(op) PyObject_TypeCheck(op, &_PyWeakref_RefType) argument
46 #define PyWeakref_CheckRefExact(op) \ argument
48 #define PyWeakref_CheckProxy(op) \ argument
52 #define PyWeakref_Check(op) \ argument
Dcellobject.h16 #define PyCell_Check(op) (Py_TYPE(op) == &PyCell_Type) argument
22 #define PyCell_GET(op) (((PyCellObject *)(op))->ob_ref) argument
23 #define PyCell_SET(op, v) (((PyCellObject *)(op))->ob_ref = v) argument
Dmemoryobject.h11 #define PyMemoryView_Check(op) (Py_TYPE(op) == &PyMemoryView_Type) argument
14 #define PyMemoryView_GET_BUFFER(op) (&((PyMemoryViewObject *)(op))->view) argument
16 #define PyMemoryView_GET_BASE(op) (((PyMemoryViewObject *)(op))->view.obj) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dopcode.py27 def def_op(name, op): argument
31 def name_op(name, op): argument
35 def jrel_op(name, op): argument
39 def jabs_op(name, op): argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dopcode.py27 def def_op(name, op): argument
31 def name_op(name, op): argument
35 def jrel_op(name, op): argument
39 def jabs_op(name, op): argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dgcmodule.c309 PyObject *op = FROM_GC(gc); in append_objects() local
357 visit_decref(PyObject *op, void *data) in visit_decref()
393 visit_reachable(PyObject *op, PyGC_Head *reachable) in visit_reachable()
468 PyObject *op = FROM_GC(gc); in move_unreachable() local
504 has_finalizer(PyObject *op) in has_finalizer()
524 PyObject *op = FROM_GC(gc); in untrack_dicts() local
546 PyObject *op = FROM_GC(gc); in move_finalizers() local
560 visit_move(PyObject *op, PyGC_Head *tolist) in visit_move()
604 PyObject *op; /* generally FROM_GC(gc) */ in handle_weakrefs() local
757 debug_cycle(char *msg, PyObject *op) in debug_cycle()
[all …]

1234567891011