Searched refs:se (Results 1 - 25 of 51) sorted by relevance

123

/haiku/src/system/libroot/posix/glibc/arch/x86/
H A Ds_isnanl.c36 int32_t se,hx,lx; local
37 GET_LDOUBLE_WORDS(se,hx,lx,x);
38 se = (se & 0x7fff) << 1;
43 se |= (u_int32_t)(lx|(-lx))>>31;
44 se = 0xfffe - se;
45 return (int)((u_int32_t)(se))>>16;
H A Ds_isinfl.c27 int32_t se,hx,lx; local
28 GET_LDOUBLE_WORDS(se,hx,lx,x);
31 lx |= (hx ^ 0x80000000) | ((se & 0x7fff) ^ 0x7fff);
33 se &= 0x8000;
34 return ~(lx >> 31) & (1 - (se >> 14));
/haiku/src/system/libroot/posix/glibc/arch/x86_64/
H A Ds_isnanl.c36 int32_t se,hx,lx; local
37 GET_LDOUBLE_WORDS(se,hx,lx,x);
38 se = (se & 0x7fff) << 1;
43 se |= (u_int32_t)(lx|(-lx))>>31;
44 se = 0xfffe - se;
45 return (int)((u_int32_t)(se))>>16;
H A Ds_isinfl.c27 int32_t se,hx,lx; local
28 GET_LDOUBLE_WORDS(se,hx,lx,x);
31 lx |= (hx ^ 0x80000000) | ((se & 0x7fff) ^ 0x7fff);
33 se &= 0x8000;
34 return ~(lx >> 31) & (1 - (se >> 14));
/haiku/src/system/libroot/posix/musl/math/
H A Dcopysignl.c12 ux.i.se &= 0x7fff;
13 ux.i.se |= uy.i.se & 0x8000;
H A Dtanl.c15 u.i.se &= 0x7fff;
16 if (u.i.se == 0x7fff)
19 if (u.i.se < 0x3fff - LDBL_MANT_DIG/2) {
21 FORCE_EVAL(u.i.se == 0 ? x*0x1p-120f : x+0x1p120f);
H A Dnextafterl.c21 ux.i.se = uy.i.se & 0x8000;
22 } else if ((x < y) == !(ux.i.se & 0x8000)) {
26 ux.i.se++;
30 ux.i.se--;
31 if (ux.i.se)
37 if ((ux.i.se & 0x7fff) == 0x7fff)
40 if ((ux.i.se & 0x7fff) == 0)
57 ux.i.se = uy.i.se
[all...]
H A Datanhl.c13 unsigned e = u.i.se & 0x7fff;
14 unsigned s = u.i.se >> 15;
17 u.i.se = e;
H A Dceill.c15 int e = u.i.se & 0x7fff;
21 if (u.i.se >> 15)
28 return u.i.se >> 15 ? -0.0 : 1;
H A Dfloorl.c15 int e = u.i.se & 0x7fff;
21 if (u.i.se >> 15)
28 return u.i.se >> 15 ? -1 : 0;
H A Dfrexpl.c12 int ee = u.i.se & 0x7fff;
25 u.i.se &= 0x8000;
26 u.i.se |= 0x3ffe;
H A D__signbitl.c7 return u.i.se >> 15;
H A Dsinl.c15 u.i.se &= 0x7fff;
16 if (u.i.se == 0x7fff)
19 if (u.i.se < 0x3fff - LDBL_MANT_DIG/2) {
21 FORCE_EVAL(u.i.se == 0 ? x*0x1p-120f : x+0x1p120f);
H A Dhypotl.c31 ux.i.se &= 0x7fff;
32 uy.i.se &= 0x7fff;
33 if (ux.i.se < uy.i.se) {
34 ex = uy.i.se;
35 ey = ux.i.se;
39 ex = ux.i.se;
40 ey = uy.i.se;
H A D__fpclassifyl.c12 int e = u.i.se & 0x7fff;
34 int e = u.i.se & 0x7fff;
35 u.i.se = 0;
H A Dasinhl.c13 unsigned e = u.i.se & 0x7fff;
14 unsigned s = u.i.se >> 15;
17 u.i.se = e;
H A Dcosl.c14 u.i.se &= 0x7fff;
15 if (u.i.se == 0x7fff)
19 if (u.i.se < 0x3fff - LDBL_MANT_DIG)
H A Droundl.c15 int e = u.i.se & 0x7fff;
20 if (u.i.se >> 15)
33 if (u.i.se >> 15)
H A Dsinhl.c12 unsigned ex = u.i.se & 0x7fff;
16 if (u.i.se & 0x8000)
19 u.i.se = ex;
H A Drintl.c15 int e = u.i.se & 0x7fff;
16 int s = u.i.se >> 15;
H A Dtruncl.c15 int e = u.i.se & 0x7fff;
16 int s = u.i.se >> 15;
H A Datan2l.c40 ex = ux.i.se & 0x7fff;
41 ey = uy.i.se & 0x7fff;
42 m = 2*(ux.i.se>>15) | uy.i.se>>15;
H A Dfabsl.c12 u.i.se &= 0x7fff;
H A Dsincosl.c19 u.i.se &= 0x7fff;
20 if (u.i.se == 0x7fff) {
25 if (u.i.se < 0x3fff - LDBL_MANT_DIG) {
27 if (u.i.se == 0) FORCE_EVAL(x*0x1p-120f);
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_scan_sta.c222 struct sta_entry *se, *next; local
224 TAILQ_FOREACH_SAFE(se, &st->st_entry, se_list, next) {
225 TAILQ_REMOVE(&st->st_entry, se, se_list);
226 LIST_REMOVE(se, se_hash);
227 ieee80211_ies_cleanup(&se->base.se_ies);
228 IEEE80211_FREE(se, M_80211_SCAN);
253 struct sta_entry *se; local
260 LIST_FOREACH(se, &st->st_hash[hash], se_hash)
261 if (IEEE80211_ADDR_EQ(se->base.se_macaddr, macaddr))
263 se
809 maxrate(const struct ieee80211_scan_entry *se) argument
921 check_rate(struct ieee80211vap *vap, const struct ieee80211_channel *chan, const struct ieee80211_scan_entry *se) argument
1020 struct ieee80211_scan_entry *se = &se0->base; local
1200 struct sta_entry *se; local
1222 struct sta_entry *se; local
1235 struct sta_entry *se, *selbs = NULL; local
1331 struct sta_entry *se; local
1350 struct sta_entry *se, *selbs; local
1455 struct sta_entry *se; local
1482 struct sta_entry *se; local
1499 struct sta_entry *se; local
1582 struct sta_entry *se; local
1731 struct sta_entry *se, *next; local
[all...]

Completed in 55 milliseconds

123