/freebsd/sys/powerpc/fpu/ |
H A D | fpu_emu.c | 186 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 D | fpu_implode.c | 76 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 D | fpu_div.c | 151 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 D | fpu_compare.c | 74 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 D | fpu_add.c | 59 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 D | fpu_mul.c | 100 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 D | fpu_sqrt.c | 187 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 D | fpu_explode.c | 206 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()
|
H A D | fpu_emu.h | 154 #define fpu_sub(fe) ((fe)->fe_f2.fp_sign ^= 1, fpu_add(fe)) argument
|
/freebsd/lib/libc/gen/ |
H A D | pututxline.c | 72 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 D | filter.c | 245 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 D | netflow_v9.c | 197 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() 365 get_export9_dgram(priv_p priv, fib_export_p fe, struct netflow_v9_packet_opt **tt) in get_export9_dgram() argument 370 mtx_lock(&fe->export9_mtx); in get_export9_dgram() 371 if (fe->exp.item9 != NULL) { in get_export9_dgram() 372 item = fe->exp.item9; in get_export9_dgram() 373 fe->exp.item9 = NULL; in get_export9_dgram() 374 t = fe->exp.item9_opt; in get_export9_dgram() 375 fe->exp.item9_opt = NULL; in get_export9_dgram() [all …]
|
H A D | netflow.c | 170 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/sys/cam/ctl/ |
H A D | ctl_frontend.c | 68 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 D | ctl_frontend.h | 264 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/contrib/netbsd-tests/ipf/input/ |
H A D | f24 | 3 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/sys/net/ |
H A D | if_vxlan.c | 608 struct vxlan_ftable_entry *fe, *tfe; in vxlan_ftable_flush() 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() 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() 606 struct vxlan_ftable_entry *fe, *tfe; vxlan_ftable_flush() local 620 struct vxlan_ftable_entry *fe, *tfe; vxlan_ftable_expire() local 639 struct vxlan_ftable_entry *fe; vxlan_ftable_update_locked() local 726 struct vxlan_ftable_entry *fe; vxlan_ftable_sysctl_dump() local 764 struct vxlan_ftable_entry *fe; vxlan_ftable_entry_alloc() local 772 vxlan_ftable_entry_free(struct vxlan_ftable_entry * fe) vxlan_ftable_entry_free() argument 779 vxlan_ftable_entry_init(struct vxlan_softc * sc,struct vxlan_ftable_entry * fe,const uint8_t * mac,const struct sockaddr * sa,uint32_t flags) vxlan_ftable_entry_init() argument 791 vxlan_ftable_entry_destroy(struct vxlan_softc * sc,struct vxlan_ftable_entry * fe) vxlan_ftable_entry_destroy() argument 801 vxlan_ftable_entry_insert(struct vxlan_softc * sc,struct vxlan_ftable_entry * fe) vxlan_ftable_entry_insert() argument 839 struct vxlan_ftable_entry *fe; vxlan_ftable_entry_lookup() local 858 vxlan_ftable_entry_dump(struct vxlan_ftable_entry * fe,struct sbuf * sb) vxlan_ftable_entry_dump() argument 2221 struct vxlan_ftable_entry *fe; vxlan_ctrl_ftable_entry_add() local 2267 struct vxlan_ftable_entry *fe; vxlan_ctrl_ftable_entry_rem() local 2751 struct vxlan_ftable_entry *fe; vxlan_transmit() local [all...] |
/freebsd/contrib/wireguard-tools/ |
H A D | curve25519-fiat32.h | 19 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 D | curve25519.c | 771 typedef int32_t fe[10]; typedef 800 static void fe_frombytes(fe h, const uint8_t *s) in fe_frombytes() 872 static void fe_tobytes(uint8_t *s, const fe h) in fe_tobytes() 955 static void fe_copy(fe h, const fe f) in fe_copy() 961 static void fe_0(fe h) in fe_0() 967 static void fe_1(fe h) in fe_1() 985 static void fe_add(fe h, const fe f, const fe g) in fe_add() 1006 static void fe_sub(fe h, const fe f, const fe g) in fe_sub() 1045 static void fe_mul(fe h, const fe f, const fe g) in fe_mul() 1275 static void fe_sq(fe h, const fe f) in fe_sq() [all …]
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_write_disk_posix.c | 577 struct fixup_entry *fe; in _archive_write_disk_header() local 851 fe = current_fixup(a, archive_entry_pathname(entry)); in _archive_write_disk_header() 852 if (fe == NULL) in _archive_write_disk_header() 854 fe->filetype = archive_entry_filetype(entry); in _archive_write_disk_header() 855 fe->fixup |= TODO_MODE_BASE; in _archive_write_disk_header() 856 fe->mode = a->mode; in _archive_write_disk_header() 862 fe = current_fixup(a, archive_entry_pathname(entry)); in _archive_write_disk_header() 863 if (fe == NULL) in _archive_write_disk_header() 865 fe->filetype = archive_entry_filetype(entry); in _archive_write_disk_header() 866 fe->mode = a->mode; in _archive_write_disk_header() [all …]
|
H A D | archive_read_disk_entry_from_file.c | 857 struct fiemap_extent *fe; in setup_sparse_fiemap() local 888 count = (sizeof(buff) - sizeof(*fm))/sizeof(*fe); in setup_sparse_fiemap() 913 fe = fm->fm_extents; in setup_sparse_fiemap() 914 for (i = 0; i < (int)fm->fm_mapped_extents; i++, fe++) { in setup_sparse_fiemap() 915 if (!(fe->fe_flags & FIEMAP_EXTENT_UNWRITTEN)) { in setup_sparse_fiemap() 918 int64_t length = fe->fe_length; in setup_sparse_fiemap() 919 if (fe->fe_logical + length > (uint64_t)size) in setup_sparse_fiemap() 920 length -= fe->fe_logical + length - size; in setup_sparse_fiemap() 921 if (fe->fe_logical == 0 && length == size) { in setup_sparse_fiemap() 928 fe->fe_logical, length); in setup_sparse_fiemap() [all …]
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | ddt_log.c | 702 ddt_log_entry_t *fe = avl_first(fl); in ddt_log_load() local 703 while (ae != NULL || fe != NULL) { in ddt_log_load() 707 ddle = fe; in ddt_log_load() 708 fe = AVL_NEXT(fl, fe); in ddt_log_load() 709 } else if (fe == NULL) { in ddt_log_load() 715 int c = ddt_key_compare(&ae->ddle_key, &fe->ddle_key); in ddt_log_load() 722 ddle = fe; in ddt_log_load() 723 fe = AVL_NEXT(fl, fe); in ddt_log_load() 726 ddle = fe; in ddt_log_load() 727 fe = AVL_NEXT(fl, fe); in ddt_log_load()
|
/freebsd/secure/caroot/trusted/ |
H A D | TWCA_Root_Certification_Authority.pem | 29 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 D | TWCA_Global_Root_CA.pem | 44 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 D | fib_algo.c | 309 struct fib_error *fe; in flm_error_add() local 311 fe = malloc(sizeof(struct fib_error), M_TEMP, M_NOWAIT | M_ZERO); in flm_error_add() 312 if (fe == NULL) in flm_error_add() 314 fe->fe_flm = flm; in flm_error_add() 315 fe->fe_family = flm->flm_family; in flm_error_add() 316 fe->fe_fibnum = fibnum; in flm_error_add() 322 free(fe, M_TEMP); in flm_error_add() 325 TAILQ_INSERT_HEAD(&V_fib_error_list, fe, entries); in flm_error_add() 337 const struct fib_error *fe; in flm_error_check() local 339 TAILQ_FOREACH(fe, &V_fib_error_list, entries) { in flm_error_check() [all …]
|