Home
last modified time | relevance | path

Searched refs:ww (Results 1 – 11 of 11) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dmemoryobject.c718 Py_buffer vv, ww; in memory_richcompare() local
723 ww.obj = NULL; in memory_richcompare()
730 if (PyObject_GetBuffer(w, &ww, 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()
742 PyBuffer_Release(&ww); in memory_richcompare()
752 PyBuffer_Release(&ww); in memory_richcompare()
Dfloatobject.c446 PyObject *ww = PyLong_FromLong(jj); in float_richcompare() local
448 if (ww == NULL) in float_richcompare()
450 result = float_richcompare(v, ww, op); in float_richcompare()
451 Py_DECREF(ww); in float_richcompare()
532 PyObject *ww = w; in float_richcompare() local
535 ww = PyNumber_Negative(w); in float_richcompare()
536 if (ww == NULL) in float_richcompare()
540 Py_INCREF(ww); in float_richcompare()
557 temp = PyNumber_Lshift(ww, one); in float_richcompare()
560 Py_DECREF(ww); in float_richcompare()
[all …]
Dintobject.c857 PyObject *vv, *ww, *result; in int_lshift() local
871 ww = PyLong_FromLong(PyInt_AS_LONG(w)); in int_lshift()
872 if (ww == NULL) { in int_lshift()
876 result = PyNumber_Lshift(vv, ww); in int_lshift()
878 Py_DECREF(ww); in int_lshift()
886 ww = PyLong_FromLong(PyInt_AS_LONG(w)); in int_lshift()
887 if (ww == NULL) { in int_lshift()
891 result = PyNumber_Lshift(vv, ww); in int_lshift()
893 Py_DECREF(ww); in int_lshift()
Dobject.c775 Py_uintptr_t ww = (Py_uintptr_t)w; 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
659 ww = (Py_uintptr_t)w; 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/Objects/
Dmemoryobject.c718 Py_buffer vv, ww; in memory_richcompare() local
723 ww.obj = NULL; in memory_richcompare()
730 if (PyObject_GetBuffer(w, &ww, 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()
742 PyBuffer_Release(&ww); in memory_richcompare()
752 PyBuffer_Release(&ww); in memory_richcompare()
Dfloatobject.c445 PyObject *ww = PyLong_FromLong(jj); in float_richcompare() local
447 if (ww == NULL) in float_richcompare()
449 result = float_richcompare(v, ww, op); in float_richcompare()
450 Py_DECREF(ww); in float_richcompare()
531 PyObject *ww = w; in float_richcompare() local
534 ww = PyNumber_Negative(w); in float_richcompare()
535 if (ww == NULL) in float_richcompare()
539 Py_INCREF(ww); in float_richcompare()
556 temp = PyNumber_Lshift(ww, one); in float_richcompare()
559 Py_DECREF(ww); in float_richcompare()
[all …]
Dintobject.c837 PyObject *vv, *ww, *result; in int_lshift() local
851 ww = PyLong_FromLong(PyInt_AS_LONG(w)); in int_lshift()
852 if (ww == NULL) { in int_lshift()
856 result = PyNumber_Lshift(vv, ww); in int_lshift()
858 Py_DECREF(ww); in int_lshift()
866 ww = PyLong_FromLong(PyInt_AS_LONG(w)); in int_lshift()
867 if (ww == NULL) { in int_lshift()
871 result = PyNumber_Lshift(vv, ww); in int_lshift()
873 Py_DECREF(ww); in int_lshift()
Dobject.c770 Py_uintptr_t ww = (Py_uintptr_t)w; 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
653 ww = (Py_uintptr_t)w; 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/Python-2.7.2/Tools/unicode/
Dmakeunicodedata.py647 ww = w[:-1] + chr(ord(w[-1])+128)
649 o = lexicon.find(ww)
652 lexicon = lexicon + ww