/src/lib/libm/src/ |
w_j0.c | 19 * wrapper j0(double x), y0(double x) 26 j0(double x) /* wrapper j0 */ function in typeref:typename:double 34 return __kernel_standard(x,x,34); /* j0(|x|>X_TLOSS) */
|
s_sinpi.c | 44 * |x| = j0 + r with j0 an integer and the remainder r satisfies 48 * sinpi(x) = sin(pi*(j0+r)) 49 * = sin(pi*j0) * cos(pi*r) + cos(pi*j0) * sin(pi*r) 50 * = cos(pi*j0) * sin(pi*r) 53 * If j0 is even, then cos(pi*j0) = 1. If j0 is odd, then cos(pi*j0) = -1 87 uint32_t hx, ix, j0, lx; local in function:sinpi [all...] |
s_sinpif.c | 57 uint32_t hx, ix, j0; local in function:sinpif 90 FFLOORF(x, j0, ix); /* Integer part of ax. */ 109 j0 = (uint32_t)x; 110 s = (j0 & 1) ? -s : s;
|
s_tanpi.c | 44 * |x| = j0 + r with j0 an integer and the remainder r satisfies 48 * tan(pi*j0) + tan(pi*r) 49 * tanpi(x) = tan(pi*(j0+r)) = ---------------------------- = tanpi(r) 50 * 1 - tan(pi*j0) * tan(pi*r) 118 uint32_t hx, ix, j0, lx; local in function:tanpi 150 FFLOOR(x, j0, ix, lx); /* Integer part of ax. */
|
/src/lib/libm/ld80/ |
s_cospil.c | 50 uint32_t j0; local in function:cospil 80 FFLOORL80(x, j0, ix, lx); /* Integer part of ax. */ 99 if (j0 > 40) 101 if (j0 > 30) 103 j0 = (uint32_t)x; 105 RETURNI(j0 & 1 ? -c : c);
|
s_sinpil.c | 52 uint32_t j0; local in function:sinpil 88 FFLOORL80(x, j0, ix, lx); /* Integer part of ax. */ 108 if (j0 > 40) 110 if (j0 > 30) 112 j0 = (uint32_t)x; 113 if (j0 & 1) s = -s;
|
s_tanpil.c | 73 uint32_t j0; local in function:tanpil 104 FFLOORL80(x, j0, ix, lx); /* Integer part of ax. */
|
/src/lib/libm/noieee_src/ |
n_j0.c | 33 static char sccsid[] = "@(#)j0.c 8.2 (Berkeley) 11/30/93"; 67 /* double j0(double x), y0(double x) 69 * Method -- j0(x): 70 * 1. For tiny x, we use j0(x) = 1 - x^2/4 + x^4/64 - ... 71 * 2. Reduce x to |x| since j0(x)=j0(-x), and 73 * j0(x) = 1-z/4+ z^2*R0/S0, where z = x*x; 74 * (precision: |j0-1+z/4-z^2R0/S0 |<2**-63.67 ) 76 * j0(x) = sqrt(2/(pi*x))*(p0(x)*cos(x0)-q0(x)*sin(x0)) 88 * j0(nan)= na 142 j0(double x) function in typeref:typename:double [all...] |
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/salsa/ref/ |
core_salsa_ref.c | 17 uint32_t j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, local in function:crypto_core_salsa 21 j0 = x0 = 0x61707865; 26 j0 = x0 = LOAD32_LE(c + 0); 79 STORE32_LE(out + 0, x0 + j0);
|
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/chacha20/ref/ |
chacha20_ref.c | 86 uint32_t j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, local in function:chacha20_encrypt_bytes 98 j0 = ctx->input[0]; 125 x0 = j0; 151 x0 = PLUS(x0, j0);
|
/src/lib/libc/gen/ |
arc4random.c | 137 uint32_t j0,j1,j2,j3,j4,j5,j6,j7,j8,j9,j10,j11,j12,j13,j14,j15; local in function:crypto_core 140 j0 = x0 = crypto_le32dec(c + 0); 168 crypto_le32enc(out + 0, x0 + j0);
|