/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/ |
H A D | e_fmod.c | 38 u_int32_t lx,ly,lz; local 40 EXTRACT_WORDS(hx,lx,x); 51 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */ 52 if(lx==ly) 59 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1; 74 /* set up {hx,lx}, {hy,ly} and align y to x */ 80 hx = (hx<<n)|(lx>>(32-n)); 81 lx <<= n; 83 hx = lx<<(n-32); 84 lx [all...] |
H A D | s_frexp.c | 37 int32_t hx, ix, lx; local 38 EXTRACT_WORDS(hx,lx,x); 41 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */
|
H A D | e_atan2.c | 66 u_int32_t lx,ly; local 68 EXTRACT_WORDS(hx,lx,x); 72 if(((ix|((lx|-lx)>>31))>0x7ff00000)|| 75 if(((hx-0x3ff00000)|lx)==0) return atan(y); /* x=1.0 */ 88 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
|
H A D | e_cosh.c | 54 u_int32_t lx; local 81 GET_LOW_WORD(lx,x); 83 ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) {
|
H A D | e_log10.c | 83 u_int32_t lx; local 85 EXTRACT_WORDS(hx,lx,x); 89 if (((hx&0x7fffffff)|lx)==0)
|
H A D | e_sinh.c | 46 u_int32_t lx; local 70 GET_LOW_WORD(lx,x); 71 if (ix<0x408633CE || ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) {
|
H A D | s_scalbn.c | 37 int32_t k,hx,lx; local 38 EXTRACT_WORDS(hx,lx,x); 41 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
|
H A D | e_log2.c | 45 u_int32_t lx; local 47 EXTRACT_WORDS(hx,lx,x); 51 if (((hx&0x7fffffff)|lx)==0)
|
H A D | e_acos.c | 84 u_int32_t lx; local 86 GET_LOW_WORD(lx,x); 87 if(((ix-0x3ff00000)|lx)==0) { /* |x|==1 */
|
H A D | e_asin.c | 85 u_int32_t lx; local 86 GET_LOW_WORD(lx,x); 87 if(((ix-0x3ff00000)|lx)==0)
|
H A D | e_exp.c | 124 u_int32_t lx; local 125 GET_LOW_WORD(lx,x); 126 if(((hx&0xfffff)|lx)!=0)
|
H A D | e_log.c | 107 u_int32_t lx; local 109 EXTRACT_WORDS(hx,lx,x); 113 if (((hx&0x7fffffff)|lx)==0)
|
H A D | e_pow.c | 124 u_int32_t lx,ly; local 126 EXTRACT_WORDS(hx,lx,x); 134 if(ix > 0x7ff00000 || ((ix==0x7ff00000)&&(lx!=0)) || 161 if(((ix-0x3ff00000)|lx)==0) 180 if(lx==0) {
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | fbedgeimp.h | 48 xFixed lx, rx; local 52 lx = l->x; 53 if (lx < 0) 54 lx = 0; 60 if (rx > lx) 64 lxi = xFixedToInt (lx); 92 lxs = RenderSamplesX (lx, N_BITS);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/ |
H A D | fbedgeimp.h | 48 xFixed lx, rx; local 52 lx = l->x; 53 if (lx < 0) 54 lx = 0; 60 if (rx > lx) 64 lxi = xFixedToInt (lx); 92 lxs = RenderSamplesX (lx, N_BITS);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/ |
H A D | fbedgeimp.h | 48 xFixed lx, rx; local 52 lx = l->x; 53 if (lx < 0) 54 lx = 0; 60 if (rx > lx) 64 lxi = xFixedToInt (lx); 92 lxs = RenderSamplesX (lx, N_BITS);
|
/vbox/src/VBox/Additions/x11/x11include/pixman-0.16.0/ |
H A D | pixman-edge-imp.h | 43 pixman_fixed_t lx; local 48 lx = l->x; 54 lx += X_FRAC_FIRST(1); 58 if (lx < 0) 59 lx = 0; 72 if (rx > lx) 76 lxi = pixman_fixed_to_int (lx); 140 lxs = RENDER_SAMPLES_X (lx, N_BITS);
|
/vbox/src/libs/zlib-1.2.6/ |
H A D | trees.c | 1065 unsigned lx = 0; /* running index in l_buf */ local 1070 dist = s->d_buf[lx]; 1071 lc = s->l_buf[lx++]; 1097 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx, 1100 } while (lx < s->last_lit);
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/ |
H A D | ath9k_ar9003_eeprom.c | 3825 int lx = 0, ly = 0, lhave = 0; local 3848 if (!lhave || dx < (x - lx)) { 3850 lx = px[ip]; 3862 if (hx == lx) 3865 y = interpolate(x, lx, hx, ly, hy);
|
/vbox/src/VBox/Main/webservice/jaxlibs/ |
H A D | saaj-impl.jar | META-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ... |