/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lobject.h | 113 #define val_(o) ((o)->value_) argument 114 #define num_(o) (val_(o).n) argument 118 #define rttype(o) ((o)->tt_) argument 124 #define ttype(o) (rttype(o) & 0x3F) argument 127 #define ttypenv(o) (novariant(rttype(o))) argument 131 #define checktag(o,t) (rttype(o) == (t)) argument 132 #define checktype(o,t) (ttypenv(o) == (t)) argument 133 #define ttisnumber(o) checktag((o), LUA_TNUMBER) argument 134 #define ttisnil(o) checktag((o), LUA_TNIL) argument 135 #define ttisboolean(o) checktag((o), LUA_TBOOLEAN) argument [all …]
|
D | lvm.h | 16 #define tostring(L,o) (ttisstring(o) || (luaV_tostring(L, o))) argument 18 #define tonumber(o,n) (ttisnumber(o) || (((o) = luaV_tonumber(o,n)) != NULL)) argument
|
D | lstate.h | 197 #define gch(o) (&(o)->gch) argument 200 #define rawgco2ts(o) \ argument 202 #define gco2ts(o) (&rawgco2ts(o)->tsv) argument 203 #define rawgco2u(o) check_exp((o)->gch.tt == LUA_TUSERDATA, &((o)->u)) argument 204 #define gco2u(o) (&rawgco2u(o)->uv) argument 205 #define gco2lcl(o) check_exp((o)->gch.tt == LUA_TLCL, &((o)->cl.l)) argument 206 #define gco2ccl(o) check_exp((o)->gch.tt == LUA_TCCL, &((o)->cl.c)) argument 207 #define gco2cl(o) \ argument 209 #define gco2t(o) check_exp((o)->gch.tt == LUA_TTABLE, &((o)->h)) argument 210 #define gco2p(o) check_exp((o)->gch.tt == LUA_TPROTO, &((o)->p)) argument [all …]
|
D | lapi.c | 41 #define isvalid(o) ((o) != luaO_nilobject) argument 47 #define isstackindex(i, o) (isvalid(o) && !ispseudo(i)) argument 49 #define api_checkvalidindex(L, o) api_check(L, isvalid(o), "invalid index") argument 51 #define api_checkstackindex(L, i, o) \ argument 58 TValue *o = ci->func + idx; in index2addr() local 250 StkId o = index2addr(L, idx); in lua_type() local 262 StkId o = index2addr(L, idx); in lua_iscfunction() local 269 const TValue *o = index2addr(L, idx); in lua_isnumber() local 281 const TValue *o = index2addr(L, idx); in lua_isuserdata() local 337 const TValue *o = index2addr(L, idx); in lua_tonumberx() local [all …]
|
D | lgc.c | 75 #define markvalue(g,o) { checkconsistency(o); \ argument 121 static int iscleared (global_State *g, const TValue *o) { in iscleared() 135 void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v) { in luaC_barrier_() 155 void luaC_barrierback_ (lua_State *L, GCObject *o) { in luaC_barrierback_() 191 GCObject *o = obj2gco(uv); in luaC_checkupvalcolor() local 216 GCObject *o = obj2gco(raw + offset); in luaC_newobj() local 243 static void reallymarkobject (global_State *g, GCObject *o) { in reallymarkobject() 312 GCObject *o; in markbeingfnz() local 497 StkId o = th->stack; in traversestack() local 523 GCObject *o = g->gray; in propagatemark() local [all …]
|
D | lfunc.c | 53 GCObject *o = obj2gco(p); in luaF_findupval() local 93 GCObject *o = obj2gco(uv); in luaF_close() local
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | capsule.c | 68 PyCapsule_IsValid(PyObject *o, const char *name) in PyCapsule_IsValid() 80 PyCapsule_GetPointer(PyObject *o, const char *name) in PyCapsule_GetPointer() 98 PyCapsule_GetName(PyObject *o) in PyCapsule_GetName() 110 PyCapsule_GetDestructor(PyObject *o) in PyCapsule_GetDestructor() 122 PyCapsule_GetContext(PyObject *o) in PyCapsule_GetContext() 134 PyCapsule_SetPointer(PyObject *o, void *pointer) in PyCapsule_SetPointer() 153 PyCapsule_SetName(PyObject *o, const char *name) in PyCapsule_SetName() 167 PyCapsule_SetDestructor(PyObject *o, PyCapsule_Destructor destructor) in PyCapsule_SetDestructor() 181 PyCapsule_SetContext(PyObject *o, void *context) in PyCapsule_SetContext() 257 capsule_dealloc(PyObject *o) in capsule_dealloc() [all …]
|
D | abstract.c | 8 #define NEW_STYLE_NUMBER(o) PyType_HasFeature((o)->ob_type, \ argument 49 PyObject_Type(PyObject *o) in PyObject_Type() 61 PyObject_Size(PyObject *o) in PyObject_Size() 79 PyObject_Length(PyObject *o) in PyObject_Length() 93 _PyObject_LengthHint(PyObject *o, Py_ssize_t defaultvalue) in _PyObject_LengthHint() 135 PyObject_GetItem(PyObject *o, PyObject *key) in PyObject_GetItem() 163 PyObject_SetItem(PyObject *o, PyObject *key, PyObject *value) in PyObject_SetItem() 195 PyObject_DelItem(PyObject *o, PyObject *key) in PyObject_DelItem() 227 PyObject_DelItemString(PyObject *o, char *key) in PyObject_DelItemString() 883 PyNumber_Check(PyObject *o) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | capsule.c | 68 PyCapsule_IsValid(PyObject *o, const char *name) in PyCapsule_IsValid() 80 PyCapsule_GetPointer(PyObject *o, const char *name) in PyCapsule_GetPointer() 98 PyCapsule_GetName(PyObject *o) in PyCapsule_GetName() 110 PyCapsule_GetDestructor(PyObject *o) in PyCapsule_GetDestructor() 122 PyCapsule_GetContext(PyObject *o) in PyCapsule_GetContext() 134 PyCapsule_SetPointer(PyObject *o, void *pointer) in PyCapsule_SetPointer() 153 PyCapsule_SetName(PyObject *o, const char *name) in PyCapsule_SetName() 167 PyCapsule_SetDestructor(PyObject *o, PyCapsule_Destructor destructor) in PyCapsule_SetDestructor() 181 PyCapsule_SetContext(PyObject *o, void *context) in PyCapsule_SetContext() 257 capsule_dealloc(PyObject *o) in capsule_dealloc() [all …]
|
D | abstract.c | 8 #define NEW_STYLE_NUMBER(o) PyType_HasFeature((o)->ob_type, \ argument 49 PyObject_Type(PyObject *o) in PyObject_Type() 61 PyObject_Size(PyObject *o) in PyObject_Size() 79 PyObject_Length(PyObject *o) in PyObject_Length() 93 _PyObject_LengthHint(PyObject *o, Py_ssize_t defaultvalue) in _PyObject_LengthHint() 135 PyObject_GetItem(PyObject *o, PyObject *key) in PyObject_GetItem() 163 PyObject_SetItem(PyObject *o, PyObject *key, PyObject *value) in PyObject_SetItem() 195 PyObject_DelItem(PyObject *o, PyObject *key) in PyObject_DelItem() 227 PyObject_DelItemString(PyObject *o, char *key) in PyObject_DelItemString() 883 PyNumber_Check(PyObject *o) [all …]
|
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/ |
D | InternalCryptLib.h | 29 #define OBJ_get0_data(o) ((o)->data) argument 30 #define OBJ_length(o) ((o)->length) argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | datetime.h | 116 #define PyDateTime_GET_YEAR(o) ((((PyDateTime_Date*)o)->data[0] << 8) | \ argument 118 #define PyDateTime_GET_MONTH(o) (((PyDateTime_Date*)o)->data[2]) argument 119 #define PyDateTime_GET_DAY(o) (((PyDateTime_Date*)o)->data[3]) argument 121 #define PyDateTime_DATE_GET_HOUR(o) (((PyDateTime_DateTime*)o)->data[4]) argument 122 #define PyDateTime_DATE_GET_MINUTE(o) (((PyDateTime_DateTime*)o)->data[5]) argument 123 #define PyDateTime_DATE_GET_SECOND(o) (((PyDateTime_DateTime*)o)->data[6]) argument 124 #define PyDateTime_DATE_GET_MICROSECOND(o) \ argument 130 #define PyDateTime_TIME_GET_HOUR(o) (((PyDateTime_Time*)o)->data[0]) argument 131 #define PyDateTime_TIME_GET_MINUTE(o) (((PyDateTime_Time*)o)->data[1]) argument 132 #define PyDateTime_TIME_GET_SECOND(o) (((PyDateTime_Time*)o)->data[2]) argument [all …]
|
D | objimpl.h | 241 #define PyObject_IS_GC(o) (PyType_IS_GC(Py_TYPE(o)) && \ argument 263 #define _Py_AS_GC(o) ((PyGC_Head *)(o)-1) argument 271 #define _PyObject_GC_TRACK(o) do { \ argument 286 #define _PyObject_GC_UNTRACK(o) do { \ argument 296 #define _PyObject_GC_IS_TRACKED(o) \ argument 348 #define PyObject_GET_WEAKREFS_LISTPTR(o) \ argument
|
D | abstract.h | 1160 #define PySequence_Fast_GET_SIZE(o) \ argument 1167 #define PySequence_Fast_GET_ITEM(o, i)\ argument 1174 #define PySequence_ITEM(o, i)\ argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | datetime.h | 116 #define PyDateTime_GET_YEAR(o) ((((PyDateTime_Date*)o)->data[0] << 8) | \ argument 118 #define PyDateTime_GET_MONTH(o) (((PyDateTime_Date*)o)->data[2]) argument 119 #define PyDateTime_GET_DAY(o) (((PyDateTime_Date*)o)->data[3]) argument 121 #define PyDateTime_DATE_GET_HOUR(o) (((PyDateTime_DateTime*)o)->data[4]) argument 122 #define PyDateTime_DATE_GET_MINUTE(o) (((PyDateTime_DateTime*)o)->data[5]) argument 123 #define PyDateTime_DATE_GET_SECOND(o) (((PyDateTime_DateTime*)o)->data[6]) argument 124 #define PyDateTime_DATE_GET_MICROSECOND(o) \ argument 130 #define PyDateTime_TIME_GET_HOUR(o) (((PyDateTime_Time*)o)->data[0]) argument 131 #define PyDateTime_TIME_GET_MINUTE(o) (((PyDateTime_Time*)o)->data[1]) argument 132 #define PyDateTime_TIME_GET_SECOND(o) (((PyDateTime_Time*)o)->data[2]) argument [all …]
|
D | objimpl.h | 241 #define PyObject_IS_GC(o) (PyType_IS_GC(Py_TYPE(o)) && \ argument 263 #define _Py_AS_GC(o) ((PyGC_Head *)(o)-1) argument 271 #define _PyObject_GC_TRACK(o) do { \ argument 286 #define _PyObject_GC_UNTRACK(o) do { \ argument 296 #define _PyObject_GC_IS_TRACKED(o) \ argument 348 #define PyObject_GET_WEAKREFS_LISTPTR(o) \ argument
|
D | abstract.h | 1160 #define PySequence_Fast_GET_SIZE(o) \ argument 1167 #define PySequence_Fast_GET_ITEM(o, i)\ argument 1174 #define PySequence_ITEM(o, i)\ argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/ |
D | encoder.py | 165 def default(self, o): argument 186 def encode(self, o): argument 212 def iterencode(self, o, _one_shot=False): argument 231 def _encoder(o, _orig_encoder=_encoder, _encoding=self.encoding): argument 236 def floatstr(o, allow_nan=self.allow_nan, argument 417 def _iterencode(o, _current_indent_level): argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/ |
D | encoder.py | 160 def default(self, o): argument 180 def encode(self, o): argument 206 def iterencode(self, o, _one_shot=False): argument 225 def _encoder(o, _orig_encoder=_encoder, _encoding=self.encoding): argument 230 def floatstr(o, allow_nan=self.allow_nan, argument 411 def _iterencode(o, _current_indent_level): argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/ |
D | test_recursion.py | 49 def default(self, o): argument 99 def default(self, o): argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/ |
D | test_recursion.py | 49 def default(self, o): argument 99 def default(self, o): argument
|
/device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/src/ |
D | mm_jpeg_mpo_composer.c | 51 #define READ_LONG(b, o) \ argument 64 #define READ_LONG_LITTLE(b, o) \ argument 77 #define READ_SHORT(b, o) \ argument
|
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
D | flags.c | 65 int ret, m, o; in __sflags() local
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/Ipf/ |
D | Common.i | 18 #define NESTED_SETUP(i,l,o,r) \ argument
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/Ipf/ |
D | EbcLowLevel.s | 28 #define NESTED_SETUP(i,l,o,r) \ argument
|