Home
last modified time | relevance | path

Searched refs:fe (Results 1 – 25 of 297) sorted by relevance

12345678910>>...12

/freebsd/sys/powerpc/fpu/
H A Dfpu_emu.c186 struct fpemu fe; in fpu_emulate() local
190 fe.fe_fpstate = fpf; in fpu_emulate()
191 fe.fe_cx = 0; in fpu_emulate()
213 switch (fpu_execute(frame, &fe, &insn)) { in fpu_emulate()
259 fpu_execute(struct trapframe *tf, struct fpemu *fe, union instr *insn) in fpu_execute() argument
271 fs = fe->fe_fpstate; in fpu_execute()
272 fe->fe_fpscr = ((int *)&fs->fpscr)[1]; in fpu_execute()
385 fpu_explode(fe, fp = &fe->fe_f1, FTYPE_DBL, rt); in fpu_execute()
386 fpu_implode(fe, fp, type, (void *)&buf); in fpu_execute()
406 fpu_explode(fe, fp = &fe->fe_f1, type, rt); in fpu_execute()
[all …]
H A Dfpu_implode.c76 round(struct fpemu *fe, struct fpn *fp) in round() argument
98 fe->fe_cx |= FPSCR_XX|FPSCR_FI; /* inexact */ in round()
101 switch ((fe->fe_fpscr) & FPSCR_RN) { in round()
133 fe->fe_cx |= FPSCR_FR; in round()
159 toinf(struct fpemu *fe, int sign) in toinf() argument
164 switch ((fe->fe_fpscr) & FPSCR_RN) { in toinf()
183 fe->fe_cx |= FPSCR_OX; in toinf()
194 fpu_ftoi(struct fpemu *fe, struct fpn *fp) in fpu_ftoi() argument
219 fe->fe_cx |= FPSCR_UX; in fpu_ftoi()
229 fe->fe_cx |= FPSCR_VXCVI; in fpu_ftoi()
[all …]
H A Dfpu_div.c151 fpu_div(struct fpemu *fe) in fpu_div() argument
153 struct fpn *x = &fe->fe_f1, *y = &fe->fe_f2; in fpu_div()
180 fe->fe_cx |= FPSCR_VXSNAN; in fpu_div()
190 fe->fe_cx |= FPSCR_VXIDI; in fpu_div()
191 return (fpu_newnan(fe)); in fpu_div()
197 fe->fe_cx |= FPSCR_ZX; in fpu_div()
199 fe->fe_cx |= FPSCR_VXZDZ; in fpu_div()
200 return (fpu_newnan(fe)); in fpu_div()
214 fe->fe_cx = FPSCR_ZX; in fpu_div()
H A Dfpu_compare.c74 fpu_compare(struct fpemu *fe, int ordered) in fpu_compare() argument
79 a = &fe->fe_f1; in fpu_compare()
80 b = &fe->fe_f2; in fpu_compare()
81 r = &fe->fe_f3; in fpu_compare()
93 if (fe->fe_fpscr & FPSCR_VE || ISQNAN(a) || ISQNAN(b)) in fpu_compare()
149 fpu_sub(fe); in fpu_compare()
157 fe->fe_cx = cc; in fpu_compare()
H A Dfpu_add.c59 fpu_add(struct fpemu *fe) in fpu_add() argument
61 struct fpn *x = &fe->fe_f1, *y = &fe->fe_f2, *r; in fpu_add()
91 fe->fe_cx |= FPSCR_VXSNAN; in fpu_add()
97 fe->fe_cx |= FPSCR_VXISI; in fpu_add()
98 return (fpu_newnan(fe)); in fpu_add()
103 rd = ((fe->fe_fpscr) & FPSCR_RN); in fpu_add()
123 r = &fe->fe_f3; in fpu_add()
H A Dfpu_mul.c100 fpu_mul(struct fpemu *fe) in fpu_mul() argument
102 struct fpn *x = &fe->fe_f1, *y = &fe->fe_f2; in fpu_mul()
131 fe->fe_cx |= FPSCR_VXSNAN; in fpu_mul()
137 fe->fe_cx |= FPSCR_VXIMZ; in fpu_mul()
138 return (fpu_newnan(fe)); in fpu_mul()
H A Dfpu_sqrt.c187 fpu_sqrt(struct fpemu *fe) in fpu_sqrt() argument
189 struct fpn *x = &fe->fe_f1; in fpu_sqrt()
212 fe->fe_cx |= FPSCR_VXSNAN; in fpu_sqrt()
217 fe->fe_cx |= FPSCR_ZX; in fpu_sqrt()
223 fe->fe_cx |= FPSCR_VXSQRT; in fpu_sqrt()
224 return (fpu_newnan(fe)); in fpu_sqrt()
H A Dfpu_explode.c206 fpu_explode(struct fpemu *fe, struct fpn *fp, int type, int reg) in fpu_explode() argument
211 xspace = (u_int64_t *)&fe->fe_fpstate->fpr[reg].fpr; in fpu_explode()
213 space = (u_int *)&fe->fe_fpstate->fpr[reg].fpr; in fpu_explode()
248 fe->fe_cx = FPSCR_VXSNAN; /* assert invalid operand */ in fpu_explode()
/freebsd/lib/libc/gen/
H A Dpututxline.c72 struct futx fe; in utx_active_add() local
86 while (fread(&fe, sizeof(fe), 1, fp) == 1) { in utx_active_add()
87 switch (fe.fu_type) { in utx_active_add()
96 if (memcmp(fu->fu_id, fe.fu_id, sizeof(fe.fu_id)) == in utx_active_add()
98 ret = fseeko(fp, -(off_t)sizeof(fe), SEEK_CUR); in utx_active_add()
101 if (fe.fu_type != DEAD_PROCESS) in utx_active_add()
113 partial -= (off_t)sizeof(fe); in utx_active_add()
142 struct futx fe; in utx_active_remove() local
153 while (fread(&fe, sizeof(fe), 1, fp) == 1 && ret != 0) in utx_active_remove()
154 switch (fe.fu_type) { in utx_active_remove()
[all …]
/freebsd/usr.sbin/ppp/
H A Dfilter.c245 struct filterent fe; in filter_Parse() local
271 memset(&fe, '\0', sizeof fe); in filter_Parse()
292 fe.f_action = action; in filter_Parse()
298 fe.f_invert = 1; in filter_Parse()
303 ncprange_init(&fe.f_src); in filter_Parse()
304 ncprange_init(&fe.f_dst); in filter_Parse()
313 ncprange_aton(&fe.f_src, ncp, *argv)) { in filter_Parse()
314 family = ncprange_family(&fe.f_src); in filter_Parse()
315 if (!ncprange_getwidth(&fe.f_src, &width)) in filter_Parse()
318 ncprange_init(&fe.f_src); in filter_Parse()
[all …]
/freebsd/sys/netgraph/netflow/
H A Dnetflow_v9.c197 export9_send(priv_p priv, fib_export_p fe, item_p item, struct netflow_v9_packet_opt *t, int flags) in export9_send() argument
221 header->seq_num = htonl(atomic_fetchadd_32(&fe->flow9_seq, 1)); in export9_send()
223 header->source_id = htonl(fe->domain_id); in export9_send()
230 fe->sent_packets++; in export9_send()
366 get_export9_dgram(priv_p priv, fib_export_p fe, struct netflow_v9_packet_opt **tt) in get_export9_dgram() argument
371 mtx_lock(&fe->export9_mtx); in get_export9_dgram()
372 if (fe->exp.item9 != NULL) { in get_export9_dgram()
373 item = fe->exp.item9; in get_export9_dgram()
374 fe->exp.item9 = NULL; in get_export9_dgram()
375 t = fe->exp.item9_opt; in get_export9_dgram()
[all …]
H A Dnetflow.c170 get_export_dgram(priv_p priv, fib_export_p fe) in get_export_dgram() argument
174 mtx_lock(&fe->export_mtx); in get_export_dgram()
175 if (fe->exp.item != NULL) { in get_export_dgram()
176 item = fe->exp.item; in get_export_dgram()
177 fe->exp.item = NULL; in get_export_dgram()
179 mtx_unlock(&fe->export_mtx); in get_export_dgram()
204 return_export_dgram(priv_p priv, fib_export_p fe, item_p item, int flags) in return_export_dgram() argument
212 mtx_lock(&fe->export_mtx); in return_export_dgram()
213 if (fe->exp.item == NULL) { in return_export_dgram()
214 fe->exp.item = item; in return_export_dgram()
[all …]
/freebsd/crypto/krb5/src/plugins/preauth/spake/
H A Dedwards25519.c129 typedef struct fe { uint64_t v[5]; } fe; typedef
140 typedef struct fe { uint32_t v[10]; } fe; struct
160 fe X;
161 fe Y;
162 fe Z;
166 fe X;
167 fe Y;
168 fe Z;
169 fe T;
306 static void fe_frombytes_strict(fe *h, const uint8_t s[32]) { in fe_frombytes_strict()
[all …]
/freebsd/sys/cam/ctl/
H A Dctl_frontend.c68 ctl_frontend_register(struct ctl_frontend *fe) in ctl_frontend_register() argument
79 if (strcmp(fe_tmp->name, fe->name) == 0) { in ctl_frontend_register()
85 STAILQ_INIT(&fe->port_list); in ctl_frontend_register()
88 if (fe->init != NULL) { in ctl_frontend_register()
89 if ((error = fe->init()) != 0) { in ctl_frontend_register()
91 fe->name, error); in ctl_frontend_register()
98 STAILQ_INSERT_TAIL(&softc->fe_list, fe, links); in ctl_frontend_register()
104 ctl_frontend_deregister(struct ctl_frontend *fe) in ctl_frontend_deregister() argument
110 if (fe->shutdown != NULL) { in ctl_frontend_deregister()
111 if ((error = fe->shutdown()) != 0) { in ctl_frontend_deregister()
[all …]
H A Dctl_frontend.h264 int ctl_frontend_register(struct ctl_frontend *fe);
270 int ctl_frontend_deregister(struct ctl_frontend *fe);
298 void ctl_port_online(struct ctl_port *fe);
303 void ctl_port_offline(struct ctl_port *fe);
/freebsd/sys/net/
H A Dif_vxlan.c608 struct vxlan_ftable_entry *fe, *tfe; in vxlan_ftable_flush() local
612 LIST_FOREACH_SAFE(fe, &sc->vxl_ftable[i], vxlfe_hash, tfe) { in vxlan_ftable_flush()
613 if (all || VXLAN_FE_IS_DYNAMIC(fe)) in vxlan_ftable_flush()
614 vxlan_ftable_entry_destroy(sc, fe); in vxlan_ftable_flush()
622 struct vxlan_ftable_entry *fe, *tfe; in vxlan_ftable_expire() local
628 LIST_FOREACH_SAFE(fe, &sc->vxl_ftable[i], vxlfe_hash, tfe) { in vxlan_ftable_expire()
629 if (VXLAN_FE_IS_DYNAMIC(fe) && in vxlan_ftable_expire()
630 time_uptime >= fe->vxlfe_expire) in vxlan_ftable_expire()
631 vxlan_ftable_entry_destroy(sc, fe); in vxlan_ftable_expire()
641 struct vxlan_ftable_entry *fe; in vxlan_ftable_update_locked() local
[all …]
/freebsd/contrib/netbsd-tests/ipf/input/
H A Df243 c0a8 01fe eb22 0035 002b d9e6 4a82 0100
8 4500 004c fc96 2000 4011 d9ba c0a8 01fe
15 4500 004c fc96 2007 4011 d9b3 c0a8 01fe
22 4500 004d fc96 000c 4011 f9ad c0a8 01fe
/freebsd/contrib/wireguard-tools/
H A Dcurve25519-fiat32.h19 typedef struct fe { u32 v[10]; } fe; argument
49 static __always_inline void fe_frombytes(fe *h, const u8 *s) in fe_frombytes()
160 static __always_inline void fe_tobytes(u8 s[32], const fe *f) in fe_tobytes()
199 static __always_inline void fe_copy(fe *h, const fe *f) in fe_copy()
204 static __always_inline void fe_copy_lt(fe_loose *h, const fe *f) in fe_copy_lt()
210 static __always_inline void fe_0(fe *h) in fe_0()
216 static __always_inline void fe_1(fe *h) in fe_1()
260 static __always_inline void fe_add(fe_loose *h, const fe *f, const fe *g) in fe_add()
303 static __always_inline void fe_sub(fe_loose *h, const fe *f, const fe *g) in fe_sub()
424 static __always_inline void fe_mul_ttt(fe *h, const fe *f, const fe *g) in fe_mul_ttt()
[all …]
/freebsd/crypto/openssl/crypto/ec/
H A Dcurve25519.c797 * fe means field element. Here the field is \Z/(2^255-19). An element t, in load_4()
802 typedef int32_t fe[10]; in fe_frombytes()
831 static void fe_frombytes(fe h, const uint8_t *s) in fe_frombytes()
923 static void fe_tobytes(uint8_t *s, const fe h) in fe_tobytes()
1015 static void fe_copy(fe h, const fe f)
1021 static void fe_0(fe h)
1027 static void fe_1(fe h)
1045 static void fe_add(fe h, const fe
771 typedef int32_t fe[10]; global() typedef
[all...]
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_disk_posix.c581 struct fixup_entry *fe; in _archive_write_disk_header() local
855 fe = current_fixup(a, archive_entry_pathname(entry)); in _archive_write_disk_header()
856 if (fe == NULL) in _archive_write_disk_header()
858 fe->filetype = archive_entry_filetype(entry); in _archive_write_disk_header()
859 fe->fixup |= TODO_MODE_BASE; in _archive_write_disk_header()
860 fe->mode = a->mode; in _archive_write_disk_header()
866 fe = current_fixup(a, archive_entry_pathname(entry)); in _archive_write_disk_header()
867 if (fe == NULL) in _archive_write_disk_header()
869 fe->filetype = archive_entry_filetype(entry); in _archive_write_disk_header()
870 fe->mode = a->mode; in _archive_write_disk_header()
[all …]
H A Darchive_read_disk_entry_from_file.c853 struct fiemap_extent *fe; in setup_sparse_fiemap() local
884 count = (sizeof(buff) - sizeof(*fm))/sizeof(*fe); in setup_sparse_fiemap()
909 fe = fm->fm_extents; in setup_sparse_fiemap()
910 for (i = 0; i < (int)fm->fm_mapped_extents; i++, fe++) { in setup_sparse_fiemap()
911 if (!(fe->fe_flags & FIEMAP_EXTENT_UNWRITTEN)) { in setup_sparse_fiemap()
914 int64_t length = fe->fe_length; in setup_sparse_fiemap()
915 if (fe->fe_logical + length > (uint64_t)size) in setup_sparse_fiemap()
916 length -= fe->fe_logical + length - size; in setup_sparse_fiemap()
917 if (fe->fe_logical == 0 && length == size) { in setup_sparse_fiemap()
924 fe->fe_logical, length); in setup_sparse_fiemap()
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dddt_log.c722 ddt_log_entry_t *fe = avl_first(fl); in ddt_log_load() local
723 while (ae != NULL || fe != NULL) { in ddt_log_load()
727 ddle = fe; in ddt_log_load()
728 fe = AVL_NEXT(fl, fe); in ddt_log_load()
729 } else if (fe == NULL) { in ddt_log_load()
735 int c = ddt_key_compare(&ae->ddle_key, &fe->ddle_key); in ddt_log_load()
742 ddle = fe; in ddt_log_load()
743 fe = AVL_NEXT(fl, fe); in ddt_log_load()
746 ddle = fe; in ddt_log_load()
747 fe = AVL_NEXT(fl, fe); in ddt_log_load()
/freebsd/secure/caroot/trusted/
H A DTWCA_Root_Certification_Authority.pem29 11:40:87:a7:7c:59:64:14:7b:b5:11:10:dd:fe:bf:
38 e4:47:f4:99:45:fe:1d:f1:f8:97:a3:88:1d:37:1c:
43 e5:0f:8b:38:0d:ee:0a:fc:fe:0f:98:9f:30:31:dd:
59 da:05:c4:fe:e2:50:c4:3a:86:7d:cc:da:7e:10:09:3b:92:35:
60 2a:53:b2:fe:eb:2b:05:d9:6c:5d:e6:d0:ef:d3:6a:66:9e:15:
69 e5:8e:b2:53:cc:49:ce:bc:30:fe:7b:0e:33:90:fb:ed:d2:14:
H A DTWCA_Global_Root_CA.pem44 cc:70:74:4f:2d:9b:1d:91:44:fd:56:28:a0:fe:bb:
59 6b:17:8b:b2:b1:fe:6c:e1:90:8c:88:a8:97:48:ce:
75 a6:ab:27:2e:1a:4d:81:bf:84:d4:70:1e:ad:47:fe:fd:4a:9d:
76 33:e0:f2:b9:c4:45:08:21:0a:da:69:69:73:72:0d:be:34:fe:
78 34:ec:3f:28:fe:0c:f1:57:86:4e:c9:55:f7:1c:d4:d8:a5:7d:
83 77:9e:fe:9e:29:5e:f7:c1:51:60:1f:de:da:0b:b2:2d:75:b7:
92 f7:32:f3:5c:d9:79:7d:ef:9e:a4:fe:c9:23:c3:24:ee:15:92:
99 fe:a9:b2:2b:06:d0:04:cd
/freebsd/sys/net/route/
H A Dfib_algo.c308 struct fib_error *fe; in flm_error_add() local
310 fe = malloc(sizeof(struct fib_error), M_TEMP, M_NOWAIT | M_ZERO); in flm_error_add()
311 if (fe == NULL) in flm_error_add()
313 fe->fe_flm = flm; in flm_error_add()
314 fe->fe_family = flm->flm_family; in flm_error_add()
315 fe->fe_fibnum = fibnum; in flm_error_add()
321 free(fe, M_TEMP); in flm_error_add()
324 TAILQ_INSERT_HEAD(&V_fib_error_list, fe, entries); in flm_error_add()
336 const struct fib_error *fe; in flm_error_check() local
338 TAILQ_FOREACH(fe, &V_fib_error_list, entries) { in flm_error_check()
[all …]

12345678910>>...12