Searched refs:fe (Results 1 - 25 of 60) sorted by relevance

123

/freebsd-11-stable/lib/libc/sparc64/fpu/
H A Dfpu_qp.c41 struct fpemu fe; \
43 __asm __volatile("stx %%fsr, %0" : "=m" (fe.fe_fsr) :); \
44 fe.fe_cx = 0; \
45 fe.fe_f1.fp_sign = a[0] >> 31; \
46 fe.fe_f1.fp_sticky = 0; \
47 fe.fe_f1.fp_class = __fpu_qtof(&fe.fe_f1, a[0], a[1], a[2], a[3]); \
48 fe.fe_f2.fp_sign = b[0] >> 31; \
49 fe.fe_f2.fp_sticky = 0; \
50 fe
124 struct fpemu fe; local
[all...]
H A Dfpu.c129 struct fpemu fe; local
156 fe.fe_fsr = fsr & ~FSR_FTT_MASK;
162 sig = __fpu_execute(uf, &fe, insn, tstate);
165 __asm __volatile("ldx %0, %%fsr" : : "m" (fe.fe_fsr));
209 __fpu_mov(struct fpemu *fe, int type, int rd, int rs2, u_int32_t nand, argument
228 __fpu_ccmov(struct fpemu *fe, int type, int rd, int rs2, argument
233 __fpu_mov(fe, type, rd, rs2, 0, 0);
237 __fpu_cmpck(struct fpemu *fe) argument
246 cx = fe->fe_cx;
247 fsr = fe
269 __fpu_execute(struct utrapframe *uf, struct fpemu *fe, u_int32_t insn, u_long tstate) argument
[all...]
H A Dfpu_implode.c83 fpround(struct fpemu *fe, struct fpn *fp) argument
104 fe->fe_cx |= FSR_NX; /* inexact */
107 switch (FSR_GET_RD(fe->fe_fsr)) {
163 toinf(struct fpemu *fe, int sign) argument
168 switch (FSR_GET_RD(fe->fe_fsr)) {
196 __fpu_ftoi(fe, fp)
197 struct fpemu *fe;
223 fe->fe_cx |= FSR_NX;
233 fe->fe_cx = (fe
[all...]
H A Dfpu_compare.c93 __fpu_compare(struct fpemu *fe, int cmpe, int fcc) argument
99 a = &fe->fe_f1;
100 b = &fe->fe_f2;
109 fe->fe_cx = FSR_NV;
168 a = __fpu_sub(fe);
175 fe->fe_fsr = (fe->fe_fsr & fcc_nmask[fcc]) |
H A Dfpu_emu.h162 #define __fpu_sub(fe) (ISNAN(&(fe)->fe_f2) ? 0 : ((fe)->fe_f2.fp_sign ^= 1), \
163 __fpu_add(fe))
H A Dfpu_div.c155 __fpu_div(fe)
156 struct fpemu *fe;
158 struct fpn *x = &fe->fe_f1, *y = &fe->fe_f2;
187 return (__fpu_newnan(fe));
198 fe->fe_cx = FSR_DZ;
H A Dfpu_mul.c103 __fpu_mul(fe)
104 struct fpemu *fe;
106 struct fpn *x = &fe->fe_f1, *y = &fe->fe_f2;
132 return (__fpu_newnan(fe));
H A Dfpu_add.c64 __fpu_add(fe)
65 struct fpemu *fe;
67 struct fpn *x = &fe->fe_f1, *y = &fe->fe_f2, *r;
96 return (__fpu_newnan(fe));
99 rd = FSR_GET_RD(fe->fe_fsr);
116 r = &fe->fe_f3;
/freebsd-11-stable/sys/powerpc/fpu/
H A Dfpu_emu.c189 struct fpemu fe; local
194 fe.fe_fpstate = fpf;
195 fe.fe_cx = 0;
218 switch (fpu_execute(frame, &fe, &insn)) {
263 * FBfcc or STF, for instance). On return, fe->fe_fs->fs_fsr will be
270 fpu_execute(struct trapframe *tf, struct fpemu *fe, union instr *insn) argument
282 fs = fe->fe_fpstate;
283 fe->fe_fpscr = ((int *)&fs->fpscr)[1];
397 fpu_explode(fe, fp = &fe
[all...]
H A Dfpu_implode.c80 round(struct fpemu *fe, struct fpn *fp) argument
102 fe->fe_cx |= FPSCR_XX|FPSCR_FI; /* inexact */
105 switch ((fe->fe_fpscr) & FPSCR_RN) {
138 fe->fe_cx |= FPSCR_FR;
164 toinf(struct fpemu *fe, int sign) argument
169 switch ((fe->fe_fpscr) & FPSCR_RN) {
189 fe->fe_cx |= FPSCR_OX;
200 fpu_ftoi(struct fpemu *fe, struct fpn *fp) argument
226 fe->fe_cx |= FPSCR_UX;
236 fe
247 fpu_ftox(struct fpemu *fe, struct fpn *fp, u_int *res) argument
293 fpu_ftos(struct fpemu *fe, struct fpn *fp) argument
374 fpu_ftod(struct fpemu *fe, struct fpn *fp, u_int *res) argument
429 fpu_implode(struct fpemu *fe, struct fpn *fp, int type, u_int *space) argument
[all...]
H A Dfpu_compare.c78 fpu_compare(struct fpemu *fe, int ordered) argument
83 a = &fe->fe_f1;
84 b = &fe->fe_f2;
85 r = &fe->fe_f3;
97 if (fe->fe_fpscr & FPSCR_VE || ISQNAN(a) || ISQNAN(b))
153 fpu_sub(fe);
161 fe->fe_cx = cc;
H A Dfpu_div.c155 fpu_div(struct fpemu *fe) argument
157 struct fpn *x = &fe->fe_f1, *y = &fe->fe_f2;
184 fe->fe_cx |= FPSCR_VXSNAN;
194 fe->fe_cx |= FPSCR_VXIDI;
195 return (fpu_newnan(fe));
201 fe->fe_cx |= FPSCR_ZX;
203 fe->fe_cx |= FPSCR_VXZDZ;
204 return (fpu_newnan(fe));
218 fe
[all...]
H A Dfpu_mul.c104 fpu_mul(struct fpemu *fe) argument
106 struct fpn *x = &fe->fe_f1, *y = &fe->fe_f2;
135 fe->fe_cx |= FPSCR_VXSNAN;
141 fe->fe_cx |= FPSCR_VXIMZ;
142 return (fpu_newnan(fe));
H A Dfpu_add.c63 fpu_add(struct fpemu *fe) argument
65 struct fpn *x = &fe->fe_f1, *y = &fe->fe_f2, *r;
95 fe->fe_cx |= FPSCR_VXSNAN;
101 fe->fe_cx |= FPSCR_VXISI;
102 return (fpu_newnan(fe));
107 rd = ((fe->fe_fpscr) & FPSCR_RN);
127 r = &fe->fe_f3;
H A Dfpu_emu.h155 #define fpu_sub(fe) ((fe)->fe_f2.fp_sign ^= 1, fpu_add(fe))
/freebsd-11-stable/lib/libc/gen/
H A Dpututxline.c73 struct futx fe; local
87 while (fread(&fe, sizeof(fe), 1, fp) == 1) {
88 switch (fe.fu_type) {
97 if (memcmp(fu->fu_id, fe.fu_id, sizeof(fe.fu_id)) ==
99 ret = fseeko(fp, -(off_t)sizeof(fe), SEEK_CUR);
102 if (fe.fu_type != DEAD_PROCESS)
114 partial -= (off_t)sizeof(fe);
143 struct futx fe; local
201 struct futx fe; local
[all...]
/freebsd-11-stable/sys/netgraph/netflow/
H A Dnetflow_v9.c199 export9_send(priv_p priv, fib_export_p fe, item_p item, struct netflow_v9_packet_opt *t, int flags) argument
223 header->seq_num = htonl(atomic_fetchadd_32(&fe->flow9_seq, 1));
225 header->source_id = htonl(fe->domain_id);
369 get_export9_dgram(priv_p priv, fib_export_p fe, struct netflow_v9_packet_opt **tt) argument
374 mtx_lock(&fe->export9_mtx);
375 if (fe->exp.item9 != NULL) {
376 item = fe->exp.item9;
377 fe->exp.item9 = NULL;
378 t = fe->exp.item9_opt;
379 fe
444 return_export9_dgram(priv_p priv, fib_export_p fe, item_p item, struct netflow_v9_packet_opt *t, int flags) argument
[all...]
H A Dnetflow.c171 get_export_dgram(priv_p priv, fib_export_p fe) argument
175 mtx_lock(&fe->export_mtx);
176 if (fe->exp.item != NULL) {
177 item = fe->exp.item;
178 fe->exp.item = NULL;
180 mtx_unlock(&fe->export_mtx);
205 return_export_dgram(priv_p priv, fib_export_p fe, item_p item, int flags) argument
213 mtx_lock(&fe->export_mtx);
214 if (fe->exp.item == NULL) {
215 fe
228 expire_flow(priv_p priv, fib_export_p fe, struct flow_entry *fle, int flags) argument
569 fib_export_p fe = priv_to_fib(priv, fib); local
610 fib_export_p fe; local
686 ng_netflow_flow_add(priv_p priv, fib_export_p fe, struct ip *ip, caddr_t upper_ptr, uint8_t upper_proto, uint8_t flags, unsigned int src_if_index) argument
814 ng_netflow_flow6_add(priv_p priv, fib_export_p fe, struct ip6_hdr *ip6, caddr_t upper_ptr, uint8_t upper_proto, uint8_t flags, unsigned int src_if_index) argument
1046 export_send(priv_p priv, fib_export_p fe, item_p item, int flags) argument
[all...]
/freebsd-11-stable/usr.sbin/ppp/
H A Dfilter.c247 struct filterent fe; local
273 memset(&fe, '\0', sizeof fe);
294 fe.f_action = action;
300 fe.f_invert = 1;
305 ncprange_init(&fe.f_src);
306 ncprange_init(&fe.f_dst);
315 ncprange_aton(&fe.f_src, ncp, *argv)) {
316 family = ncprange_family(&fe.f_src);
317 if (!ncprange_getwidth(&fe
[all...]
/freebsd-11-stable/sys/modules/fe/
H A DMakefile1 # $FreeBSD: stable/11/sys/modules/fe/Makefile 319182 2017-05-30 04:11:12Z ngie $
3 .PATH: ${SRCTOP}/sys/dev/fe
/freebsd-11-stable/contrib/xz/src/liblzma/common/
H A Dfilter_encoder.c235 const lzma_filter_encoder *const fe local
237 if (fe->block_size != NULL) {
239 = fe->block_size(filters[i].options);
255 const lzma_filter_encoder *const fe = encoder_find(filter->id); local
256 if (fe == NULL) {
265 if (fe->props_size_get == NULL) {
267 *size = fe->props_size_fixed;
271 return fe->props_size_get(size, filter->options);
278 const lzma_filter_encoder *const fe = encoder_find(filter->id); local
279 if (fe
[all...]
/freebsd-11-stable/share/man/man4/man4.i386/
H A DMakefile16 fe.4 \
/freebsd-11-stable/sys/cam/ctl/
H A Dctl_frontend.c69 ctl_frontend_register(struct ctl_frontend *fe) argument
80 if (strcmp(fe_tmp->name, fe->name) == 0) {
86 STAILQ_INIT(&fe->port_list);
89 if (fe->init != NULL) {
90 if ((error = fe->init()) != 0) {
92 fe->name, error);
99 STAILQ_INSERT_TAIL(&softc->fe_list, fe, links);
105 ctl_frontend_deregister(struct ctl_frontend *fe) argument
111 if (fe->shutdown != NULL) {
112 if ((error = fe
130 struct ctl_frontend *fe; local
[all...]
H A Dctl_frontend.h270 int ctl_frontend_register(struct ctl_frontend *fe);
276 int ctl_frontend_deregister(struct ctl_frontend *fe);
304 void ctl_port_online(struct ctl_port *fe);
309 void ctl_port_offline(struct ctl_port *fe);
/freebsd-11-stable/release/picobsd/floppy.tree/etc/
H A Dsnmpd.conf40 view system included system fe

Completed in 138 milliseconds

123