HomeSort by relevance Sort by last modified time
    Searched defs:p51 (Results 1 - 3 of 3) sorted by null

  /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...]
  /external/libweave/third_party/chromium/base/third_party/dmg_fp/
dtoa.cc 918 Bigint *b1, *p5, *p51; variable
952 p51 = p5->next;
953 if (!p51) {
956 p51 = p5->next;
957 if (!p51) {
958 p51 = p5->next = mult(p5,p5);
959 p51->next = 0;
963 p51 = p5->next = mult(p5,p5);
964 p51->next = 0;
967 p5 = p51;
    [all...]
  /ndk/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...]

Completed in 706 milliseconds