Home
last modified time | relevance | path

Searched defs:O (Results 1 – 15 of 15) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dabstract.h218 #define PyObject_DelAttrString(O,A) PyObject_SetAttrString((O),(A),NULL) argument
229 #define PyObject_DelAttr(O,A) PyObject_SetAttr((O),(A),NULL) argument
1291 #define PyMapping_DelItemString(O,K) PyObject_DelItemString((O),(K)) argument
1301 #define PyMapping_DelItem(O,K) PyObject_DelItem((O),(K)) argument
1332 #define PyMapping_Keys(O) PyObject_CallMethod(O,"keys",NULL) argument
1342 #define PyMapping_Values(O) PyObject_CallMethod(O,"values",NULL) argument
1354 #define PyMapping_Items(O) PyObject_CallMethod(O,"items",NULL) argument
DcStringIO.h65 #define PycStringIO_InputCheck(O) \ argument
67 #define PycStringIO_OutputCheck(O) \ argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dabstract.h218 #define PyObject_DelAttrString(O,A) PyObject_SetAttrString((O),(A),NULL) argument
229 #define PyObject_DelAttr(O,A) PyObject_SetAttr((O),(A),NULL) argument
1291 #define PyMapping_DelItemString(O,K) PyObject_DelItemString((O),(K)) argument
1301 #define PyMapping_DelItem(O,K) PyObject_DelItem((O),(K)) argument
1332 #define PyMapping_Keys(O) PyObject_CallMethod(O,"keys",NULL) argument
1342 #define PyMapping_Values(O) PyObject_CallMethod(O,"values",NULL) argument
1354 #define PyMapping_Items(O) PyObject_CallMethod(O,"items",NULL) argument
DcStringIO.h65 #define PycStringIO_InputCheck(O) \ argument
67 #define PycStringIO_OutputCheck(O) \ argument
/device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/NorthCluster/Include/
DVlvAccess.h176 #define PciCfg32Or_CF8CFC(B,D,F,R,O) \ argument
184 #define PciCfg32AndThenOr_CF8CFC(B,D,F,R,A,O) \ argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dcompile.c1091 #define ADDOP_O(C, OP, O, TYPE) { \ argument
1096 #define ADDOP_NAME(C, OP, O, TYPE) { \ argument
1101 #define ADDOP_I(C, OP, O) { \ argument
1106 #define ADDOP_JABS(C, OP, O) { \ argument
1111 #define ADDOP_JREL(C, OP, O) { \ argument
Dceval.c218 #define PCALL(O) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dcompile.c1114 #define ADDOP_O(C, OP, O, TYPE) { \ argument
1119 #define ADDOP_NAME(C, OP, O, TYPE) { \ argument
1124 #define ADDOP_I(C, OP, O) { \ argument
1129 #define ADDOP_JABS(C, OP, O) { \ argument
1134 #define ADDOP_JREL(C, OP, O) { \ argument
Dceval.c220 #define PCALL(O) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
DcStringIO.c50 #define IOOOBJECT(O) ((IOobject*)(O)) argument
DcPickle.c167 #define Pdata_Check(O) (Py_TYPE(O) == &PdataType) argument
262 #define PDATA_PUSH(D, O, ER) { \ argument
272 #define PDATA_APPEND(D, O, ER) { \ argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
DcStringIO.c50 #define IOOOBJECT(O) ((IOobject*)(O)) argument
DcPickle.c167 #define Pdata_Check(O) (Py_TYPE(O) == &PdataType) argument
263 #define PDATA_PUSH(D, O, ER) { \ argument
273 #define PDATA_APPEND(D, O, ER) { \ argument
/device/google/contexthub/firmware/os/algos/
Dfusion.c304 struct Mat44 O; in fusionPredict() local
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_descr.py3114 class O(object): class