/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
misc.c | 395 Bigint *b1, *p5, *p51; local 435 if ((p51 = p5->next) == 0) { 438 if (!(p51 = p5->next)) { 439 p51 = p5->next = mult(p5,p5); 440 if (p51 == NULL) 442 p51->next = 0; 446 p51 = p5->next = mult(p5,p5); 447 if (p51 == NULL) 449 p51->next = 0; 452 p5 = p51; [all...] |
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/ |
misc.c | 396 Bigint *b1, *p5, *p51;
local 435 if ((p51 = p5->next) == 0) {
438 if (!(p51 = p5->next)) {
439 p51 = p5->next = mult(p5,p5);
440 if (p51 == NULL)
442 p51->next = 0;
446 p51 = p5->next = mult(p5,p5);
447 if (p51 == NULL)
449 p51->next = 0;
452 p5 = p51;
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
dtoa.c | 738 Bigint *b1, *p5, *p51;
local 771 p51 = p5->next;
772 if (!p51) {
773 p51 = mult(p5,p5);
774 if (p51 == NULL) {
778 p51->next = 0;
779 p5->next = p51;
781 p5 = p51;
794 Bigint *b1, *p5, *p51;
local 824 p51 = mult(p5, p5); [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
dtoa.c | 721 Bigint *b1, *p5, *p51;
local 754 p51 = p5->next;
755 if (!p51) {
756 p51 = mult(p5,p5);
757 if (p51 == NULL) {
761 p51->next = 0;
762 p5->next = p51;
764 p5 = p51;
777 Bigint *b1, *p5, *p51;
local 807 p51 = mult(p5, p5); [all...] |
/external/python/cpython2/Python/ |
dtoa.c | 738 Bigint *b1, *p5, *p51; local 771 p51 = p5->next; 772 if (!p51) { 773 p51 = mult(p5,p5); 774 if (p51 == NULL) { 778 p51->next = 0; 779 p5->next = p51; 781 p5 = p51; 794 Bigint *b1, *p5, *p51; local 824 p51 = mult(p5, p5) [all...] |
/prebuilts/ndk/r11/sources/android/support/src/stdio/ |
strtod.c | 1010 Bigint *b1, *p5, *p51; local 1042 if (!(p51 = p5->next)) { 1043 p51 = mult(p5,p5); 1044 if (p51 == BIGINT_INVALID) { 1047 return p51; 1049 p5->next = p51; 1050 p51->next = 0; 1052 p5 = p51; [all...] |
/prebuilts/ndk/r13/sources/android/support/src/stdio/ |
strtod.c | 1010 Bigint *b1, *p5, *p51; local 1042 if (!(p51 = p5->next)) { 1043 p51 = mult(p5,p5); 1044 if (p51 == BIGINT_INVALID) { 1047 return p51; 1049 p5->next = p51; 1050 p51->next = 0; 1052 p5 = p51; [all...] |