Searched defs:S1 (Results 1 - 19 of 19) sorted by relevance

/illumos-gate/usr/src/lib/libm/common/R/
H A D__sinf.c39 * S(x) = x(S0 + S1*z)(S2 + S3*z + z*z)
42 * S1 = -1.95035094218403635082921458859320791358115801259e-0004,
58 /* S1 = */ -1.95035094218403635082921458859320791358115801259e-0004,
64 #define S1 q[1] macro
81 ft = (float) ((x * (S0 + z * S1)) * (S2 + z * (S3 + z)));
H A D__sincosf.c39 * S(x) = x(S0 + S1*z)(S2 + S3*z + z*z)
43 * S1 = -1.95035094218403635082921458859320791358115801259e-0004
65 /* S1 = */ -1.95035094218403635082921458859320791358115801259e-0004,
77 #define S1 q[1] macro
99 *s = (float) ((x * (S0 + z * S1)) * (S2 + z * (S3 + z)));
H A Dcosf.c60 #define S1 C[1] macro
101 return ((float)-((y * (S0 + z * S1)) *
106 return ((float)((y * (S0 + z * S1)) *
144 f = (float)((y * (S0 + z * S1)) * (S2 + z * (S3 + z)));
H A Dsinf.c60 #define S1 C[1] macro
96 return ((float)((y * (S0 + z * S1)) *
147 f = (float)((y * (S0 + z * S1)) * (S2 + z * (S3 + z)));
H A Dsincosf.c35 * S(x) = x(S0 + S1*z)(S2 + S3*z + z*z)
38 * S1 = -1.95035094218403635082921458859320791358115801259e-0004,
82 #define S1 C[1] macro
120 *s = (float)((y * (S0 + z * S1)) *
129 *c = (float)-((y * (S0 + z * S1)) *
136 *c = (float)((y * (S0 + z * S1)) *
173 f = (float)((y * (S0 + z * S1)) * (S2 + z * (S3 + z)));
/illumos-gate/usr/src/lib/libm/common/LD/
H A Derfl.c77 * erfc(x) = exp(-x*x)*(1/x)*R1(1/x)/S1(1/x)
79 * precision: absolute error of R1/S1 is bounded by 2**-124.03
202 * erfc(x) = exp(-x*x)/x * R1(1/x)/S1(1/x) on [1.75, 16/3]
220 static long double S1[] = { /* 15 bottom coeffs with leading 1.0 hidden */ variable
341 t = y/__poly_libmq(x,15,S1);
/illumos-gate/usr/src/lib/libm/common/Q/
H A Derfl.c78 * erfc(x) = exp(-x*x)*(1/x)*R1(1/x)/S1(1/x)
80 * precision: absolute error of R1/S1 is bounded by 2**-124.03
203 * erfc(x) = exp(-x*x)/x * R1(1/x)/S1(1/x) on [1.75, 16/3]
221 static const long double S1[] = { /* 15 bottom coeffs with leading 1.0 hidden */ variable
341 t = y/__poly_libmq(x,15,S1);
/illumos-gate/usr/src/cmd/tbl/
H A Dt..c80 # define S1 31 macro
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vcosf.S54 #define S1 0x08 define
137 ! f42 S1
167 ldd [%g1+S1],%f42
H A D__vsincosf.S54 #define S1 0x08 define
138 ! f42 S1
173 ldd [%g1+S1],%f42
H A D__vsinf.S54 #define S1 0x08 define
137 ! f42 S1
167 ldd [%g1+S1],%f42
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vcosf.c35 * z*(S1+z*S2)) and cos(x) by a polynomial 1+z*(-1/2+z*(C0+z*(C1+
77 #define S1 C[1] macro
120 z##N * (S1 + z##N * S2))); \
138 f##N = (float)(y##N + y##N * z##N * (S0 + z##N * (S1 + \
211 f0 = (float)(y0 + y0 * z0 * (S0 + z0 * (S1 + z0 * S2)));
212 f1 = (float)(y1 + y1 * z1 * (S0 + z1 * (S1 + z1 * S2)));
213 f2 = (float)(y2 + y2 * z2 * (S0 + z2 * (S1 + z2 * S2)));
214 f3 = (float)(y3 + y3 * z3 * (S0 + z3 * (S1 + z3 * S2)));
220 f1 = (float)(y1 + y1 * z1 * (S0 + z1 * (S1 + z1 * S2)));
221 f2 = (float)(y2 + y2 * z2 * (S0 + z2 * (S1
[all...]
H A D__vsincosf.c35 * z*(S1+z*S2)) and cos(x) by a polynomial 1+z*(-1/2+z*(C0+z*(C1+
77 #define S1 C[1] macro
121 (S1 + z##N * S2))); \
146 f##N = (float)(y##N + y##N * z##N * (S0 + z##N * (S1 + z##N * S2)));\
230 f0 = (float)(y0 + y0 * z0 * (S0 + z0 * (S1 + z0 * S2)));
231 f1 = (float)(y1 + y1 * z1 * (S0 + z1 * (S1 + z1 * S2)));
232 f2 = (float)(y2 + y2 * z2 * (S0 + z2 * (S1 + z2 * S2)));
233 f3 = (float)(y3 + y3 * z3 * (S0 + z3 * (S1 + z3 * S2)));
H A D__vsinf.c35 * z*(S1+z*S2)) and cos(x) by a polynomial 1+z*(-1/2+z*(C0+z*(C1+
77 #define S1 C[1] macro
124 z##N * (S1 + z##N * S2))); \
142 f##N = (float)(y##N + y##N * z##N * (S0 + z##N * (S1 + \
215 f0 = (float)(y0 + y0 * z0 * (S0 + z0 * (S1 + z0 * S2)));
216 f1 = (float)(y1 + y1 * z1 * (S0 + z1 * (S1 + z1 * S2)));
217 f2 = (float)(y2 + y2 * z2 * (S0 + z2 * (S1 + z2 * S2)));
218 f3 = (float)(y3 + y3 * z3 * (S0 + z3 * (S1 + z3 * S2)));
224 f1 = (float)(y1 + y1 * z1 * (S0 + z1 * (S1 + z1 * S2)));
225 f2 = (float)(y2 + y2 * z2 * (S0 + z2 * (S1
[all...]
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftSSL.c145 uchar_t *S1, *S2; local
154 S1 = NULL;
162 S1 = secret;
163 S2 = secret + (secretlen / 2); /* Possible overlap of S1 and S2. */
171 MD5Update(&md5_ctx, S1, L_S);
173 S1 = md5_digested_key;
184 * PRF(secret, label, seed) = P_MD5(S1, label + seed) XOR
190 P_MD5(S1, L_S1, label, labellen, rand1, rand1len, rand2, rand2len,
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/
H A Dfinger.c923 * S1 in a word
944 * | | | | S1 |<--+ |
1005 * S0 | S0 | S4 | S3 | S1 | S1 | S0 | S1 | S2 | S4 | S0 |
1006 * S1 | S2 | S4 | S3 | S1 | S1 | S2 | S1 | S2 | S4 | S2 |
1007 * S2 | S2 | S4 | S3 | S1 | S
1018 S1, /* in a word */ enumerator in enum:gecos_state
[all...]
/illumos-gate/usr/src/uts/common/inet/kssl/
H A Dksslrec.c1148 * PRF(secret, label, seed) = P_MD5(S1, label + seed) XOR
1150 * S1 = 1st half of secret.
1151 * S1 = 2nd half of secret.
1157 crypto_key_t S1, S2; local
1172 S1.ck_data = secret;
1173 S1.ck_length = slen * 8; /* bits */
1174 S1.ck_format = CRYPTO_KEY_RAW;
1180 rv = kssl_tls_P_hash(&hmac_md5_mech, &S1, MD5_HASH_LEN,
/illumos-gate/usr/src/uts/sun4u/sys/
H A Denvctrl_ue450.h54 #define S1 &unitp->bus_ctl_regs->s1 macro
146 * Register S1 Looks like the following:
169 * Register S1 Looks like the following:
205 * | H | X | X | X | Read/write CSR1 (S1) Status n/a
218 * | H | X | X | H | Write Control Register (S1)
220 * | H | X | X | H | Read Status Register (S1)
H A Denvctrl.h57 #define S1 &unitp->bus_ctl_regs->s1 macro
201 * Register S1 Looks like the following:
224 * Register S1 Looks like the following:
260 * | H | X | X | X | Read/write CSR1 (S1) Status n/a
273 * | H | X | X | H | Write Control Register (S1)
275 * | H | X | X | H | Read Status Register (S1)

Completed in 133 milliseconds