/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | abstract.h | 231 PyAPI_FUNC(int) PyObject_Cmp(PyObject *o1, PyObject *o2, int *result); 660 PyAPI_FUNC(PyObject *) PyNumber_Add(PyObject *o1, PyObject *o2); 669 PyAPI_FUNC(PyObject *) PyNumber_Subtract(PyObject *o1, PyObject *o2); 678 PyAPI_FUNC(PyObject *) PyNumber_Multiply(PyObject *o1, PyObject *o2); 688 PyAPI_FUNC(PyObject *) PyNumber_Divide(PyObject *o1, PyObject *o2); 697 PyAPI_FUNC(PyObject *) PyNumber_FloorDivide(PyObject *o1, PyObject *o2); 707 PyAPI_FUNC(PyObject *) PyNumber_TrueDivide(PyObject *o1, PyObject *o2); 717 PyAPI_FUNC(PyObject *) PyNumber_Remainder(PyObject *o1, PyObject *o2); 727 PyAPI_FUNC(PyObject *) PyNumber_Divmod(PyObject *o1, PyObject *o2); 737 PyAPI_FUNC(PyObject *) PyNumber_Power(PyObject *o1, PyObject *o2, [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | abstract.h | 231 PyAPI_FUNC(int) PyObject_Cmp(PyObject *o1, PyObject *o2, int *result); 660 PyAPI_FUNC(PyObject *) PyNumber_Add(PyObject *o1, PyObject *o2); 669 PyAPI_FUNC(PyObject *) PyNumber_Subtract(PyObject *o1, PyObject *o2); 678 PyAPI_FUNC(PyObject *) PyNumber_Multiply(PyObject *o1, PyObject *o2); 688 PyAPI_FUNC(PyObject *) PyNumber_Divide(PyObject *o1, PyObject *o2); 697 PyAPI_FUNC(PyObject *) PyNumber_FloorDivide(PyObject *o1, PyObject *o2); 707 PyAPI_FUNC(PyObject *) PyNumber_TrueDivide(PyObject *o1, PyObject *o2); 717 PyAPI_FUNC(PyObject *) PyNumber_Remainder(PyObject *o1, PyObject *o2); 727 PyAPI_FUNC(PyObject *) PyNumber_Divmod(PyObject *o1, PyObject *o2); 737 PyAPI_FUNC(PyObject *) PyNumber_Power(PyObject *o1, PyObject *o2, [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lvm.h | 20 #define equalobj(L,o1,o2) (ttisequal(o1, o2) && luaV_equalobj_(L, o1, o2)) argument 22 #define luaV_rawequalobj(o1,o2) equalobj(NULL,o1,o2) argument
|
D | lapi.c | 287 StkId o1 = index2addr(L, index1); in lua_rawequal() local 289 return (isvalid(o1) && isvalid(o2)) ? luaV_rawequalobj(o1, o2) : 0; in lua_rawequal() 294 StkId o1; /* 1st operand */ in lua_arith() local 304 o1 = L->top - 2; in lua_arith() 306 if (ttisnumber(o1) && ttisnumber(o2)) { in lua_arith() 307 setnvalue(o1, luaO_arith(op, nvalue(o1), nvalue(o2))); in lua_arith() 310 luaV_arith(L, o1, o1, o2, cast(TMS, op - LUA_OPADD + TM_ADD)); in lua_arith() 317 StkId o1, o2; in lua_compare() local 320 o1 = index2addr(L, index1); in lua_compare() 322 if (isvalid(o1) && isvalid(o2)) { in lua_compare() [all …]
|
D | lobject.h | 150 #define ttisequal(o1,o2) (rttype(o1) == rttype(o2)) argument 369 #define ttisequal(o1,o2) \ argument 370 (ttisnumber(o1) ? ttisnumber(o2) : (tt_(o1) == tt_(o2)))
|
D | lcode.c | 730 int o1 = luaK_exp2RK(fs, e1); in codearith() local 731 if (o1 > o2) { in codearith() 739 e1->u.info = luaK_codeABC(fs, op, 0, o1, o2); in codearith() 748 int o1 = luaK_exp2RK(fs, e1); in codecomp() local 754 temp = o1; o1 = o2; o2 = temp; /* o1 <==> o2 */ in codecomp() 757 e1->u.info = condjump(fs, op, cond, o1, o2); in codecomp()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/i18n/ |
D | msgfmt.py | 81 for o1, l1, o2, l2 in offsets: 82 koffsets += [l1, o1+keystart]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/ |
D | Instances.py | 31 o1 = c()
|
D | NewInstances.py | 40 o1 = c()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_pprint.py | 171 o1 = list(range(10)) 173 o = [o1, o2]
|
D | test_weakref.py | 1064 o1 = Object('1') 1066 d[o1] = 'something' 1069 del d[o1] 1075 o1 = Object('1') 1077 d['something'] = o1
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | _testcapimodule.c | 1203 PyObject *o1 = PyObject_Str(NULL), *o2 = PyObject_Unicode(NULL); in test_null_strings() local 1204 PyObject *tuple = PyTuple_Pack(2, o1, o2); in test_null_strings() 1205 Py_XDECREF(o1); in test_null_strings()
|
D | posixmodule.c | 2581 PyObject *o1, *o2; in posix_rename() local 2584 if (!PyArg_ParseTuple(args, "OO:rename", &o1, &o2)) in posix_rename() 2586 if (!convert_to_unicode(&o1)) in posix_rename() 2589 Py_DECREF(o1); in posix_rename() 2593 result = MoveFileW(PyUnicode_AsUnicode(o1), in posix_rename() 2596 Py_DECREF(o1); in posix_rename()
|
D | datetimemodule.c | 1022 classify_two_utcoffsets(PyObject *o1, int *offset1, naivety *n1, in classify_two_utcoffsets() argument 1027 if (get_tzinfo_member(o1) == get_tzinfo_member(o2)) { in classify_two_utcoffsets() 1032 *n1 = classify_utcoffset(o1, tzinfoarg1, offset1); in classify_two_utcoffsets()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | abstract.c | 33 PyObject_Cmp(PyObject *o1, PyObject *o2, int *result) in PyObject_Cmp() argument 37 if (o1 == NULL || o2 == NULL) { in PyObject_Cmp() 41 r = PyObject_Compare(o1, o2); in PyObject_Cmp()
|
D | stringobject.c | 1249 _PyString_Eq(PyObject *o1, PyObject *o2) in _PyString_Eq() argument 1251 PyStringObject *a = (PyStringObject*) o1; in _PyString_Eq()
|
D | unicodeobject.c | 4378 int o1, o2, o3, i2, i3; in PyUnicode_BuildEncodingMap() local 4382 o1 = decode[i]>>11; in PyUnicode_BuildEncodingMap() 4384 i2 = 16*mlevel1[o1] + o2; in PyUnicode_BuildEncodingMap()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | abstract.c | 33 PyObject_Cmp(PyObject *o1, PyObject *o2, int *result) in PyObject_Cmp() argument 37 if (o1 == NULL || o2 == NULL) { in PyObject_Cmp() 41 r = PyObject_Compare(o1, o2); in PyObject_Cmp()
|
D | stringobject.c | 1254 _PyString_Eq(PyObject *o1, PyObject *o2) in _PyString_Eq() argument 1256 PyStringObject *a = (PyStringObject*) o1; in _PyString_Eq()
|
D | unicodeobject.c | 4463 int o1, o2, o3, i2, i3; in PyUnicode_BuildEncodingMap() local 4467 o1 = decode[i]>>11; in PyUnicode_BuildEncodingMap() 4469 i2 = 16*mlevel1[o1] + o2; in PyUnicode_BuildEncodingMap()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | datetimemodule.c | 1022 classify_two_utcoffsets(PyObject *o1, int *offset1, naivety *n1, in classify_two_utcoffsets() argument 1027 if (get_tzinfo_member(o1) == get_tzinfo_member(o2)) { in classify_two_utcoffsets() 1032 *n1 = classify_utcoffset(o1, tzinfoarg1, offset1); in classify_two_utcoffsets()
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/build_hikey/ |
D | xa_hikey.img | 97 Y0��v��0�qv�0u^v��0KKv�18veA1�$v�o1_v �1��ur�1g�u��1��u�(2&�u:W2j�um�2… 1559 …D�6A��@P$m`CAv�2B"v�2B2B2B2B2B2B2B2B�"�6A0o10B0@O10V0`U� o1 &0`"�P"� $0@"��…
|
/device/linaro/hikey/hifi/firmware/ |
D | hifi-hikey960.img | 99 Y0��v��0�qv�0u^v��0KKv�18veA1�$v�o1_v �1��ur�1g�u��1��u�(2&�u:W2j�um�2… 1567 …D�6A��@P$m`CAv�2B"v�2B2B2B2B2B2B2B2B�"�6A0o10B0@O10V0`U� o1 &0`"�P"� $0@"��…
|