Home
last modified time | relevance | path

Searched refs:p10s (Results 1 – 5 of 5) sorted by relevance

/third_party/musl/src/internal/
Dfloatscan.c79 static const int p10s[] = { 10, 100, 1000, 10000, in decfloat() local
169 if (rp < 9) return sign * (long double)x[0] / p10s[8-rp]; in decfloat()
172 return sign * (long double)x[0] * p10s[rp-10]; in decfloat()
181 int p10 = p10s[8-rpm9]; in decfloat()
/third_party/musl/porting/uniproton/kernel/src/internal/
Dfloatscan.c79 static const int p10s[] = { 10, 100, 1000, 10000, in decfloat() local
169 if (rp < 9) return sign * (long double)x[0] / p10s[8-rp]; in decfloat()
172 return sign * (long double)x[0] * p10s[rp-10]; in decfloat()
181 int p10 = p10s[8-rpm9]; in decfloat()
/third_party/musl/porting/liteos_a/kernel/src/internal/
Dfloatscan.c79 static const int p10s[] = { 10, 100, 1000, 10000, in decfloat() local
169 if (rp < 9) return sign * (long double)x[0] / p10s[8-rp]; in decfloat()
172 return sign * (long double)x[0] * p10s[rp-10]; in decfloat()
181 int p10 = p10s[8-rpm9]; in decfloat()
/third_party/musl/porting/liteos_m/kernel/src/internal/
Dfloatscan.c79 static const int p10s[] = { 10, 100, 1000, 10000, in decfloat() local
169 if (rp < 9) return sign * (long double)x[0] / p10s[8-rp]; in decfloat()
172 return sign * (long double)x[0] * p10s[rp-10]; in decfloat()
181 int p10 = p10s[8-rpm9]; in decfloat()
/third_party/ffmpeg/libavutil/
Davsscanf.c261 static const int p10s[] = { 10, 100, 1000, 10000, in decfloat() local
352 if (rp < 9) return sign * (double)x[0] / p10s[8-rp]; in decfloat()
355 return sign * (double)x[0] * p10s[rp-10]; in decfloat()
364 int p10 = p10s[8-rpm9]; in decfloat()