Searched defs:high (Results 1 - 9 of 9) sorted by relevance

/bionic/libm/src/
H A Ds_fabs.c27 u_int32_t high; local
28 GET_HIGH_WORD(high,x);
29 SET_HIGH_WORD(x,high&0x7fffffff);
H A Ds_modf.c39 if(j0<20) { /* integer part in high x */
46 u_int32_t high; local
48 GET_HIGH_WORD(high,x);
49 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
57 u_int32_t high; local
59 GET_HIGH_WORD(high,x);
60 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
65 u_int32_t high; local
67 GET_HIGH_WORD(high,x);
68 INSERT_WORDS(x,high
[all...]
H A De_hypot.c119 u_int32_t high; local
121 GET_HIGH_WORD(high,t1);
122 SET_HIGH_WORD(t1,high+(k<<20));
H A Ds_cbrt.c42 u_int32_t high,low; local
70 GET_HIGH_WORD(high,t);
71 SET_HIGH_WORD(t,sign|((high&0x7fffffff)/3+B2));
81 GET_HIGH_WORD(high,t);
82 INSERT_WORDS(t,high+0x00000001,0);
H A Ds_cbrtf.c44 u_int32_t high; local
57 GET_FLOAT_WORD(high,t);
58 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2));
68 GET_FLOAT_WORD(high,t);
69 SET_FLOAT_WORD(t,(high&0xfffff000)+0x00001000);
H A De_jn.c253 u_int32_t high; local
257 GET_HIGH_WORD(high,b);
258 for(i=1;i<n&&high!=0xfff00000;i++){
261 GET_HIGH_WORD(high,b);
H A De_rem_pio2.c83 GET_HIGH_WORD(hx,x); /* high word of x */
121 u_int32_t high; local
124 GET_HIGH_WORD(high,y[0]);
125 i = j-((high>>20)&0x7ff);
132 GET_HIGH_WORD(high,y[0]);
133 i = j-((high>>20)&0x7ff);
H A Ds_expm1.c140 hx &= 0x7fffffff; /* high word of |x| */
197 u_int32_t high; local
199 GET_HIGH_WORD(high,y);
200 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */
205 u_int32_t high; local
208 GET_HIGH_WORD(high,y);
209 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */
211 u_int32_t high; local
215 GET_HIGH_WORD(high,y);
216 SET_HIGH_WORD(y,high
[all...]
/bionic/libc/kernel/common/linux/
H A Dwireless.h344 struct iw_quality high; member in struct:iw_thrspy

Completed in 658 milliseconds