| /src/external/gpl3/gdb.old/dist/sim/testsuite/or1k/ |
| adrp.S | 36 .type pi, @object 37 .size pi, 4 38 pi: label 52 l.movhi r11, ha(pi) 53 l.addi r11, r11, lo(pi) 60 l.adrp r4, pi
|
| fpu-unordered.S | 39 .type pi, @object 40 .size pi, 4 42 pi: label 56 * r12 pi as float
|
| fpu64a32-unordered.S | 40 .type pi, @object 41 .size pi, 8 43 pi: label 57 * r12,r13 pi as double
|
| fpu64a32.S | 74 .type pi, @object 75 .size pi, 8 77 pi: label 97 * r12,r13 pi as double
|
| /src/external/gpl3/gdb/dist/sim/testsuite/or1k/ |
| adrp.S | 36 .type pi, @object 37 .size pi, 4 38 pi: label 52 l.movhi r11, ha(pi) 53 l.addi r11, r11, lo(pi) 60 l.adrp r4, pi
|
| fpu-unordered.S | 39 .type pi, @object 40 .size pi, 4 42 pi: label 56 * r12 pi as float
|
| fpu64a32-unordered.S | 40 .type pi, @object 41 .size pi, 8 43 pi: label 57 * r12,r13 pi as double
|
| fpu64a32.S | 74 .type pi, @object 75 .size pi, 8 77 pi: label 97 * r12,r13 pi as double
|
| /src/external/lgpl3/mpc/dist/tests/ |
| tprec.c | 28 mpfr_prec_t prec, pr, pi; local 46 mpc_get_prec2 (&pr, &pi, z); 47 if (pr != prec || pi != prec + 1)
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/ |
| amd64-lam.c | 31 int* pi = &i; local 40 pi_tagged = (int *) ((uintptr_t) pi | (1LL << 60)); 43 *pi = 1; 45 *pi = 3;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/ |
| amd64-lam.c | 31 int* pi = &i; local 40 pi_tagged = (int *) ((uintptr_t) pi | (1LL << 60)); 43 *pi = 1; 45 *pi = 3;
|
| /src/sys/compat/linux/common/ |
| linux_blkio.c | 71 struct partinfo pi; local 88 error = ioctlf(fp, DIOCGPARTINFO, &pi); 96 size = pi.pi_size;
|
| linux_hdio.c | 76 struct partinfo pi; local 111 error1 = ioctlf(fp, DIOCGPARTINFO, &pi); 117 hdg.start = error1 != 0 ? pi.pi_offset : 0; 130 error1 = ioctlf(fp, DIOCGPARTINFO, &pi); 136 hdg_big.start = error1 != 0 ? pi.pi_offset : 0;
|
| /src/external/lgpl3/gmp/dist/ |
| nextprime.c | 51 remainder table of Pi(65536) = 6542 16-bit entries could replace that 62 unsigned long p, d, pi; local 105 pi = ((ps->s0 + 3) / 2) % 3; 106 if (pi > 0) 107 pi = 3 - pi; 108 if (ps->s0 + 2 * pi <= 3) 109 pi += 3; 110 sp = ps->s + pi; 116 pi = ((ps->s0 + 5) / 2) % 5 [all...] |
| /src/external/lgpl3/mpfr/dist/src/ |
| acosu.c | 1 /* mpfr_acosu -- acosu(x) = acos(x)*u/(2*pi) 2 mpfr_acospi -- acospi(x) = acos(x)/pi 27 /* put in y the correctly rounded value of acos(x)*u/(2*pi) */ 31 mpfr_t tmp, pi; local 55 /* acos(0)=Pi/2 thus acosu(0)=u/4 */ 84 /* acos(1/2) = pi/6 and acos(-1/2) = pi/3, thus in these cases acos(x,u) 93 /* For |x|<0.5, we have acos(x) = pi/2 - x*r(x) with |r(x)| < 1.05 110 /* for x>0, we have acos(x) < pi/2; for x<0, we have acos(x) > pi/2 * [all...] |
| asinu.c | 1 /* mpfr_asinu -- asinu(x) = asin(x)*u/(2*pi) 2 mpfr_asinpi -- asinpi(x) = asin(x)/pi 27 /* put in y the correctly rounded value of asin(x)*u/(2*pi) */ 31 mpfr_t tmp, pi; local 92 /* asin(+/-1/2) = +/-pi/6, thus asin(+/-1/2,u) = +/-u/12 is exact when u is 109 mpfr_init2 (pi, prec); 122 mpfr_const_pi (pi, MPFR_RNDZ); /* round toward zero since we we will 123 divide by pi, to round tmp away */ 124 /* pi = Pi * (1 + theta3) * [all...] |
| atanu.c | 1 /* mpfr_atanu -- atanu(x) = atan(x)*u/(2*pi) 2 mpfr_atanpi -- atanpi(x) = atan(x)/pi 27 /* put in y the correctly rounded value of atan(x)*u/(2*pi) */ 31 mpfr_t tmp, pi; local 97 /* For x>=1, we have pi/2-1/x < atan(x) < pi/2, thus 98 u/4-u/(2*pi*x) < atanu(x,u) < u/4, and the relative difference between 99 atanu(x,u) and u/4 is less than 2/(pi*x) < 1/x <= 2^(1-EXP(x)). 102 We also require x >= 2^64, which implies x > 2*u/pi, so that 103 (u-1)/4 < u/4-u/(2*pi*x) < u/4. * [all...] |
| atan2.c | 33 if (neg) /* -PI/2^i */ 38 else /* PI/2^i */ 50 mpfr_t tmp, pi; local 70 -- atan2(±0, -0) returns ±pi.313) 72 -- atan2(±0, x) returns ±pi, for x < 0. 74 -- atan2(y, ±0) returns -pi/2 for y < 0. 75 -- atan2(y, ±0) returns pi/2 for y > 0. 76 -- atan2(±oo, -oo) returns ±3pi/4. 77 -- atan2(±oo, +oo) returns ±pi/4. 78 -- atan2(±oo, x) returns ±pi/2, for finite x [all...] |
| /src/external/mit/libuv/dist/src/unix/ |
| aix-common.c | 64 struct procsinfo pi; local 82 pi.pi_pid = getpid(); 83 res = getargs(&pi, sizeof(pi), args, sizeof(args));
|
| /src/lib/libm/src/ |
| e_atan2f.c | 29 pi = 3.1415925026e+00, /* 0x40490fda */ variable 53 case 2: return pi+tiny;/* atan(+0,-anything) = pi */ 54 case 3: return -pi-tiny;/* atan(-0,-anything) =-pi */ 73 case 2: return pi+tiny ; /* atan(+...,-INF) */ 74 case 3: return -pi-tiny ; /* atan(-...,-INF) */ 94 case 2: return pi-(z-pi_lo);/* atan(+,-) */ 96 return (z-pi_lo)-pi;/* atan(-,-) */
|
| e_atan2l.c | 60 #define pi ((long double)pi1 + pi2) macro 63 pi = 3.14159265358979323846264338327950280e+00L; variable 95 case 2: return pi+tiny;/* atan(+0,-anything) = pi */ 96 case 3: return -pi-tiny;/* atan(-0,-anything) =-pi */ 116 case 2: return pi+tiny ; /* atan(+...,-INF) */ 117 case 3: return -pi-tiny ; /* atan(-...,-INF) */ 136 case 2: return pi-(z-pi_lo);/* atan(+,-) */ 138 return (z-pi_lo)-pi;/* atan(-,-) * [all...] |
| e_acosl.c | 55 #define pi ((long double)pi1 + pi2) macro 58 pi = 3.14159265358979323846264338327950280e+00L; variable 73 else return pi+2.0*pio2_lo; /* acos(-1)= pi */ 78 if(expt<ACOS_CONST) return pio2_hi+pio2_lo;/*x tiny: acosl=pi/2*/ 91 return pi - 2.0*(s+w);
|
| /src/sys/kern/ |
| subr_disk_open.c | 98 struct partinfo pi; local 120 error = VOP_IOCTL(vp, DIOCGPARTINFO, &pi, FREAD, NOCRED); 122 secsize = pi.pi_secsize; 123 numsec = pi.pi_size; 150 struct partinfo pi; local 157 if ((error = VOP_IOCTL(vp, DIOCGPARTINFO, &pi, FREAD, NOCRED)) != 0) 169 dkw->dkw_size = pi.pi_size; 170 dkw->dkw_offset = pi.pi_offset; 171 strlcpy(dkw->dkw_ptype, getfstypename(pi.pi_fstype),
|
| /src/usr.bin/error/ |
| pi.c | 1 /* $NetBSD: pi.c,v 1.25 2025/07/11 22:19:54 andvar Exp $ */ 35 static char sccsid[] = "@(#)pi.c 8.1 (Berkeley) 6/6/93"; 37 __RCSID("$NetBSD: pi.c,v 1.25 2025/07/11 22:19:54 andvar Exp $"); 62 * Attempt to handle error messages produced by pi (and by pc) 67 * problem #2: pi doesn't always tell you what line number 83 * Here are the error strings used in pi version 1.2 that can refer 91 * Here are the general pi patterns recognized: 106 * pi is now complaining about 2nd pass errors. 230 pi(void) function 252 * when there are strlen("(*[pi]") or mor [all...] |
| /src/external/bsd/ntp/dist/util/ |
| pps-api.c | 53 pps_info_t pi; local 86 i = time_pps_fetch(ph, PPS_TSFMT_TSPEC, &pi, &to); 89 if (olda == pi.assert_sequence && 90 oldc == pi.clear_sequence) { 95 Chew(&pi.assert_timestamp, &pi.clear_timestamp, 96 pi.assert_sequence, pi.clear_sequence); 97 olda = pi.assert_sequence; 98 oldc = pi.clear_sequence [all...] |