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

123

/haiku-fatelf/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-fatelf/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-fatelf/src/system/libroot/posix/glibc/arch/generic/
H A De_acoshl.c54 u_int32_t se,i0,i1; local
55 GET_LDOUBLE_WORDS(se,i0,i1,x);
56 if(se<0x3fff || se & 0x8000) { /* x < 1 */
58 } else if(se >=0x401d) { /* x > 2**30 */
59 if(se >=0x7fff) { /* x is inf of NaN */
63 } else if(((se-0x3fff)|i0|i1)==0) {
65 } else if (se > 0x4000) { /* 2**28 > x > 2 */
H A Ds_frexpl.c54 u_int32_t se, hx, ix, lx; local
55 GET_LDOUBLE_WORDS(se,hx,lx,x);
56 ix = 0x7fff&se;
61 GET_LDOUBLE_EXP(se,x);
62 ix = se&0x7fff;
66 se = (se & 0x8000) | 0x3ffe;
67 SET_LDOUBLE_EXP(x,se);
H A Ds_llrintl.c36 int32_t se,j0; local
43 GET_LDOUBLE_WORDS (se, i0, i1, x);
45 sx = (se >> 15) & 1;
46 j0 = (se & 0x7fff) - 0x3fff;
56 GET_LDOUBLE_WORDS (se, i0, i1, t);
57 j0 = (se & 0x7fff) - 0x3fff;
H A Ds_modfl.c48 u_int32_t i, se; local
49 GET_LDOUBLE_WORDS(se,i0,i1,x);
50 j0 = (se & 0x7fff) - 0x3fff; /* exponent of x */
53 SET_LDOUBLE_WORDS(*iptr,se&0x8000,0,0); /* *iptr = +-0 */
59 SET_LDOUBLE_WORDS(x,se&0x8000,0,0); /* return +-0 */
62 SET_LDOUBLE_WORDS(*iptr,se,i0&(~i),0);
71 SET_LDOUBLE_WORDS(x,se&0x8000,0,0); /* return +-0 */
77 SET_LDOUBLE_WORDS(x,se&0x8000,0,0); /* return +-0 */
80 SET_LDOUBLE_WORDS(*iptr,se,i0,i1&(~i));
H A Ds_lrintl.c36 int32_t se,j0; local
43 GET_LDOUBLE_WORDS (se, i0, i1, x);
45 sx = (se >> 15) & 1;
46 j0 = (se & 0x7fff) - 0x3fff;
52 GET_LDOUBLE_WORDS (se, i0, i1, t);
53 j0 = (se & 0x7fff) - 0x3fff;
65 GET_LDOUBLE_WORDS (se, i0, i1, t);
66 j0 = (se & 0x7fff) - 0x3fff;
H A Ds_roundl.c33 u_int32_t se, i1, i0; local
35 GET_LDOUBLE_WORDS (se, i0, i1, x);
36 j0 = (se & 0x7fff) - 0x3fff;
43 se &= 0x8000;
47 se |= 0x3fff;
63 se += 1;
93 se += 1;
103 SET_LDOUBLE_WORDS (x, se, i0, i1);
H A De_atanhl.c63 u_int32_t se,i0,i1; local
64 GET_LDOUBLE_WORDS(se,i0,i1,x);
65 ix = se&0x7fff;
78 if(se<=0x7fff) return t; else return -t;
H A Ds_llroundl.c30 u_int32_t se, i1, i0; local
34 GET_LDOUBLE_WORDS (se, i0, i1, x);
35 j0 = (se & 0x7fff) - 0x3fff;
36 sign = (se & 0x8000) != 0 ? -1 : 1;
H A Ds_lroundl.c30 u_int32_t se, i1, i0; local
34 GET_LDOUBLE_WORDS (se, i0, i1, x);
35 j0 = (se & 0x7fff) - 0x3fff;
36 sign = (se & 0x8000) != 0 ? -1 : 1;
H A Ds_tanhl.c62 int32_t se; local
66 GET_LDOUBLE_WORDS(se,j0,j1,x);
67 ix = se&0x7fff;
72 if (se&0x8000) return one/x-one; /* tanhl(-inf)= -1; */
93 return (se&0x8000)? -z: z;
H A De_jnl.c85 u_int32_t se, i0, i1; local
94 GET_LDOUBLE_WORDS (se, i0, i1, x);
95 ix = se & 0x7fff;
104 se ^= 0x8000;
110 sgn = (n & 1) & (se >> 15); /* even n -- 0, odd n -- sign(x) */
303 u_int32_t se, i0, i1; local
309 GET_LDOUBLE_WORDS (se, i0, i1, x);
310 ix = se & 0x7fff;
316 if (se & 0x8000)
373 GET_LDOUBLE_WORDS (se, i
[all...]
H A Ds_erfl.c267 u_int32_t se, i0, i1; local
269 GET_LDOUBLE_WORDS (se, i0, i1, x);
270 ix = se & 0x7fff;
274 i = ((se & 0xffff) >> 15) << 1;
302 if ((se & 0x8000) == 0)
309 if ((se & 0x8000) == 0)
337 if ((se & 0x8000) == 0)
355 u_int32_t se, i0, i1; local
357 GET_LDOUBLE_WORDS (se, i0, i1, x);
358 ix = se
[all...]
H A De_asinl.c105 u_int32_t se, i0, i1, k; local
107 GET_LDOUBLE_WORDS (se, i0, i1, x);
108 ix = se & 0x7fff;
157 if ((se & 0x8000) == 0)
H A De_j1l.c131 u_int32_t se, i0, i1; local
133 GET_LDOUBLE_WORDS (se, i0, i1, x);
134 ix = se & 0x7fff;
163 if (se & 0x8000)
221 u_int32_t se, i0, i1; local
223 GET_LDOUBLE_WORDS (se, i0, i1, x);
224 ix = se & 0x7fff;
226 if (se & 0x8000)
426 u_int32_t se, i0, i1; local
428 GET_LDOUBLE_WORDS (se, i
614 u_int32_t se, i0, i1; local
[all...]
H A De_lgammal_r.c224 u_int32_t se, i0, i1; local
226 GET_LDOUBLE_WORDS (se, i0, i1, x);
227 ix = se & 0x7fff;
254 GET_LDOUBLE_WORDS (se, i0, i1, z);
298 u_int32_t se, i0, i1; local
301 GET_LDOUBLE_WORDS (se, i0, i1, x);
302 ix = se & 0x7fff;
315 if (se & 0x8000)
323 if (se & 0x8000)
443 if (se
[all...]
/haiku-fatelf/src/kits/network/libbind/irs/
H A Dgetservent_r.c43 struct servent *se = getservbyname(name, proto); local
47 if (se == NULL || (n = copy_servent(se, sptr, SERV_R_COPY)) != 0)
54 if (se == NULL)
57 return (copy_servent(se, sptr, SERV_R_COPY));
64 struct servent *se = getservbyport(port, proto); local
68 if (se == NULL || (n = copy_servent(se, sptr, SERV_R_COPY)) != 0)
75 if (se == NULL)
78 return (copy_servent(se, spt
90 struct servent *se = getservent(); local
142 copy_servent(struct servent *se, struct servent *sptr, SERV_R_COPY_ARGS) argument
193 copy_servent(struct servent *se, struct servent *sptr, SERV_R_COPY_ARGS) argument
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/mq_close/
H A D4-1.c32 struct sigevent se; local
47 se.sigev_notify = SIGEV_SIGNAL;
48 se.sigev_signo = SIGUSR1;
50 if (mq_notify(queue, &se) != -1) {
H A D2-1.c98 struct sigevent se; local
107 se.sigev_notify = SIGEV_SIGNAL;
108 se.sigev_signo = SIGUSR1;
110 if (mq_notify(queue, &se)) {
161 struct sigevent se; local
184 se.sigev_notify = SIGEV_SIGNAL;
185 if (!mq_notify(queue, &se)) {
204 se.sigev_notify = SIGEV_SIGNAL;
205 se.sigev_signo = 0;
206 rval = mq_notify(queue, &se);
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/fork/
H A D18-1.c108 struct sigevent se; local
118 se.sigev_notify = SIGEV_THREAD;
119 se.sigev_signo = 0;
120 se.sigev_value.sival_int = SIGUSR1;
121 se.sigev_notify_function = &notification;
122 se.sigev_notify_attributes = NULL; /* default detached thread */
124 ret = timer_create( CLOCK_REALTIME, &se, &tmr );
/haiku-fatelf/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_scan_sta.c212 struct sta_entry *se, *next; local
214 TAILQ_FOREACH_SAFE(se, &st->st_entry, se_list, next) {
215 TAILQ_REMOVE(&st->st_entry, se, se_list);
216 LIST_REMOVE(se, se_hash);
217 ieee80211_ies_cleanup(&se->base.se_ies);
218 free(se, M_80211_SCAN);
242 struct sta_entry *se; local
249 LIST_FOREACH(se, &st->st_hash[hash], se_hash)
250 if (IEEE80211_ADDR_EQ(se->base.se_macaddr, macaddr))
252 se
763 maxrate(const struct ieee80211_scan_entry *se) argument
872 check_rate(struct ieee80211vap *vap, const struct ieee80211_channel *chan, const struct ieee80211_scan_entry *se) argument
973 struct ieee80211_scan_entry *se = &se0->base; local
1153 struct sta_entry *se; local
1175 struct sta_entry *se; local
1188 struct sta_entry *se, *selbs = NULL; local
1278 struct sta_entry *se; local
1297 struct sta_entry *se, *selbs; local
1399 struct sta_entry *se; local
1426 struct sta_entry *se; local
1443 struct sta_entry *se; local
1525 struct sta_entry *se; local
1658 struct sta_entry *se, *next; local
[all...]
/haiku-fatelf/src/bin/bash/lib/glob/
H A Dsm_loop.c33 CHAR *se, *pe; local
38 se = string + STRLEN ((XCHAR *)string);
41 return (GMATCH (string, se, pattern, pe, flags));
47 GMATCH (string, se, pattern, pe, flags)
48 CHAR *string, *se;
63 fprintf(stderr, "gmatch: string = %s; se = %s\n", string, se);
72 sc = n < se ? *n : '\0';
84 return (EXTMATCH (c, n, se, p, pe, lflags));
142 for (newn = n; newn < se;
[all...]

Completed in 99 milliseconds

123