Home
last modified time | relevance | path

Searched refs:S (Results 1 – 15 of 15) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
Ddtoa.c126 Bigint *b, *b1, *delta, *mlo, *mhi, *S; local
382 S = mhi = 0;
446 S = mhi = 0;
547 S = i2b(1);
548 if (S == NULL)
551 S = pow5mult(S, s5);
552 if (S == NULL)
584 if (( i = ((s5 ? 32 - hi0bits(S->x[S->wds-1]) : 1) + s2) & 0x1f )!=0)
587 if (( i = ((s5 ? 32 - hi0bits(S->x[S->wds-1]) : 1) + s2) & 0xf )!=0)
608 S = lshift(S, s2);
[all …]
Dgdtoa.c162 Bigint *b, *b1, *delta, *mlo, *mhi, *mhi1, *S; local
387 S = mhi = 0;
454 S = mhi = 0;
570 S = i2b(1);
571 if (S == NULL)
574 S = pow5mult(S, s5);
575 if (S == NULL)
598 i = ((s5 ? hi0bits(S->x[S->wds-1]) : ULbits - 1) - s2 - 4) & kmask;
606 S = lshift(S, s2);
607 if (S == NULL)
[all …]
Ddmisc.c112 (b, S) Bigint *b, *S; in quorem() argument
114 (Bigint *b, Bigint *S)
128 n = S->wds;
135 sx = S->x;
182 if (cmp(b, S) >= 0) {
187 sx = S->x;
/bionic/libc/
DAndroid.bp695 "arch-arm/generic/bionic/__memcpy_chk.S",
697 "arch-arm/cortex-a15/bionic/__strcat_chk.S",
698 "arch-arm/cortex-a15/bionic/__strcpy_chk.S",
700 "arch-arm/cortex-a7/bionic/__strcat_chk.S",
701 "arch-arm/cortex-a7/bionic/__strcpy_chk.S",
703 "arch-arm/cortex-a9/bionic/__strcat_chk.S",
704 "arch-arm/cortex-a9/bionic/__strcpy_chk.S",
706 "arch-arm/krait/bionic/__strcat_chk.S",
707 "arch-arm/krait/bionic/__strcpy_chk.S",
709 "arch-arm/cortex-a53/bionic/__strcat_chk.S",
[all …]
DNOTICE3784 Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru>
6016 THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS
6019 DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT,
/bionic/libm/
DAndroid.bp275 "arm/sqrt.S",
276 "arm/floor.S",
294 "arm64/lrint.S",
295 "arm64/sqrt.S",
327 "x86/sqrt.S",
328 "x86/sqrtf.S",
329 "x86/e_acos.S",
330 "x86/e_asin.S",
331 "x86/e_atan2.S",
332 "x86/e_cosh.S",
[all …]
/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_erff.c84 float R,S,P,Q,s,y,z,r; in erff() local
117 S=one+s*(sa1+s*(sa2+s*sa3)); in erff()
120 S=one+s*(sb1+s*(sb2+s*sb3)); in erff()
123 r = expf(-z*z-0.5625F)*expf((z-x)*(z+x)+R/S); in erff()
131 float R,S,P,Q,s,y,z,r; in erfcf() local
169 S=one+s*(sa1+s*(sa2+s*sa3)); in erfcf()
173 S=one+s*(sb1+s*(sb2+s*sb3)); in erfcf()
176 r = expf(-z*z-0.5625F)*expf((z-x)*(z+x)+R/S); in erfcf()
Ds_erf.c200 double R,S,P,Q,s,y,z,r; in erf() local
233 S=one+s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*(sa5+s*(sa6+s*(sa7+ in erf()
237 S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*(sb5+s*(sb6+s*sb7)))))); in erf()
241 r = __ieee754_exp(-z*z-0.5625)*__ieee754_exp((z-x)*(z+x)+R/S); in erf()
253 double R,S,P,Q,s,y,z,r; in erfc() local
291 S=one+s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*(sa5+s*(sa6+s*(sa7+ in erfc()
296 S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*(sb5+s*(sb6+s*sb7)))))); in erfc()
300 r = __ieee754_exp(-z*z-0.5625)*__ieee754_exp((z-x)*(z+x)+R/S); in erfc()
Dcatrigl.c112 long double R, S, A; in do_hard_work() local
116 S = hypotl(x, y - 1); in do_hard_work()
118 A = (R + S) / 2; in do_hard_work()
126 Am1 = f(x, 1 + y, R) + f(x, 1 - y, S); in do_hard_work()
154 Amy = f(x, y + 1, R) + f(x, y - 1, S); in do_hard_work()
Dcatrig.c158 double R, S, A; /* A, B, R, and S are as in Hull et al. */ in do_hard_work() local
162 S = hypot(x, y - 1); /* |z-I| */ in do_hard_work()
165 A = (R + S) / 2; in do_hard_work()
190 Am1 = f(x, 1 + y, R) + f(x, 1 - y, S); in do_hard_work()
245 Amy = f(x, y + 1, R) + f(x, y - 1, S); in do_hard_work()
Dcatrigf.c93 float R, S, A; in do_hard_work() local
97 S = hypotf(x, y - 1); in do_hard_work()
99 A = (R + S) / 2; in do_hard_work()
107 Am1 = f(x, 1 + y, R) + f(x, 1 - y, S); in do_hard_work()
135 Amy = f(x, y + 1, R) + f(x, y - 1, S); in do_hard_work()
/bionic/libm/upstream-freebsd/lib/msun/ld128/
Ds_erfl.c196 long double ax,R,S,P,Q,s,y,z,r; in erfl() local
239 S=one+s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*(sa5+s*(sa6+s*(sa7+ in erfl()
246 S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*(sb5+s*(sb6+s*(sb7+ in erfl()
251 r = expl(-z*z-0.5625)*expl((z-ax)*(z+ax)+R/S); in erfl()
258 long double ax,R,S,P,Q,s,y,z,r; in erfcl() local
306 S=one+s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*(sa5+s*(sa6+s*(sa7+ in erfcl()
313 S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*(sb5+s*(sb6+s*(sb7+ in erfcl()
320 S=one+s*(sc1+s*(sc2+s*(sc3+s*(sc4+s*(sc5+s*(sc6+s*(sc7+ in erfcl()
324 r = expl(-z*z-0.5625)*expl((z-ax)*(z+ax)+R/S); in erfcl()
/bionic/linker/
DAndroid.bp58 srcs: ["arch/x86_64/begin.S"],
97 "arch/arm/begin.S",
105 "arch/arm64/begin.S",
106 "arch/arm64/tlsdesc_resolver.S",
113 "arch/x86/begin.S",
120 "arch/x86_64/begin.S",
127 "arch/mips/begin.S",
135 "arch/mips64/begin.S",
/bionic/libc/tools/
Dpylintrc191 ignore-long-lines=^\s*(# )?<?https?://\S+>?$
/bionic/docs/
Dstatus.md80 * `%C` and `%S` support in the printf family (previously only the wprintf family supported these).