HomeSort by: relevance | last modified time | path
    Searched defs:ax (Results 1 - 25 of 72) sorted by relevancy

1 2 3

  /src/external/gpl3/gdb/dist/sim/testsuite/sh/
fcnvds.s 12 mov.l ax, r0
55 ax: .long x label
  /src/external/gpl3/gdb.old/dist/sim/testsuite/sh/
fcnvds.s 12 mov.l ax, r0
55 ax: .long x label
  /src/lib/libm/ld128/
s_cospil.c 49 long double ai, ar, ax, c; local
51 ax = fabsl(x);
53 if (ax <= 1) {
54 if (ax < 0.25) {
55 if (ax < 0x1p-60) {
59 return (__kernel_cospil(ax));
62 if (ax < 0.5)
63 c = __kernel_sinpil(0.5 - ax);
64 else if (ax < 0.75) {
65 if (ax == 0.5
    [all...]
s_sinpil.c 49 long double ai, ar, ax, hi, lo, s; local
51 ax = fabsl(x);
53 if (ax < 1) {
54 if (ax < 0.25) {
55 if (ax < 0x1p-60) {
66 s = __kernel_sinpil(ax);
70 if (ax < 0.5)
71 s = __kernel_cospil(0.5 - ax);
72 else if (ax < 0.75)
73 s = __kernel_cospil(ax - 0.5)
    [all...]
s_tanpil.c 72 long double ai, ar, ax, hi, lo, t; local
75 ax = fabsl(x);
77 if (ax < 1) {
78 if (ax < 0.5) {
79 if (ax < 0x1p-60) {
89 t = __kernel_tanpil(ax);
90 } else if (ax == 0.5)
93 t = -__kernel_tanpil(1 - ax);
97 if (ax < 0x1p112) {
98 /* Split ax = ai + ar with 0 <= ar < 1. *
    [all...]
  /src/lib/libm/ld80/
s_cospil.c 48 long double ax, c; local
55 INSERT_LDBL80_WORDS(ax, ix, lx);
65 RETURNI(__kernel_cospil(ax));
69 c = __kernel_sinpil(0.5 - ax);
71 if (ax == 0.5)
73 c = -__kernel_sinpil(ax - 0.5);
75 c = -__kernel_cospil(1 - ax);
80 FFLOORL80(x, j0, ix, lx); /* Integer part of ax. */
81 ax -= x;
82 EXTRACT_LDBL80_WORDS(ix, lx, ax);
    [all...]
s_sinpil.c 50 long double ax, hi, lo, s; local
57 INSERT_LDBL80_WORDS(ax, ix, lx);
74 s = __kernel_sinpil(ax);
79 s = __kernel_cospil(0.5 - ax);
81 s = __kernel_cospil(ax - 0.5);
83 s = __kernel_sinpil(1 - ax);
88 FFLOORL80(x, j0, ix, lx); /* Integer part of ax. */
89 ax -= x;
90 EXTRACT_LDBL80_WORDS(ix, lx, ax);
97 s = __kernel_sinpil(ax);
    [all...]
s_tanpil.c 71 long double ax, hi, lo, odd, t; local
78 INSERT_LDBL80_WORDS(ax, ix, lx);
95 t = __kernel_tanpil(ax);
96 } else if (ax == 0.5)
99 t = -__kernel_tanpil(1 - ax);
104 FFLOORL80(x, j0, ix, lx); /* Integer part of ax. */
106 ax -= x;
107 EXTRACT_LDBL80_WORDS(ix, lx, ax);
110 t = ix == 0 ? copysignl(0, odd) : __kernel_tanpil(ax);
111 else if (ax == 0.5L
    [all...]
  /src/lib/libm/src/
s_cospi.c 84 double ax, c; local
89 INSERT_WORDS(ax, ix, lx);
94 if ((int)ax == 0)
97 return (__kernel_cospi(ax));
101 c = __kernel_sinpi(0.5 - ax);
103 if (ax == 0.5)
105 c = -__kernel_sinpi(ax - 0.5);
107 c = -__kernel_cospi(1 - ax);
112 FFLOOR(x, jj0, ix, lx); /* Integer part of ax. */
113 ax -= x
    [all...]
s_cospif.c 50 float ax, c; local
55 SET_FLOAT_WORD(ax, ix);
61 if ((int)ax == 0)
64 return (__kernel_cospif(ax));
68 c = __kernel_sinpif(0.5F - ax);
72 c = -__kernel_sinpif(ax - 0.5F);
74 c = -__kernel_cospif(1 - ax);
79 FFLOORF(x, jj0, ix); /* Integer part of ax. */
80 ax -= x;
81 GET_FLOAT_WORD(ix, ax);
    [all...]
s_sinpi.c 86 double ax, hi, lo, s; local
91 INSERT_WORDS(ax, ix, lx);
111 s = __kernel_sinpi(ax);
116 s = __kernel_cospi(0.5 - ax);
118 s = __kernel_cospi(ax - 0.5);
120 s = __kernel_sinpi(1 - ax);
125 FFLOOR(x, j0, ix, lx); /* Integer part of ax. */
126 ax -= x;
127 EXTRACT_WORDS(ix, lx, ax);
134 s = __kernel_sinpi(ax);
    [all...]
s_sinpif.c 56 float ax, hi, lo, s; local
61 SET_FLOAT_WORD(ax, ix);
76 s = __kernel_sinpif(ax);
81 s = __kernel_cospif(0.5F - ax);
83 s = __kernel_cospif(ax - 0.5F);
85 s = __kernel_sinpif(1 - ax);
90 FFLOORF(x, j0, ix); /* Integer part of ax. */
91 ax -= x;
92 GET_FLOAT_WORD(ix, ax);
99 s = __kernel_sinpif(ax);
    [all...]
s_tanpi.c 117 double ax, hi, lo, odd, t; local
122 INSERT_WORDS(ax, ix, lx);
141 t = __kernel_tanpi(ax);
142 } else if (ax == 0.5)
145 t = - __kernel_tanpi(1 - ax);
150 FFLOOR(x, j0, ix, lx); /* Integer part of ax. */
152 ax -= x;
153 EXTRACT_WORDS(ix, lx, ax);
156 t = ix == 0 ? copysign(0, odd) : __kernel_tanpi(ax);
157 else if (ax == 0.5
    [all...]
s_tanpif.c 65 float ax, hi, lo, odd, t; local
70 SET_FLOAT_WORD(ax, ix);
84 t = __kernel_tanpif(ax);
88 t = - __kernel_tanpif(1 - ax);
93 FFLOORF(x, jj0, ix); /* Integer part of ax. */
95 ax -= x;
96 GET_FLOAT_WORD(ix, ax);
99 t = ix == 0 ? copysignf(0, odd) : __kernel_tanpif(ax);
103 t = - __kernel_tanpif(1 - ax);
s_clogl.c 57 long double ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl; local
69 ax = fabsl(x);
71 if (ax < ay) {
72 t = ax;
73 ax = ay;
77 GET_LDBL_EXPSIGN(hax, ax);
86 /* Avoid spurious underflow, and reduce inaccuracies when ax is 1. */
87 if (ax == 1) {
93 /* Avoid underflow when ax is not small. Also handle zero args. */
95 RETURNI(CMPLXL(logl(ax), v))
    [all...]
s_log1p.c 112 int32_t k,hx,hu,ax; local
117 ax = hx&0x7fffffff;
121 if(ax>=0x3ff00000) { /* x <= -1.0 */
125 if(ax<0x3e200000) { /* |x| < 2**-29 */
127 &&ax<0x3c900000) /* |x| < 2**-54 */
s_log1pf.c 45 int32_t k,hx,hu,ax; local
50 ax = hx&0x7fffffff;
54 if(ax>=0x3f800000) { /* x <= -1.0 */
58 if(ax<0x31000000) { /* |x| < 2**-29 */
60 &&ax<0x24800000) /* |x| < 2**-54 */
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
nsrecurs.cc 3 int ax = 9; member in namespace:A
56 return ax + dx + xx + G::GF::FE::ex;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
nsrecurs.cc 3 int ax = 9; member in namespace:A
56 return ax + dx + xx + G::GF::FE::ex;
  /src/crypto/external/apache2/openssl/dist/crypto/x509/
x509_trust.c 253 X509_CERT_AUX *ax = x->aux; local
256 if (ax != NULL && ax->reject != NULL) {
257 for (i = 0; i < sk_ASN1_OBJECT_num(ax->reject); i++) {
258 ASN1_OBJECT *obj = sk_ASN1_OBJECT_value(ax->reject, i);
266 if (ax != NULL && ax->trust != NULL) {
267 for (i = 0; i < sk_ASN1_OBJECT_num(ax->trust); i++) {
268 ASN1_OBJECT *obj = sk_ASN1_OBJECT_value(ax->trust, i);
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
x509_trust.c 253 X509_CERT_AUX *ax = x->aux; local
256 if (ax && ax->reject) {
257 for (i = 0; i < sk_ASN1_OBJECT_num(ax->reject); i++) {
258 ASN1_OBJECT *obj = sk_ASN1_OBJECT_value(ax->reject, i);
267 if (ax && ax->trust) {
268 for (i = 0; i < sk_ASN1_OBJECT_num(ax->trust); i++) {
269 ASN1_OBJECT *obj = sk_ASN1_OBJECT_value(ax->trust, i);
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509/
x509_trs.c 253 X509_CERT_AUX *ax = x->aux; local
256 if (ax && ax->reject) {
257 for (i = 0; i < sk_ASN1_OBJECT_num(ax->reject); i++) {
258 ASN1_OBJECT *obj = sk_ASN1_OBJECT_value(ax->reject, i);
267 if (ax && ax->trust) {
268 for (i = 0; i < sk_ASN1_OBJECT_num(ax->trust); i++) {
269 ASN1_OBJECT *obj = sk_ASN1_OBJECT_value(ax->trust, i);
  /src/external/bsd/openldap/dist/servers/slapd/back-mdb/
index.c 199 AttrIxInfo *ax = (AttrIxInfo *)LDAP_SLIST_FIRST(&op->o_extra); local
200 ax->ai_ai = ai;
202 mc = (MDB_cursor *)ax;
  /src/external/lgpl3/mpfr/dist/src/
sqr.c 39 mpfr_exp_t ax; local
49 ax = MPFR_GET_EXP(b) * 2;
53 ax --;
64 if (MPFR_UNLIKELY(ax > __gmpfr_emax))
70 if (MPFR_UNLIKELY(ax < __gmpfr_emin))
80 if (ax == __gmpfr_emin - 1 && ap[0] == ~mask &&
86 (a) either ax < emin - 1
87 (b) or ax = emin - 1 and ap[0] = 1000....000 and rb = sb = 0 */
89 (ax < __gmpfr_emin - 1 ||
96 MPFR_EXP (a) = ax; /* Don't use MPFR_SET_EXP since ax might be < __gmpfr_emi
140 mpfr_exp_t ax; local
238 mpfr_exp_t ax = 2 * MPFR_GET_EXP(b); local
366 mpfr_exp_t ax = 2 * MPFR_GET_EXP(b); local
511 mpfr_exp_t ax; local
    [all...]
  /src/lib/libm/complex/
catrig.c 300 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
306 ax = fabs(x);
327 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) {
343 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4)
346 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
381 double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; local
390 ax = fabs(x);
411 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) {
428 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4)
431 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x)
481 double ax, ay, t; local
592 double x, y, ax, ay, rx, ry; local
    [all...]

Completed in 35 milliseconds

1 2 3