Home
last modified time | relevance | path

Searched refs:w (Results 1 – 25 of 208) sorted by relevance

123456789

/l4re-core-master/uclibc/lib/contrib/uclibc/libm/
A Dk_tan.c71 double z,r,v,w,s; in __kernel_tan() local
86 w = pio4lo-y; in __kernel_tan()
87 x = z+w; y = 0.0; in __kernel_tan()
90 w = z*z; in __kernel_tan()
95 r = T[1]+w*(T[3]+w*(T[5]+w*(T[7]+w*(T[9]+w*T[11])))); in __kernel_tan()
96 v = z*(T[2]+w*(T[4]+w*(T[6]+w*(T[8]+w*(T[10]+w*T[12]))))); in __kernel_tan()
100 w = x+r; in __kernel_tan()
103 return (double)(1-((hx>>30)&2))*(v-2.0*(x-(w*w/(w+v)-r))); in __kernel_tan()
105 if(iy==1) return w; in __kernel_tan()
110 z = w; in __kernel_tan()
[all …]
A Ds_atan.c69 double w,s1,s2,z; in atan() local
104 w = z*z; in atan()
106 s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10]))))); in atan()
107 s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9])))); in atan()
A De_rem_pio2.c71 double z=0.0,w,t,r,fn; in __ieee754_rem_pio2() local
116 y[0] = r-w; in __ieee754_rem_pio2()
121 w = fn*pio2_2; in __ieee754_rem_pio2()
122 r = t-w; in __ieee754_rem_pio2()
123 w = fn*pio2_2t-((t-r)-w); in __ieee754_rem_pio2()
124 y[0] = r-w; in __ieee754_rem_pio2()
129 w = fn*pio2_3; in __ieee754_rem_pio2()
130 r = t-w; in __ieee754_rem_pio2()
131 w = fn*pio2_3t-((t-r)-w); in __ieee754_rem_pio2()
132 y[0] = r-w; in __ieee754_rem_pio2()
[all …]
A De_asin.c65 double t=0.0,w,p,q,c,r,s; in __ieee754_asin() local
83 w = p/q; in __ieee754_asin()
84 return x+x*w; in __ieee754_asin()
88 w = one-fabs(x); in __ieee754_asin()
89 t = w*0.5; in __ieee754_asin()
94 w = p/q; in __ieee754_asin()
95 t = pio2_hi-(2.0*(s+s*w)-pio2_lo); in __ieee754_asin()
97 w = s; in __ieee754_asin()
98 SET_LOW_WORD(w,0); in __ieee754_asin()
99 c = (t-w*w)/(s+w); in __ieee754_asin()
[all …]
A De_hypot.c49 double a=x,b=y,t1,t2,_y1,y2,w; in __ieee754_hypot() local
64 w = a+b; /* for sNaN */ in __ieee754_hypot()
66 if(((ha&0xfffff)|low)==0) w = a; in __ieee754_hypot()
68 if(((hb^0x7ff00000)|low)==0) w = b; in __ieee754_hypot()
69 return w; in __ieee754_hypot()
95 w = a-b; in __ieee754_hypot()
96 if (w>b) { in __ieee754_hypot()
100 w = __ieee754_sqrt(t1*t1-(b*(-b)-t2*(a+t1))); in __ieee754_hypot()
109 w = __ieee754_sqrt(t1*_y1-(w*(-w)-(t1*y2+t2*b))); in __ieee754_hypot()
116 return t1*w; in __ieee754_hypot()
[all …]
A De_cosh.c40 double t,w; in __ieee754_cosh() local
54 w = one+t; in __ieee754_cosh()
55 if (ix<0x3c800000) return w; /* cosh(tiny) = 1 */ in __ieee754_cosh()
56 return one+(t*t)/(w+w); in __ieee754_cosh()
72 w = __ieee754_exp(half*fabs(x)); in __ieee754_cosh()
73 t = half*w; in __ieee754_cosh()
74 return t*w; in __ieee754_cosh()
A De_log2.c75 double hfsq,f,s,z,R,w,t1,t2,dk; in __ieee754_log2() local
105 w = z*z; in __ieee754_log2()
107 t1= w*(Lg2+w*(Lg4+w*Lg6)); in __ieee754_log2()
108 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7))); in __ieee754_log2()
A De_lgamma_r.c202 double t,y,z,nadj=0,p,p1,p2,p3,q,r,w; in __ieee754_lgamma_r() local
256 w = z*y; in __ieee754_lgamma_r()
257 p1 = t0+w*(t3+w*(t6+w*(t9 +w*t12))); /* parallel comp */ in __ieee754_lgamma_r()
258 p2 = t1+w*(t4+w*(t7+w*(t10+w*t13))); in __ieee754_lgamma_r()
259 p3 = t2+w*(t5+w*(t8+w*(t11+w*t14))); in __ieee754_lgamma_r()
260 p = z*p1-(tt-w*(p2+y*p3)); in __ieee754_lgamma_r()
289 w = w0+z*(w1+y*(w2+y*(w3+y*(w4+y*(w5+y*w6))))); in __ieee754_lgamma_r()
290 r = (x-half)*(t-one)+w; in __ieee754_lgamma_r()
A Ds_asinh.c33 double t,w; in asinh() local
42 w = __ieee754_log(fabs(x))+ln2; in asinh()
45 w = __ieee754_log(2.0*t+one/(__ieee754_sqrt(x*x+one)+t)); in asinh()
48 w =log1p(fabs(x)+t/(one+__ieee754_sqrt(one+t))); in asinh()
50 if(hx>0) return w; else return -w; in asinh()
A De_log.c82 double hfsq,f,s,z,R,w,t1,t2,dk; in __ieee754_log() local
115 w = z*z; in __ieee754_log()
117 t1= w*(Lg2+w*(Lg4+w*Lg6)); in __ieee754_log()
118 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7))); in __ieee754_log()
A Ds_lrint.c39 volatile double w; in lrint() local
56 w = two52[sx] + x; in lrint()
57 t = w - two52[sx]; in lrint()
72 w = two52[sx] + x; in lrint()
73 t = w - two52[sx]; in lrint()
A Ds_llrint.c39 volatile double w; in llrint() local
51 w = two52[sx] + x; in llrint()
52 t = w - two52[sx]; in llrint()
66 w = two52[sx] + x; in llrint()
67 t = w - two52[sx]; in llrint()
A Ds_rint.c42 volatile double w; in rint() local
65 w = TWO52[sx]+x; in rint()
66 t = w-TWO52[sx]; in rint()
86 w = TWO52[sx]+x; in rint()
87 return w-TWO52[sx]; in rint()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/v850/
A D__longjmp.S20 sld.w 0[ep], sp
21 sld.w 4[ep], lp
22 sld.w 8[ep], r2
23 sld.w 12[ep], r20
24 sld.w 16[ep], r21
25 sld.w 20[ep], r22
26 sld.w 24[ep], r23
27 sld.w 28[ep], r24
28 sld.w 32[ep], r25
29 sld.w 36[ep], r26
[all …]
A Dsetjmp.S29 sst.w sp, 0[ep]
30 sst.w lp, 4[ep]
31 sst.w r2, 8[ep]
32 sst.w r20, 12[ep]
33 sst.w r21, 16[ep]
34 sst.w r22, 20[ep]
35 sst.w r23, 24[ep]
36 sst.w r24, 28[ep]
37 sst.w r25, 32[ep]
38 sst.w r26, 36[ep]
[all …]
/l4re-core-master/l4sys/include/
A Dfactory.h419 int w = l4_msgtag_words(*tag); in l4_factory_create_add_fpage_u() local
423 v->mr[w + 1] = d.raw; in l4_factory_create_add_fpage_u()
424 w += 2; in l4_factory_create_add_fpage_u()
438 v->mr[w + 1] = d; in l4_factory_create_add_int_u()
439 w += 2; in l4_factory_create_add_int_u()
453 v->mr[w + 1] = d; in l4_factory_create_add_uint_u()
454 w += 2; in l4_factory_create_add_uint_u()
480 c = (char*)&v->mr[w + 1]; in l4_factory_create_add_lstr_u()
484 w = w + 1 + l4_bytes_to_mwords(len); in l4_factory_create_add_lstr_u()
495 v->mr[w] = L4_VARG_TYPE_NIL; in l4_factory_create_add_nil_u()
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/locale/collation/
A Dmi_NZ3 %% a b c d e f g h i j k l m n ng o p q r s t u v w wh x y z
10 collating-symbol <w-h-mi>
12 collating-element <w-h> from "<U0077><U0068>"
14 collating-element <w-H> from "<U0077><U0048>"
26 reorder-after <w>
27 <w-h-mi>
37 <w-h> <w-h-mi>;<PCT>;<MIN>;IGNORE
38 <w-H> <w-h-mi>;<PCT>;<MIN-CAP>;IGNORE
40 <W-H> <w-h-mi>;<PCT>;<CAP>;IGNORE
41 <W-h> <w-h-mi>;<PCT>;<CAP-MIN>;IGNORE
A Dsv_SE18 % The letter w is normally not present in the Swedish alphabet. It
20 % for as a variant of 'v'. Words and names with 'w' are in Swedish
22 % words or names are only to be distinguished by 'v' or % 'w', 'v' is
23 % placed before 'w'.
25 <U0057> <v>;<BAS>;<CAP>;<w> % W
27 <U0077> <v>;<BAS>;<MIN>;<w> % w
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/wctype/
A D_wctype.c243 # define TOWLOWER(w) towlower(w) argument
245 # define TOWLOWER(w) towlower_l(w, __locale_t locale) argument
253 # define TOWCTRANS(w,d) towctrans(w,d) argument
342 # define TOWUPPER(w) towupper(w) in libc_hidden_def() argument
352 # define TOWCTRANS(w,d) towctrans(w,d) in libc_hidden_def()
580 # define ISWCTYPE(w,d) iswctype(w,d) argument
687 # define TOWCTRANS(w,d) towctrans(w,d)
695 # define TOWLOWER(w,l) towlower_l(w,l)
696 # define TOWUPPER(w,l) towupper_l(w,l)
698 # define TOWLOWER(w,l) towlower(w)
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/avr32/
A Dstrcmp.S26 1: ld.w r8, s1++
27 ld.w r9, s2++
28 cp.w r8, r9
38 cp.w r11, 0
44 cp.w r11, 0
50 cp.w r11, 0
64 cp.w r9, 0
81 cp.w r9, 0
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/avr32/
A Dcrt1.S45 ld.w r11, sp++ /* argc */
48 st.w --sp, r10 /* stack_end */
49 st.w --sp, r12 /* rtld_fini */
55 lda.w r9, _init
56 lda.w r8, _fini
57 lda.w r12, main
A Dsyscall.S24 cp.w r12, -4095
34 st.w r12[0], r3
36 ld.w r3, r6[errno@got]
38 st.w r3[0], r12
44 st.w r12[0], r3
48 st.w r3[0], r12
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/locale/
A Dgen_collate.c431 weight_t w; in do_range() local
534 weight_t w; in add_weight() local
2351 w.symbol = sym; in find_wi_index()
2352 l.data = &w; in find_wi_index()
2383 w.symbol = sym; in find_wi_index_reordered()
2384 l.data = &w; in find_wi_index_reordered()
2474 p = w->weight;
2539 p = w->weight; in dump_section()
3391 w.weight = NULL; in complete_starter_node()
3713 assert(w->colitem[i] && *w->colitem[i]); in add_rule()
[all …]
/l4re-core-master/l4re_c/lib/src/
A Dview.cc26 l4re_video_view_refresh(l4re_video_view_t *view, int x, int y, int w, in l4re_video_view_refresh() argument
30 return v->refresh(x, y, w, h); in l4re_video_view_refresh()
50 l4re_video_view_set_viewport(l4re_video_view_t *view, int x, int y, int w, in l4re_video_view_set_viewport() argument
54 return v->set_viewport(x, y, w, h, bofs); in l4re_video_view_set_viewport()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/m68k/
A Dclone.S25 beq.w __syscall_error_trampoline
29 beq.w __syscall_error_trampoline
54 bmi.w __syscall_error_trampoline
55 beq.w thread_start

Completed in 30 milliseconds

123456789