Home
last modified time | relevance | path

Searched refs:vv (Results 1 – 23 of 23) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dlongobject.c248 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow) in PyLong_AsLongAndOverflow() argument
259 if (vv == NULL) { in PyLong_AsLongAndOverflow()
264 if(PyInt_Check(vv)) in PyLong_AsLongAndOverflow()
265 return PyInt_AsLong(vv); in PyLong_AsLongAndOverflow()
267 if (!PyLong_Check(vv)) { in PyLong_AsLongAndOverflow()
269 nb = vv->ob_type->tp_as_number; in PyLong_AsLongAndOverflow()
275 vv = (*nb->nb_int) (vv); in PyLong_AsLongAndOverflow()
276 if (vv == NULL) in PyLong_AsLongAndOverflow()
279 if(PyInt_Check(vv)) { in PyLong_AsLongAndOverflow()
280 res = PyInt_AsLong(vv); in PyLong_AsLongAndOverflow()
[all …]
Dmemoryobject.c718 Py_buffer vv, ww; in memory_richcompare() local
722 vv.obj = NULL; in memory_richcompare()
726 if (PyObject_GetBuffer(v, &vv, PyBUF_CONTIG_RO) == -1) { in memory_richcompare()
735 if (vv.itemsize != ww.itemsize || vv.len != ww.len) in memory_richcompare()
738 equal = !memcmp(vv.buf, ww.buf, vv.len); in memory_richcompare()
741 PyBuffer_Release(&vv); in memory_richcompare()
751 PyBuffer_Release(&vv); in memory_richcompare()
Dintobject.c837 PyObject *vv, *ww, *result; in int_lshift() local
848 vv = PyLong_FromLong(PyInt_AS_LONG(v)); in int_lshift()
849 if (vv == NULL) in int_lshift()
853 Py_DECREF(vv); in int_lshift()
856 result = PyNumber_Lshift(vv, ww); in int_lshift()
857 Py_DECREF(vv); in int_lshift()
863 vv = PyLong_FromLong(PyInt_AS_LONG(v)); in int_lshift()
864 if (vv == NULL) in int_lshift()
868 Py_DECREF(vv); in int_lshift()
871 result = PyNumber_Lshift(vv, ww); in int_lshift()
[all …]
Dfloatobject.c530 PyObject *vv = NULL; in float_richcompare() local
542 vv = PyLong_FromDouble(intpart); in float_richcompare()
543 if (vv == NULL) in float_richcompare()
562 temp = PyNumber_Lshift(vv, one); in float_richcompare()
565 Py_DECREF(vv); in float_richcompare()
566 vv = temp; in float_richcompare()
568 temp = PyNumber_Or(vv, one); in float_richcompare()
571 Py_DECREF(vv); in float_richcompare()
572 vv = temp; in float_richcompare()
575 r = PyObject_RichCompareBool(vv, ww, op); in float_richcompare()
[all …]
Dobject.c769 Py_uintptr_t vv = (Py_uintptr_t)v; in default_3way_compare() local
771 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0; in default_3way_compare()
Dtypeobject.c630 Py_uintptr_t vv, ww; in type_richcompare() local
652 vv = (Py_uintptr_t)v; in type_richcompare()
655 case Py_LT: c = vv < ww; break; in type_richcompare()
656 case Py_LE: c = vv <= ww; break; in type_richcompare()
657 case Py_EQ: c = vv == ww; break; in type_richcompare()
658 case Py_NE: c = vv != ww; break; in type_richcompare()
659 case Py_GT: c = vv > ww; break; in type_richcompare()
660 case Py_GE: c = vv >= ww; break; in type_richcompare()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
Dlongobject.c248 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow) in PyLong_AsLongAndOverflow() argument
259 if (vv == NULL) { in PyLong_AsLongAndOverflow()
264 if(PyInt_Check(vv)) in PyLong_AsLongAndOverflow()
265 return PyInt_AsLong(vv); in PyLong_AsLongAndOverflow()
267 if (!PyLong_Check(vv)) { in PyLong_AsLongAndOverflow()
269 nb = vv->ob_type->tp_as_number; in PyLong_AsLongAndOverflow()
275 vv = (*nb->nb_int) (vv); in PyLong_AsLongAndOverflow()
276 if (vv == NULL) in PyLong_AsLongAndOverflow()
279 if(PyInt_Check(vv)) { in PyLong_AsLongAndOverflow()
280 res = PyInt_AsLong(vv); in PyLong_AsLongAndOverflow()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
Dlongobject.c244 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow) in PyLong_AsLongAndOverflow() argument
255 if (vv == NULL) { in PyLong_AsLongAndOverflow()
260 if(PyInt_Check(vv)) in PyLong_AsLongAndOverflow()
261 return PyInt_AsLong(vv); in PyLong_AsLongAndOverflow()
263 if (!PyLong_Check(vv)) { in PyLong_AsLongAndOverflow()
265 nb = vv->ob_type->tp_as_number; in PyLong_AsLongAndOverflow()
271 vv = (*nb->nb_int) (vv); in PyLong_AsLongAndOverflow()
272 if (vv == NULL) in PyLong_AsLongAndOverflow()
275 if(PyInt_Check(vv)) { in PyLong_AsLongAndOverflow()
276 res = PyInt_AsLong(vv); in PyLong_AsLongAndOverflow()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dmemoryobject.c718 Py_buffer vv, ww; in memory_richcompare() local
722 vv.obj = NULL; in memory_richcompare()
726 if (PyObject_GetBuffer(v, &vv, PyBUF_CONTIG_RO) == -1) { in memory_richcompare()
735 if (vv.itemsize != ww.itemsize || vv.len != ww.len) in memory_richcompare()
738 equal = !memcmp(vv.buf, ww.buf, vv.len); in memory_richcompare()
741 PyBuffer_Release(&vv); in memory_richcompare()
751 PyBuffer_Release(&vv); in memory_richcompare()
Dintobject.c857 PyObject *vv, *ww, *result; in int_lshift() local
868 vv = PyLong_FromLong(PyInt_AS_LONG(v)); in int_lshift()
869 if (vv == NULL) in int_lshift()
873 Py_DECREF(vv); in int_lshift()
876 result = PyNumber_Lshift(vv, ww); in int_lshift()
877 Py_DECREF(vv); in int_lshift()
883 vv = PyLong_FromLong(PyInt_AS_LONG(v)); in int_lshift()
884 if (vv == NULL) in int_lshift()
888 Py_DECREF(vv); in int_lshift()
891 result = PyNumber_Lshift(vv, ww); in int_lshift()
[all …]
Dfloatobject.c531 PyObject *vv = NULL; in float_richcompare() local
543 vv = PyLong_FromDouble(intpart); in float_richcompare()
544 if (vv == NULL) in float_richcompare()
563 temp = PyNumber_Lshift(vv, one); in float_richcompare()
566 Py_DECREF(vv); in float_richcompare()
567 vv = temp; in float_richcompare()
569 temp = PyNumber_Or(vv, one); in float_richcompare()
572 Py_DECREF(vv); in float_richcompare()
573 vv = temp; in float_richcompare()
576 r = PyObject_RichCompareBool(vv, ww, op); in float_richcompare()
[all …]
Dobject.c774 Py_uintptr_t vv = (Py_uintptr_t)v; in default_3way_compare() local
776 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0; in default_3way_compare()
Dtypeobject.c636 Py_uintptr_t vv, ww; in type_richcompare() local
658 vv = (Py_uintptr_t)v; in type_richcompare()
661 case Py_LT: c = vv < ww; break; in type_richcompare()
662 case Py_LE: c = vv <= ww; break; in type_richcompare()
663 case Py_EQ: c = vv == ww; break; in type_richcompare()
664 case Py_NE: c = vv != ww; break; in type_richcompare()
665 case Py_GT: c = vv > ww; break; in type_richcompare()
666 case Py_GE: c = vv >= ww; break; in type_richcompare()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_int.py68 vv = v
70 vv = -v
72 self.assertEqual(int(ss), vv)
Dseq_tests.py119 vv = self.type2test(s)
120 self.assertEqual(len(vv), len(s))
Dtest_long.py347 vv = v
349 vv = -v
351 self.assertEqual(long(ss), long(vv))
/device/linaro/bootloader/edk2/BaseTools/UserManuals/
DGenPage_Utility_Man_Page.rtf70 \hich\af48\dbch\af13\loch\f48 nt value, so specifying \hich\f48 \endash \loch\f48 vv can be used to…
DGenBootSector_Utility_Man_Page.rtf107 \hich\af39\dbch\af31505\loch\f39 ount value, so specifying \hich\f39 \endash \loch\f39 vv can be us…
DEfiLdrImage_Utility_Man_Page.rtf109 … printed. This is a count value, so specifying \hich\f39 \endash \loch\f39 vv can be used to incre…
DGenVtf_Utility_Man_Page.rtf117 … printed. This is a count value, so specifying \hich\f39 \endash \loch\f39 vv can be used to incre…
DBootSectImage_Utility_Man_Page.rtf126 \hich\af39\dbch\af31505\loch\f39 a count value, so specifying \hich\f39 \endash \loch\f39 vv can be…
DSplitFile_Utility_Man_Page.rtf134 …s18\cf1\insrsid11539687 \loch\af39\dbch\af31505\hich\f39 \endash \loch\f39 vv }{\rtlch\fcs1 \af39\…
DGenFds_Utility_Man_Page.rtf229 … printed. This is a count value, so specifying \hich\f41 \endash \loch\f41 vv can be used to incre…