Searched defs:bb (Results 1 - 13 of 13) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
H A Dstrtod.c99 Bigint *bb = NULL, *bb1, *bd0; local
152 switch((i = gethex(&s, &fpi, &expt, &bb, sign)) & STRTOG_Retmask) {
160 if (bb) {
161 copybits(bits, fpi.nbits, bb);
162 Bfree(bb);
551 bb = d2b(dval(rv), &bbe, &bbbits); /* rv = bb * 2^bbe */
552 if (bb == NULL)
615 bb1 = mult(bs, bb);
618 Bfree(bb);
989 Bfree(bb); variable
[all...]
H A Dstrtodg.c320 Bigint *ab, *bb, *bb1, *bd, *bd0, *bs, *delta, *rvb, *rvb0; local
658 bb = Balloc(rvb->k);
659 if (bb == NULL)
661 Bcopy(bb, rvb);
699 bb1 = mult(bs, bb);
702 Bfree(bb);
703 bb = bb1;
707 bb = lshift(bb, bb2);
708 if (bb
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dtupleobject.c436 tupleconcat(register PyTupleObject *a, register PyObject *bb) argument
442 if (!PyTuple_Check(bb)) {
445 Py_TYPE(bb)->tp_name);
448 #define b ((PyTupleObject *)bb)
H A Dlistobject.c506 list_concat(PyListObject *a, PyObject *bb) argument
512 if (!PyList_Check(bb)) {
515 bb->ob_type->tp_name);
518 #define b ((PyListObject *)bb)
H A Dstringobject.c1016 string_concat(register PyStringObject *a, register PyObject *bb) argument
1020 if (!PyString_Check(bb)) {
1022 if (PyUnicode_Check(bb))
1023 return PyUnicode_Concat((PyObject *)a, bb);
1025 if (PyByteArray_Check(bb))
1026 return PyByteArray_Concat((PyObject *)a, bb);
1029 Py_TYPE(bb)->tp_name);
1032 #define b ((PyStringObject *)bb)
1037 Py_INCREF(bb);
1038 return bb;
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dtupleobject.c434 tupleconcat(register PyTupleObject *a, register PyObject *bb) argument
440 if (!PyTuple_Check(bb)) {
443 Py_TYPE(bb)->tp_name);
446 #define b ((PyTupleObject *)bb)
H A Dlistobject.c506 list_concat(PyListObject *a, PyObject *bb) argument
512 if (!PyList_Check(bb)) {
515 bb->ob_type->tp_name);
518 #define b ((PyListObject *)bb)
H A Dstringobject.c1011 string_concat(register PyStringObject *a, register PyObject *bb) argument
1015 if (!PyString_Check(bb)) {
1017 if (PyUnicode_Check(bb))
1018 return PyUnicode_Concat((PyObject *)a, bb);
1020 if (PyByteArray_Check(bb))
1021 return PyByteArray_Concat((PyObject *)a, bb);
1024 Py_TYPE(bb)->tp_name);
1027 #define b ((PyStringObject *)bb)
1032 Py_INCREF(bb);
1033 return bb;
[all...]
H A Dtypeobject.c6199 slotdef_cmp(const void *aa, const void *bb) argument
6201 const slotdef *a = (const slotdef *)aa, *b = (const slotdef *)bb;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Darraymodule.c640 array_concat(arrayobject *a, PyObject *bb) argument
644 if (!array_Check(bb)) {
647 Py_TYPE(bb)->tp_name);
650 #define b ((arrayobject *)bb)
792 array_iter_extend(arrayobject *self, PyObject *bb) argument
796 it = PyObject_GetIter(bb);
815 array_do_extend(arrayobject *self, PyObject *bb) argument
820 if (!array_Check(bb))
821 return array_iter_extend(self, bb);
822 #define b ((arrayobject *)bb)
851 array_inplace_concat(arrayobject *self, PyObject *bb) argument
1038 array_extend(arrayobject *self, PyObject *bb) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Ddtoa.c1517 Bigint *bb, *bb1, *bd, *bd0, *bs, *delta; local
1873 bd, bb and bs proportional to tdv, srv and 0.5 ulp(srv)
1884 bb = sd2b(&rv, bc.scale, &bbe); /* srv = bb * 2^bbe */
1885 if (bb == NULL) {
1890 /* Record whether lsb of bb is odd, in case we need this
1892 odd = bb->x[0] & 1;
1894 /* tdv = bd * 10**e; srv = bb * 2**bbe */
1897 Bfree(bb);
1923 srv == bb *
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Darraymodule.c640 array_concat(arrayobject *a, PyObject *bb) argument
644 if (!array_Check(bb)) {
647 Py_TYPE(bb)->tp_name);
650 #define b ((arrayobject *)bb)
792 array_iter_extend(arrayobject *self, PyObject *bb) argument
796 it = PyObject_GetIter(bb);
815 array_do_extend(arrayobject *self, PyObject *bb) argument
820 if (!array_Check(bb))
821 return array_iter_extend(self, bb);
822 #define b ((arrayobject *)bb)
851 array_inplace_concat(arrayobject *self, PyObject *bb) argument
1038 array_extend(arrayobject *self, PyObject *bb) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Ddtoa.c1500 Bigint *bb, *bb1, *bd, *bd0, *bs, *delta; local
1842 bd, bb and bs proportional to tdv, srv and 0.5 ulp(srv)
1853 bb = sd2b(&rv, bc.scale, &bbe); /* srv = bb * 2^bbe */
1854 if (bb == NULL) {
1859 /* Record whether lsb of bb is odd, in case we need this
1861 odd = bb->x[0] & 1;
1863 /* tdv = bd * 10**e; srv = bb * 2**bbe */
1866 Bfree(bb);
1892 srv == bb *
[all...]

Completed in 248 milliseconds