Search | Google it | Results 1 - 1 of 1 for funcall:to_char (0.00 seconds) |
933: do { 934: *--cp = to_char(_umax & 7); 935: _umax >>= 3; 944: while (_umax >= 10) { 945: *--cp = to_char(_umax % 10); 946: _umax /= 10; 947: } 948: *--cp = to_char(_umax); 949: break; 1532: do { 1533: *--t = to_char(exp % 10); 1534: } while ((exp /= 10) > 9); 1535: *--t = to_char(exp); 1536: for (; t < expbuf + MAXEXPDIG; *p++ = *t++) 1546: *p++ = '0'; 1547: *p++ = to_char(exp); 1548: }