Home
last modified time | relevance | path

Searched refs:P (Results 1 – 25 of 32) sorted by relevance

12

/picolibc-latest/newlib/libc/stdlib/
Dsetenv.c76 register char **P; in setenv() local
78 for (P = *p_environ, cnt = 0; *P; ++P, ++cnt); in setenv()
92 P = (char **) malloc ((size_t) (sizeof (char *) * (cnt + 2))); in setenv()
93 if (!P) in setenv()
98 memcpy((char *) P,(char *) *p_environ, cnt * sizeof (char *)); in setenv()
99 *p_environ = P; in setenv()
127 register char **P; in unsetenv() local
141 for (P = &(*p_environ)[offset];; ++P) in unsetenv()
142 if (!(*P = *(P + 1))) in unsetenv()
Dstrtod.c191 if (!scale || (i = 2*P + 1 - ((dword0(x) & Exp_mask) >> Exp_shift)) <= 0) in sulp()
543 dword0(rv) -= P*Exp_msk1;
546 > Exp_msk1*(DBL_MAX_EXP+Bias-1-P))
548 dword0(rv) += P*Exp_msk1;
645 dword0(rv) -= P*Exp_msk1;
648 > Exp_msk1*(DBL_MAX_EXP+Bias-P))
650 if (z > Exp_msk1*(DBL_MAX_EXP+Bias-1-P)) {
659 dword0(rv) += P*Exp_msk1;
671 scale = 2*P;
675 if (scale && (j = 2*P + 1 - ((dword0(rv) & Exp_mask)
[all …]
Dmallocr.c1471 #define check_free_chunk(P) do_check_free_chunk(P) argument
1472 #define check_inuse_chunk(P) do_check_inuse_chunk(P) argument
1473 #define check_chunk(P) do_check_chunk(P) argument
1474 #define check_malloced_chunk(P,N) do_check_malloced_chunk(P,N) argument
1476 #define check_free_chunk(P) argument
1477 #define check_inuse_chunk(P) argument
1478 #define check_chunk(P) argument
1479 #define check_malloced_chunk(P,N) argument
1500 #define frontlink(P, S, IDX, BK, FD) \ argument
1508 P->bk = BK; \
[all …]
Dmprec.h117 #define P 24 macro
157 #define P 53 macro
199 #define P 14 macro
224 #define P 56 macro
Ddtoa.c331 i = bbits + be + (Bias + (P - 1) - 1); in __dtoa()
340 i -= (Bias + (P - 1) - 1) + 1; in __dtoa()
471 word0 (eps) -= (P - 1) * Exp_msk1; in __dtoa()
595 denorm ? be + (Bias + (P - 1) - 1 + 1) : in __dtoa()
598 1 + 4 * P - 3 - bbits + ((bbits + be - 1) & 3); in __dtoa()
600 1 + P - bbits; in __dtoa()
/picolibc-latest/newlib/libc/search/
Dpage.h77 #define FREESPACE(P) ((P)[(P)[0]+1]) argument
78 #define OFFSET(P) ((P)[(P)[0]+2]) argument
79 #define PAIRFITS(P,K,D) \ argument
80 (((P)[2] >= REAL_KEY) && \
81 (PAIRSIZE((K),(D)) + OVFLSIZE) <= FREESPACE((P)))
Dhash_buf.c79 #define BUF_INSERT(B, P) { \ argument
80 (B)->next = (P)->next; \
81 (B)->prev = (P); \
82 (P)->next = (B); \
/picolibc-latest/newlib/libm/ld/common/
Dpolevll.c69 __polevll(long double x, const long double *P, int n) in __polevll() argument
73 y = *P++; in __polevll()
75 y = y * x + *P++; in __polevll()
86 __p1evll(long double x, const long double *P, int n) in __p1evll() argument
91 y = x + *P++; in __p1evll()
93 y = y * x + *P++; in __p1evll()
De_acosl.c59 p = P(z); in acosl()
65 p = P(z); in acosl()
78 p = P(z); in acosl()
De_asinl.c47 p = P(t); in asinl()
55 p = P(t); in asinl()
/picolibc-latest/newlib/libm/math/
Dsf_erf.c100 float R, S, P, Q, s, y, z, r; in erff() local
123 P = pa0 + in erff()
128 return erx + P / Q; in erff()
130 return -erx - P / Q; in erff()
172 float R, S, P, Q, s, y, z, r; in erfcf() local
197 P = pa0 + in erfcf()
203 return z - P / Q; in erfcf()
205 z = erx + P / Q; in erfcf()
Ds_erf.c236 __float64 R, S, P, Q, s, y, z, r; in erf64() local
258 P = pa0 + in erf64()
263 return erx + P / Q; in erf64()
265 return -erx - P / Q; in erf64()
309 __float64 R, S, P, Q, s, y, z, r; in _MATH_ALIAS_d_d() local
334 P = pa0 + in _MATH_ALIAS_d_d()
340 return z - P / Q; in _MATH_ALIAS_d_d()
342 z = erx + P / Q; in _MATH_ALIAS_d_d()
/picolibc-latest/newlib/libm/ld/ld80/
Ds_erfl.c249 long double R, S, P, Q, s, y, z, r; in erfl() local
282 P = pa[0] + s * (pa[1] + s * (pa[2] in erfl()
287 return erx + P / Q; in erfl()
289 return -erx - P / Q; in erfl()
330 long double R, S, P, Q, s, y, z, r; in erfcl() local
366 P = pa[0] + s * (pa[1] + s * (pa[2] in erfcl()
373 return z - P / Q; in erfcl()
377 z = erx + P / Q; in erfcl()
De_expl.c77 static long double P[3] = { variable
129 px = x * __polevll( xx, P, 2 ); in expl()
De_log2l.c72 static long double P[] = { variable
179 y = x * ( z * __polevll( x, P, 6 ) / __p1evll( x, Q, 7 ) ); in log2l()
De_log10l.c72 static long double P[] = { variable
182 y = x * ( z * __polevll( x, P, 6 ) / __p1evll( x, Q, 7 ) ); in log10l()
De_logl.c72 static long double P[] = { variable
179 y = x * ( z * __polevll( x, P, 6 ) / __p1evll( x, Q, 6 ) ); in logl()
Ds_log1pl.c69 static long double P[] = { variable
183 y = x * ( z * __polevll( x, P, 6 ) / __p1evll( x, Q, 6 ) ); in log1pl()
De_tgammal.c68 static long double P[8] = { variable
293 p = __polevll( x, P, 7 ); in tgammal()
Dinvtrig.h80 P(long double x) in P() function
/picolibc-latest/newlib/libm/ld/ld128/
De_expl.c81 static long double P[5] = { variable
143 px = x * __polevll( xx, P, 4 ); in expl()
De_log2l.c68 static const long double P[13] = variable
232 y = x * (z * neval (x, P, 12) / deval (x, Q, 11)); in log2l()
De_log10l.c69 static const long double P[13] = variable
238 y = x * (z * neval (x, P, 12) / deval (x, Q, 11)); in log10l()
/picolibc-latest/newlib/libc/stdio/
Dvfieeefp.h168 #define P 24 macro
203 #define P 53 macro
235 #define P 14 macro
259 #define P 56 macro
/picolibc-latest/newlib/libc/machine/sh/
Dmemcpy.S45 #define LDUAQ(P,O,D0,D1) ldlo.q P,O,D0; ldhi.q P,O+7,D1 argument
46 #define STUAQ(P,O,D0,D1) stlo.q P,O,D0; sthi.q P,O+7,D1 argument
47 #define LDUAL(P,O,D0,D1) ldlo.l P,O,D0; ldhi.l P,O+3,D1 argument
48 #define STUAL(P,O,D0,D1) stlo.l P,O,D0; sthi.l P,O+3,D1 argument

12