gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 10 of 26 for funcall:EXTRACT_WORDS (0.01 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/e_acosh.c - 2.0KB - 71 lines
44:         u_int32_t lx;
45:         EXTRACT_WORDS(hx,lx,x);
46:         if(hx<0x3ff00000) {            /* x < 1 */
bsd_source/lib/libc/src_bsd/math/e_atan2.c - 4.5KB - 132 lines
62: 
63:         EXTRACT_WORDS(hx,lx,x);
64:         ix = hx&0x7fffffff;
More results from e_atan2.c
bsd_source/lib/libc/src_bsd/math/e_atanh.c - 1.9KB - 71 lines
47:         u_int32_t lx;
48:         EXTRACT_WORDS(hx,lx,x);
49:         ix = hx&0x7fffffff;
bsd_source/lib/libc/src_bsd/math/e_fmod.c - 4.3KB - 142 lines
34: 
35:         EXTRACT_WORDS(hx,lx,x);
36:         EXTRACT_WORDS(hy,ly,y);
More results from e_fmod.c
bsd_source/lib/libc/src_bsd/math/e_j0.c - 15.1KB - 379 lines
146: 
147:         EXTRACT_WORDS(hx,lx,x);
148:         ix = 0x7fffffff&hx;
bsd_source/lib/libc/src_bsd/math/e_j1.c - 14.7KB - 374 lines
143: 
144:         EXTRACT_WORDS(hx,lx,x);
145:         ix = 0x7fffffff&hx;
bsd_source/lib/libc/src_bsd/math/e_jn.c - 9.3KB - 261 lines
58:      */
59:         EXTRACT_WORDS(hx,lx,x);
60:         ix = 0x7fffffff&hx;
More results from e_jn.c
bsd_source/lib/libc/src_bsd/math/e_lgamma_r.c - 12.2KB - 304 lines
204: 
205:         EXTRACT_WORDS(hx,lx,x);
206: 
bsd_source/lib/libc/src_bsd/math/e_log.c - 5.0KB - 144 lines
92: 
93:         EXTRACT_WORDS(hx,lx,x);
94: 
bsd_source/lib/libc/src_bsd/math/e_log10.c - 2.9KB - 96 lines
68: 
69:         EXTRACT_WORDS(hx,lx,x);
70: