Home
last modified time | relevance | path

Searched full:fe (Results 1 – 25 of 602) sorted by relevance

12345678910>>...25

/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()
252 * FBfcc or STF, for instance). On return, fe->fe_fs->fs_fsr will be
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()
[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()
/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.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 …]
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()
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 …]
/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 …]
/freebsd/crypto/krb5/src/plugins/preauth/spake/
H A Dedwards25519.c124 // fe means field element. Here the field is \Z/(2^255-19). An element t,
127 // fe limbs are bounded by 1.125*2^51.
128 // Multiplication and carrying produce fe from fe_loose.
129 typedef struct fe { uint64_t v[5]; } fe; argument
132 // Addition and subtraction produce fe_loose from (fe, fe).
135 // fe means field element. Here the field is \Z/(2^255-19). An element t,
138 // fe limbs are bounded by 1.125*2^26,1.125*2^25,1.125*2^26,1.125*2^25,etc.
139 // Multiplication and carrying produce fe from fe_loose.
140 typedef struct fe { uint32_t v[10]; } fe; struct
143 // Addition and subtraction produce fe_loose from (fe, fe).
[all …]
/freebsd/tests/sys/opencrypto/
H A Dpoly1305_test.c52 .test_key_hex = "85:d6:be:78:57:55:6d:33:7f:44:52:fe:42:d5:06:a8"
197 "FB FE FE FE FE FE FE FE FE FE FE FE FE FE FE FE "
/freebsd/sys/net/
H A Dif_vxlan.c608 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/sys/contrib/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
H A Dfe.h2 This file is adapted from ref10/fe.h:
12 typedef uint64_t fe[10]; typedef
15 fe means field element.
24 extern void fe_frombytes(fe, const unsigned char *);
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DFrontend.cpp78 InstallAPIContext::findAndRecordFile(const FileEntry *FE, in findAndRecordFile() argument
80 if (!FE) in findAndRecordFile()
85 auto It = KnownFiles.find(FE); in findAndRecordFile()
96 StringRef IncludeName = PP.getHeaderSearchInfo().getIncludeNameForHeader(FE); in findAndRecordFile()
99 KnownFiles[FE] = BackupIt->second; in findAndRecordFile()
105 KnownFiles.insert({FE, HeaderType::Unknown}); in findAndRecordFile()
110 auto FE = FM->getFile(H.getPath()); in addKnownHeader() local
111 if (!FE) in addKnownHeader()
113 KnownFiles[*FE] = H.getType(); in addKnownHeader()
/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.h13 /* fe means field element. Here the field is \Z/(2^255-19). An element t,
16 * fe limbs are bounded by 1.125*2^26,1.125*2^25,1.125*2^26,1.125*2^25,etc.
17 * Multiplication and carrying produce fe from fe_loose.
19 typedef struct fe { u32 v[10]; } fe; argument
22 * Addition and subtraction produce fe_loose from (fe, fe).
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()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/net/
H A Dairoha,en7581-eth.yaml29 - const: fe
43 - description: FE error irq
51 - const: fe
110 reg-names = "fe", "qdma0", "qdma1";
120 reset-names = "fe", "pdma", "qdma", "xsi-mac",
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp254 calculateConstraintSatisfaction(Sema &S, const CXXFoldExpr *FE, in calculateConstraintSatisfaction() argument
257 bool Conjunction = FE->getOperator() == BinaryOperatorKind::BO_LAnd; in calculateConstraintSatisfaction()
261 if (FE->isLeftFold() && FE->getInit()) { in calculateConstraintSatisfaction()
262 Out = calculateConstraintSatisfaction(S, FE->getInit(), Satisfaction, in calculateConstraintSatisfaction()
275 Evaluator.EvaluateFoldExpandedConstraintSize(FE); in calculateConstraintSatisfaction()
280 ExprResult Res = calculateConstraintSatisfaction(S, FE->getPattern(), in calculateConstraintSatisfaction()
295 S.Context, Out.get(), Res.get(), FE->getOperator(), S.Context.BoolTy, in calculateConstraintSatisfaction()
296 VK_PRValue, OK_Ordinary, FE->getBeginLoc(), FPOptionsOverride{}); in calculateConstraintSatisfaction()
302 if (FE->isRightFold() && FE->getInit()) { in calculateConstraintSatisfaction()
303 ExprResult Res = calculateConstraintSatisfaction(S, FE->getInit(), in calculateConstraintSatisfaction()
[all …]
/freebsd/crypto/krb5/src/lib/crypto/builtin/aes/
H A Dkresults.expected18 1B 39 DA 37 40 D3 DF FE AC 89 D6 BB 4C 29 F1 0A
27 83 FE B6 7B 73 4F CE DB 8E 97 D4 06 96 11 B7 23
54 B5 76 2B EE F3 A1 04 A1 E0 3F FE CA 17 7B 4C 91
64 FE 7A E7 E7 DF 7F 12 C6 5E 29 F9 A2 55 C0 93 F1
87 1B 39 DA 37 40 D3 DF FE AC 89 D6 BB 4C 29 F1 0A
123 F0 68 8B 66 32 FE 41 EF 11 51 1B 6E F0 C0 17 96
124 A1 BD F6 34 5D F3 BC 03 86 72 D0 C3 13 FE C3 95
197 A1 BD F6 34 5D F3 BC 03 86 72 D0 C3 13 FE C3 95
198 F0 68 8B 66 32 FE 41 EF 11 51 1B 6E F0 C0 17
/freebsd/secure/caroot/trusted/
H A DCertigna.pem18 fe:dc:e3:01:0f:c9:48:ff
34 19:f2:81:07:0f:38:90:19:d3:11:fe:86:b4:f2:d1:
52 1A:ED:FE:41:39:90:B4:24:59:BE:01:F2:52:D5:45:F6:5A:39:DC:11
54 keyid:1A:ED:FE:41:39:90:B4:24:59:BE:01:F2:52:D5:45:F6:5A:39:DC:11
56 serial:FE:DC:E3:01:0F:C9:48:FF
65 6d:5e:a5:52:63:ce:12:f8:ef:2a:da:6f:eb:37:fe:13:02:c7:
H A DD-TRUST_Root_Class_3_CA_2_EV_2009.pem36 a3:fe:99:a9:04:cc:15:ec:60:68:36:ed:08:7b:b7:
40 1a:b1:e1:14:f0:be:3a:1d:b9:cf:5b:b1:6a:fe:b4:
61 34:ed:7b:5a:3c:a4:94:88:ef:1a:11:75:07:2f:b3:fe:3c:fa:
63 1b:b4:30:d9:ce:1a:fe:06:51:a6:15:a4:2d:ef:b2:4b:bf:20:
70 81:d3:f0:c9:4f:b9:da:c6:97:86:d0:82:c3:e4:42:6d:fe:b0:
76 SHA1 Fingerprint=96:C9:1B:0B:95:B4:10:98:42:FA:D0:D8:22:79:FE:60:FA:B9:16:83
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 DemSign_Root_CA_-_C1.pem37 05:8b:1c:11:e3:e4:b4:b8:5d:85:1d:83:fe:78:5f:
38 0b:45:68:18:48:a5:46:73:34:3b:fe:0f:c8:76:bb:
50 FE:A1:E0:70:1E:2A:03:39:52:5A:42:BE:5C:91:85:7A:18:AA:4D:B5
59 e3:36:b0:ef:3b:fe:43:97:49:32:99:12:15:5b:df:11:29:ff:
62 a3:4f:12:31:36:36:e2:de:fe:00:c4:a3:60:0f:27:ad:a0:b0:
65 c4:c8:f5:0f:c0:aa:e9:ba:54:5e:f3:63:2b:4f:4f:50:d4:fe:
H A DSSL_com_Root_Certification_Authority_RSA.pem28 00:f9:0f:dd:a3:2b:7d:cb:d0:2a:fe:ec:67:85:a6:
37 fe:e2:19:00:b7:6f:a1:50:62:75:74:3c:a0:fa:c8:
42 c7:04:3d:6a:a9:29:93:cc:eb:b8:5b:e1:fe:5f:25:
45 ae:71:9f:0f:3a:c8:33:fe:11:25:35:ea:fc:ba:c5:
59 9b:7f:93:fe:34:67:84:4e:99:eb:fc:b3:78:09:33:
90 41:5a:dd:8e:c5:b9:8f:e5:45:3f:78:db:ba:d2:1b:40:b1:fe:
92 55:99:0b:21:de:93:9e:0a:fb:e6:a3:49:bd:36:30:fe:e7:77:
96 d8:a2:44:2e:d1:4e:b7:72:58:d3:89:13:95:fe:44:ab:f8:d7:

12345678910>>...25