Lines Matching refs:dp
70 register char *sp, *dp; in strtod() local
80 dp = buffer; in strtod()
81 *dp++ = '0'; *dp++ = '.'; in strtod()
82 buforg = dp, buflim = buffer+48; in strtod()
92 if (dp != buforg) { in strtod()
94 if (dp < buflim) *dp++ = c; in strtod()
103 if (dp < buflim) *dp++ = c; in strtod()
113 while (dp > buforg && dp[-1] == '0') --dp; in strtod()
114 if (dp == buforg) *dp++ = '0'; in strtod()
115 *dp = '\0'; in strtod()
156 (void) sprintf(dp, "E%d", expt); in strtod()