Searched refs:st (Results 101 - 125 of 592) sorted by relevance

1234567891011>>

/haiku-fatelf/src/system/libroot/posix/glibc/arch/x86/
H A Ds_cexpf.S101 fld %st /* x * log2(e) : x * log2(e) : y */
103 fsubr %st, %st(1) /* int(x * log2(e)) : frac(x * log2(e)) : y */
108 fst %st(1) /* e^x : e^x : y */
109 fxch %st(2) /* y : e^x : e^x */
114 fmulp %st, %st(3) /* sin(y) : e^x : e^x * cos(y) */
115 fmulp %st, %st(1) /* e^x * sin(y) : e^x * cos(y) */
131 fstp %st(
[all...]
H A De_pow.S101 fld %st // y : y : x
104 fucomp %st(1) // y : x
113 fstp %st(0) // x
125 fmul %st(1) // x : ST*x
127 5: fmul %st(0), %st // x*x : ST*x
132 fstp %st(0) // ST*x
138 fucomp %st(1) // x : y
143 31: fstp %st(1)
150 fld %st(
[all...]
H A De_powf.S101 fld %st // y : y : x
104 fucomp %st(1) // y : x
112 fstp %st(0) // x
122 fmul %st(1) // x : ST*x
124 5: fmul %st(0), %st // x*x : ST*x
127 fstp %st(0) // ST*x
133 fucomp %st(1) // x : y
138 31: fstp %st(1)
145 fld %st(
[all...]
H A De_powl.S101 fld %st // y : y : x
104 fucomp %st(1) // y : x
113 fstp %st(0) // x
125 fmul %st(1) // x : ST*x
127 5: fmul %st(0), %st // x*x : ST*x
132 fstp %st(0) // ST*x
138 fucomp %st(1) // x : y
143 31: fstp %st(1)
150 fld %st(
[all...]
H A De_fmod.S17 fstp %st(1)
H A De_fmodf.S18 fstp %st(1)
H A De_hypot.S36 fmul %st(0) // y * y : x
38 fmul %st(0) // x * x : y * y
52 3: fstp %st(1)
59 5: fstp %st(1)
H A De_hypotf.S36 fmul %st(0) // y * y : x
38 fmul %st(0) // x * x : y * y
52 3: fstp %st(1)
59 5: fstp %st(1)
H A De_log.S44 fld %st // x : x : log(2)
46 fld %st // x-1 : x-1 : x : log(2)
52 fstp %st(1) // x-1 : log(2)
56 2: fstp %st(0) // x : log(2)
H A De_logf.S45 fld %st // x : x : log(2)
47 fld %st // x-1 : x-1 : x : log(2)
53 fstp %st(1) // x-1 : log(2)
57 2: fstp %st(0) // x : log(2)
H A De_logl.S45 fld %st // x : x : log(2)
47 fld %st // x-1 : x-1 : x : log(2)
53 fstp %st(1) // x-1 : log(2)
57 2: fstp %st(0) // x : log(2)
H A De_remainder.S17 fstp %st(1)
H A De_remainderf.S17 fstp %st(1)
H A De_remainderl.S19 fstp %st(1)
H A Ds_cbrtf.S131 fld %st(0) /* xm : xm */
136 fmul %st(1) /* (f2-f3*xm)*xm : xm */
140 fld %st /* u : u : xm */
142 fmul %st(1) /* u*u : u : xm */
143 fld %st(2) /* xm : u*u : u : xm */
144 fadd %st /* 2*xm : u*u : u : xm */
145 fxch %st(1) /* u*u : 2*xm : u : xm */
146 fmul %st(2) /* t2:=u*u*u : 2*xm : u : xm */
148 fadd %st, %st(
[all...]
H A Ds_logb.S13 fstp %st
H A Ds_logbf.S13 fstp %st
H A Ds_significand.S13 fstp %st(1)
H A Ds_significandf.S13 fstp %st(1)
/haiku-fatelf/src/bin/coreutils/lib/
H A Dunlink.c59 struct stat st; local
60 result = lstat (name, &st);
73 if (len && (lstat (short_name, &st) || S_ISLNK (st.st_mode)))
H A Dsymlink.c38 struct stat st; local
39 if (lstat (name, &st) == 0)
H A Ddirchownmod.c65 struct stat st; local
66 int result = (fd < 0 ? stat (dir, &st) : fstat (fd, &st));
70 mode_t dir_mode = st.st_mode;
94 if ((owner != (uid_t) -1 && owner != st.st_uid)
95 || (group != (gid_t) -1 && group != st.st_gid))
/haiku-fatelf/src/system/libroot/posix/glibc/arch/x86_64/
H A Ds_scalbnl.S15 fstp %st(1)
H A Ds_ilogbl.S23 fstp %st
31 1: fstp %st
/haiku-fatelf/src/tools/fs_shell/
H A Dstat_util.cpp151 from_platform_stat(const struct stat *st, struct fssh_stat *fsshStat) argument
153 fsshStat->fssh_st_dev = st->st_dev;
154 fsshStat->fssh_st_ino = st->st_ino;
155 fsshStat->fssh_st_mode = from_platform_mode(st->st_mode);
156 fsshStat->fssh_st_nlink = st->st_nlink;
157 fsshStat->fssh_st_uid = st->st_uid;
158 fsshStat->fssh_st_gid = st->st_gid;
159 fsshStat->fssh_st_size = st->st_size;
160 fsshStat->fssh_st_blksize = st->st_blksize;
161 fsshStat->fssh_st_atime = st
170 to_platform_stat(const struct fssh_stat *fsshStat, struct stat *st) argument
[all...]

Completed in 146 milliseconds

1234567891011>>