HomeSort by: relevance | last modified time | path
    Searched refs:ux (Results 1 - 25 of 58) sorted by relevancy

1 2 3

  /src/lib/libm/src/
s_ceill.c 43 #define INC_MANH(ux, c) do { \
44 uint64_t oi = ux.extu_frach; \
45 ux.extu_frach += (c); \
46 if (ux.extu_frach < oi) \
47 ux.extu_exp++; \
51 #define INC_MANH(ux, c) do { \
52 uint64_t oi = ux.extu_frach; \
53 ux.extu_frach += (c); \
54 if (ux.extu_frach < oi) { \
55 ux.extu_exp++;
66 union ieee_ext_u ux = { .extu_ld = x, }; local in function:ceill
    [all...]
s_floorl.c 43 #define INC_MANH(ux, c) do { \
44 uint64_t oi = ux.extu_frach; \
45 ux.extu_frach += (c); \
46 if (ux.extu_frach < oi) \
47 ux.extu_exp++; \
51 #define INC_MANH(ux, c) do { \
52 uint64_t oi = ux.extu_frach; \
53 ux.extu_frach += (c); \
54 if (ux.extu_frach < oi) { \
55 ux.extu_exp++;
66 union ieee_ext_u ux = { .extu_ld = x, }; local in function:floorl
    [all...]
s_nextafterl.c 48 union ieee_ext_u ux, uy; local in function:__strong_alias
50 ux.extu_ld = x;
53 if ((ux.extu_exp == EXT_EXP_INFNAN &&
54 ((ux.extu_frach &~ LDBL_NBIT)|ux.extu_fracl) != 0) ||
62 ux.extu_frach = 0; /* return +-minsubnormal */
63 ux.extu_fracl = 1;
64 ux.extu_sign = uy.extu_sign;
65 t = ux.extu_ld * ux.extu_ld
    [all...]
e_sqrtl.c 55 union ieee_ext_u ux = { .extu_ld = x, }; local in function:inc
57 if (++ux.extu_fracl == 0) {
58 if (++ux.extu_frach == 0) {
59 ux.extu_exp++;
60 ux.extu_frach |= LDBL_NBIT;
63 return (ux.extu_ld);
70 union ieee_ext_u ux = { .extu_ld = x, }; local in function:dec
72 if (ux.extu_fracl-- == 0) {
73 if (ux.extu_frach-- == LDBL_NBIT) {
74 ux.extu_exp--
89 union ieee_ext_u ux = { .extu_ld = x, }; local in function:__ieee754_sqrtl
    [all...]
s_copysignl.c 50 union ieee_ext_u ux, uy; local in function:__weak_alias
52 ux.extu_ld = x;
55 ux.extu_ext.ext_sign = uy.extu_ext.ext_sign;
57 return (ux.extu_ld);
63 union ldbl_u ux, uy;
65 memset(&ux, 0, sizeof ux);
67 ux.ldblu_ld = x;
69 ux.ldblu_d[0] = copysign(ux.ldblu_d[0], uy.ldblu_d[0])
    [all...]
s_modfl.c 69 union ieee_ext_u ux = { .extu_ld = x, }; local in function:modfl
70 int e = ux.extu_exp - LDBL_MAX_EXP + 1;
74 *iptr = zero[ux.extu_sign];
77 if ((GETFRAC(ux.extu_frach, HIBITS - 1 - e) |
78 ux.extu_fracl) == 0) { /* X is an integer. */
80 return (zero[ux.extu_sign]);
83 ux.extu_frach >>= HIBITS - 1 - e;
84 ux.extu_frach <<= HIBITS - 1 - e;
85 ux.extu_fracl = 0;
86 *iptr = ux.extu_ld
    [all...]
s_fabsl.c 42 union ieee_ext_u ux; local in function:fabsl
44 ux.extu_ld = x;
45 ux.extu_ext.ext_sign = 0;
47 return (ux.extu_ld);
s_truncl.c 53 union ieee_ext_u ux = { .extu_ld = x, }; local in function:truncl
54 int e = ux.extu_exp - LDBL_MAX_EXP + 1;
59 ux.extu_ld = zero[ux.extu_sign];
62 if (((ux.extu_frach & m) | ux.extu_fracl) == 0)
65 ux.extu_frach &= ~m;
66 ux.extu_fracl = 0;
71 if ((ux.extu_fracl & m) == 0)
74 ux.extu_fracl &= ~m
    [all...]
s_remquol.c 80 union ieee_ext_u ux, uy; local in function:remquol
86 ux.extu_ld = x;
88 sx = ux.extu_sign;
90 ux.extu_sign = 0; /* |x| */
95 (ux.extu_exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */
99 if(ux.extu_exp<=uy.extu_exp) {
100 if((ux.extu_exp<uy.extu_exp) ||
101 (ux.extu_frach<=uy.extu_frach &&
102 (ux.extu_frach<uy.extu_frach ||
103 ux.extu_fracl<uy.extu_fracl)))
    [all...]
e_fmodl.c 75 union ieee_ext_u ux = { .extu_ld = x, }; local in function:__ieee754_fmodl
82 sx = ux.extu_sign;
86 (ux.extu_exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */
90 if(ux.extu_exp<=uy.extu_exp) {
91 if((ux.extu_exp<uy.extu_exp) ||
92 (ux.extu_frach<=uy.extu_frach &&
93 (ux.extu_frach<uy.extu_frach ||
94 ux.extu_fracl<uy.extu_fracl))) {
97 if(ux.extu_frach==uy.extu_frach && ux.extu_fracl==uy.extu_fracl)
    [all...]
e_atan2l.c 69 union ieee_ext_u ux, uy; local in function:atan2l
77 ux.extu_ld = x;
78 expsignx = GET_EXPSIGN(&ux);
82 ((ux.extu_frach&~LDBL_NBIT)|ux.extu_fracl)!=0) || /* x is NaN */
86 if (expsignx==BIAS && ((ux.extu_frach&~LDBL_NBIT)|ux.extu_fracl)==0)
100 if(exptx==0 && ((ux.extu_frach&~LDBL_NBIT)|ux.extu_fracl)==0)
  /src/lib/libc/gen/
floatunditf_ieee754.c 50 union ieee_ext_u ux; local in function:__floatunditf
65 ux.extu_exp = EXT_EXP_BIAS + exponent;
66 ux.extu_frach = (x >> (64 - EXT_FRACHBITS));
69 ux.extu_frachm = (x >> (64 - EXT_FRACHMBITS));
73 ux.extu_fraclm = (x >> (64 - EXT_FRACLMBITS));
76 ux.extu_fracl = (x >> (64 - EXT_FRACLBITS));
77 ux.extu_sign = 0;
79 return ux.extu_ld;
  /src/lib/libc/quad/
floatundidf_ieee754.c 51 union ieee_double_u ux = { .dblu_d = 0.0 }; local in function:__floatundidf
60 ux.dblu_frach = u.ul[H];
61 ux.dblu_fracl = u.ul[L];
62 ux.dblu_exp = DBL_EXP_BIAS + 63 - l;
64 return ux.dblu_d;
floatdidf_ieee754.c 53 union ieee_double_u ux = { .dblu_d = 0.0 }; local in function:__floatdidf
63 ux.dblu_sign = 1;
70 ux.dblu_frach = u.ul[H];
71 ux.dblu_fracl = u.ul[L];
72 ux.dblu_exp = DBL_EXP_BIAS + 63 - l;
74 return ux.dblu_d;
fixsfdi_ieee754.c 56 const union ieee_single_u ux = { .sngu_f = x }; local in function:__fixsfdi
57 signed int exp = ux.sngu_exp - SNG_EXP_BIAS;
58 const bool neg = ux.sngu_sign;
67 r |= ux.sngu_frac;
fixunssfdi_ieee754.c 57 const union ieee_single_u ux = { .sngu_f = x }; local in function:__fixunssfdi
58 signed int exp = ux.sngu_exp - SNG_EXP_BIAS;
61 if (ux.sngu_sign)
69 r |= ux.sngu_frac;
fixdfdi_ieee754.c 58 const union ieee_double_u ux = { .dblu_d = x }; local in function:__fixdfdi
59 signed int exp = ux.dblu_exp - DBL_EXP_BIAS;
60 const bool neg = ux.dblu_sign;
67 r |= ux.dblu_frach;
73 r |= ux.dblu_fracl;
fixunsdfdi_ieee754.c 57 const union ieee_double_u ux = { .dblu_d = x }; local in function:__fixunsdfdi
58 signed int exp = ux.dblu_exp - DBL_EXP_BIAS;
61 if (ux.dblu_sign)
69 r |= ux.dblu_frach;
77 r |= ux.dblu_fracl;
floatundisf_ieee754.c 52 union ieee_single_u ux = { .sngu_f = 0.0 }; local in function:__floatundisf
63 ux.sngu_frac = x >> (64 - SNG_FRACBITS);
78 ux.sngu_frac = frac >> (32 - SNG_FRACBITS);
80 ux.sngu_exp = SNG_EXP_BIAS + 63 - l;
82 return ux.sngu_f;
floatdisf_ieee754.c 53 union ieee_single_u ux = { .sngu_f = 0.0 }; local in function:__floatdisf
63 ux.sngu_sign = 1;
70 ux.sngu_frac = (u_quad_t)x >> (64 - SNG_FRACBITS);
85 ux.sngu_frac = frac >> (32 - SNG_FRACBITS);
87 ux.sngu_exp = SNG_EXP_BIAS + 63 - l;
89 return ux.sngu_f;
  /src/lib/libc/arch/arm/gen/
__aeabi_fcmpun.c 47 const union ieee_single_u ux = { .sngu_f = x }; local in function:__aeabi_fcmpun
50 return (ux.sngu_sng.sng_exp == SNG_EXP_INFNAN
51 && ux.sngu_sng.sng_frac != 0)
__aeabi_dcmpun.c 47 const union ieee_double_u ux = { .dblu_d = x }; local in function:__aeabi_dcmpun
50 return (ux.dblu_dbl.dbl_exp == DBL_EXP_INFNAN
51 && (ux.dblu_dbl.dbl_frach|ux.dblu_dbl.dbl_fracl) != 0)
  /src/sys/arch/ews4800mips/ews4800mips/
disksubr.c 53 struct cpu_disklabel *ux)
56 struct pdinfo_sector *pdinfo = &ux->pdinfo;
57 struct vtoc_sector *vtoc = &ux->vtoc;
93 vtoc_set_default(ux, d);
96 vtoc_to_disklabel(ux, d);
104 struct cpu_disklabel *ux)
119 struct cpu_disklabel *ux)
129 disklabel_to_vtoc(ux, d);
130 DPRINTF("%s: logical_sector=%d\n", __func__, ux->pdinfo.logical_sector);
134 pdinfo_sanity(&ux->pdinfo)
    [all...]
  /src/games/hack/
hack.c 96 for (x = u.ux - 1; x < u.ux + 2; x++)
135 for (x = u.ux - 1; x < u.ux + 2; x++)
164 u.ux = u.ustuck->mx;
170 } while (!isok(u.ux + u.dx, u.uy + u.dy) ||
171 IS_ROCK(levl[u.ux + u.dx][u.uy + u.dy].typ));
173 if (!isok(u.ux + u.dx, u.uy + u.dy)) {
179 ust = &levl[u.ux][u.uy];
180 oldx = u.ux;
    [all...]
hack.read.c 223 (struct permonst *) 0, u.ux, u.uy);
250 if ((mtmp = m_at(u.ux + i, u.uy + j)) != NULL)
298 int oux = u.ux, ouy = u.uy;
303 int uroom = inroom(u.ux, u.uy);
305 if (uroom != inroom(u.ux, u.uy))
323 if (ttmp->tx != u.ux || ttmp->ty != u.uy)
347 if (gtmp->gx != u.ux || gtmp->gy != u.uy)
375 if (obj->ox == u.ux && obj->oy == u.uy)
514 setworn(mkobj_at(CHAIN_SYM, u.ux, u.uy), W_CHAIN);
515 setworn(mkobj_at(BALL_SYM, u.ux, u.uy), W_BALL)
    [all...]

Completed in 25 milliseconds

1 2 3