Home
last modified time | relevance | path

Searched refs:FX (Results 1 – 25 of 35) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCScheduleP10.td272 // A FX pipeline may take from 2 to 3 cycles to complete.
373 // Save 1 cycles if pipeline BR reads the data from pipelines FX, F2.
385 // Save 1 cycles if pipeline F2 reads the data from pipelines ST, SX, FX, F2, PM.
388 // Save 1 cycles if pipeline FX reads the data from pipelines ST, SX, FX, F2, PM.
391 // Save 1 cycles if pipeline LD reads the data from pipelines ST, SX, FX, F2.
397 // Save 1 cycles if pipeline PM reads the data from pipelines ST, SX, FX, F2, PM.
400 // Save 1 cycles if pipeline ST reads the data from pipelines ST, SX, FX, F2, PM.
403 // Save 1 cycles if pipeline SX reads the data from pipelines ST, SX, FX, F2, PM, MM.
H A DPPCScheduleP8.td195 // Instructions of FX, LU or LS pipeline
199 // TODO: Pipeline of logical instructions might be LS or FX
H A DPPCScheduleP7.td53 // Executing simple FX, complex FX, permute and 4-way SIMD single-precision FP ops
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOptionalDiagnostic.h66 OptionalDiagnostic &operator<<(const llvm::APFixedPoint &FX) {
69 FX.toString(Buffer);
H A DAPValue.h335 explicit APValue(APFixedPoint FX) : Kind(None), AllowConstexprUnknown(false) {
336 MakeFixedPoint(std::move(FX));
662 void setFixedPoint(APFixedPoint FX) {
664 *(APFixedPoint *)(char *)&Data = std::move(FX);
709 void MakeFixedPoint(APFixedPoint &&FX) {
711 new ((void *)(char *)&Data) APFixedPoint(std::move(FX));
H A DType.h4991 FunctionEffectsRef(ArrayRef<FunctionEffect> FX,
4993 : Effects(FX), Conditions(Conds) {}
5001 static FunctionEffectsRef create(ArrayRef<FunctionEffect> FX,
5084 explicit FunctionEffectKindSet(FunctionEffectsRef FX) { insert(FX); }
5090 void insert(FunctionEffectsRef FX) {
5091 for (FunctionEffect Item : FX.effects())
5119 explicit FunctionEffectSet(const FunctionEffectsRef &FX)
5120 : Effects(FX.effects()), Conditions(FX.conditions()) {}
/freebsd/contrib/file/magic/Magdir/
H A Dalliant4 # alliant: file(1) magic for Alliant FX series a.out files
6 # If the FX series is the one that had a processor with a 68K-derived
H A Dsysex198 >>>4 byte 0x05 EFXR (FX Parameter Request)
199 >>>4 byte 0x15 EFXD (FX Parameter Dump)
200 >>>4 byte 0x25 EFXP (FX Parameter Parameter Change)
201 >>>4 byte 0x35 EFXQ (FX Parameter Parameter Inquiry)
/freebsd/crypto/openssl/test/certs/
H A Dcve-2026-28388-leaf.pem8 QdlRib9EK8aa6aKOYmm44SBbuXXyWojhheUaqVuzDj6A0L9opmh/DVXa9bdIN/FX
/freebsd/sys/dev/sound/pci/
H A Demu10kx.c99 #define FX(i) (i) macro
1739 EFX_ROUTE("pcm_front_l", FX(0), M_FX0_FRONT_L, C_FRONT_L, 100); in emu_initefx()
1740 EFX_ROUTE("pcm_front_r", FX(1), M_FX1_FRONT_R, C_FRONT_R, 100); in emu_initefx()
1741 EFX_ROUTE(NULL, FX(0), M_FX0_REC_L, C_REC_L, 0); in emu_initefx()
1742 EFX_ROUTE(NULL, FX(1), M_FX1_REC_R, C_REC_R, 0); in emu_initefx()
1820 EFX_ROUTE(NULL, FX(2), M_FX2_REAR_L, C_REAR_L, 100); in emu_initefx()
1821 EFX_ROUTE(NULL, FX(3), M_FX3_REAR_R, C_REAR_R, 100); in emu_initefx()
1828 EFX_ROUTE(NULL, FX(4), M_FX4_CENTER, C_CENTER, 100); in emu_initefx()
1838 EFX_ROUTE(NULL, FX(5), M_FX5_SUBWOOFER, C_SUB, 100); in emu_initefx()
1925 EFX_COPY(FX2(i+2), FX(i)); in emu_initefx()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFixedPoint.h312 inline raw_ostream &operator<<(raw_ostream &OS, const APFixedPoint &FX) {
313 OS << FX.toString();
/freebsd/crypto/heimdal/lib/asn1/
H A Dkrb5.asn1161 KRB5-PADATA-FX-COOKIE(133), -- krb-wg-preauth-framework
164 KRB5-PADATA-FX-FAST(136), -- krb-wg-preauth-framework
165 KRB5-PADATA-FX-ERROR(137), -- krb-wg-preauth-framework
791 PA-FX-FAST-REQUEST ::= CHOICE {
818 PA-FX-FAST-REPLY ::= CHOICE {
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaFunctionEffects.cpp1389 const FunctionEffectsRef &FX, const FunctionEffectWithCondition &NewEC, in diagnoseConflictingFunctionEffect() argument
1409 for (const FunctionEffectWithCondition &PrevEC : FX) { in diagnoseConflictingFunctionEffect()
1446 const FunctionEffectsRef &FX) { in maybeAddDeclWithEffects() argument
1466 addDeclWithEffects(D, FX); in maybeAddDeclWithEffects()
1469 void Sema::addDeclWithEffects(const Decl *D, const FunctionEffectsRef &FX) { in addDeclWithEffects() argument
1475 for (const FunctionEffectWithCondition &EC : FX) in addDeclWithEffects()
/freebsd/contrib/tcsh/
H A DPorted616 MODELS : FX/2800 series
712 MODELS : FX/8X series
723 MODELS : FX/8X series
866 MODELS : FX/8X series
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp766 int FX = cast<FrameIndexSDNode>(N)->getIndex(); in SelectFrameIndex() local
769 SDValue FI = CurDAG->getTargetFrameIndex(FX, MVT::i32); in SelectFrameIndex()
779 if (FX < 0 || MaxA <= StkA || !MFI.hasVarSizedObjects()) { in SelectFrameIndex()
1460 int FX = cast<FrameIndexSDNode>(N)->getIndex(); in SelectAddrFI() local
1461 if (!MFI.isFixedObjectIndex(FX) && HFI.needsAligna(*MF)) in SelectAddrFI()
1463 R = CurDAG->getTargetFrameIndex(FX, MVT::i32); in SelectAddrFI()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoXSf.td445 defm f.FX # "V" : VPseudoVC_XV<m, f.fprclass, payload1>;
446 defm f.FX # "VV" : VPseudoVC_XVV<m, f.fprclass, payload1>;
456 defm f.FX # "VW" : VPseudoVC_XVW<m, f.fprclass, payload1>;
H A DRISCVInstrInfoVPseudos.td225 string FX = "FPR" # sew;
2265 defm "_V" # f.FX : VPseudoBinary<m.vrclass, m.vrclass,
2270 defm "_V" # f.FX : VPseudoBinaryRoundingMode<m.vrclass, m.vrclass,
2278 defm "_V" #f.FX
2333 defm "_V" # f.FX : VPseudoBinaryRoundingMode<m.wvrclass, m.vrclass,
2361 defm "_W" # f.FX : VPseudoBinaryRoundingMode<m.wvrclass, m.wvrclass,
2454 def "_V" # f.FX # "M_" # mx
2504 def "_" # f.FX # "_" # mx :
2665 defm "_V" # f.FX : VPseudoBinaryM<f.fprclass, m>;
3260 defm "_V" # f.FX : VPseudoTernaryWithPolicyRoundingMode<m.vrclass, f.fprclass,
[all …]
/freebsd/share/misc/
H A Dpci_vendors2353 # FX-779A-CDB4 / FX-779A-CDBC
2916 # FX-797A-TNBC
5662 1259 2701 AT-2700FX 100Mb Ethernet
5664 1259 2703 AT-2701FX
6585 0661 661FX/M661FX/M661MX Host
6603 1043 8035 CUSI-FX motherboard
6629 1043 8035 CUSI-FX motherboard
6646 1043 8035 CUSI-FX motherboard
6687 15bd 1001 DFI 661FX motherboard
6726 1008 Visualize FX
[all …]
H A Diso3166346 # France, Metropolitan (FX) added (European part of France thus excluding:
/freebsd/contrib/ntp/ntpq/
H A Dntpq.c125 #define FX 6 /* test flags */
146 { "flash", FX },
3776 case FX: in cookedprint()
129 #define FX global() macro
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp5607 FunctionEffectsRef::create(ArrayRef<FunctionEffect> FX, in create() argument
5609 assert(llvm::is_sorted(FX) && "effects should be sorted"); in create()
5610 assert((Conds.empty() || Conds.size() == FX.size()) && in create()
5612 return FunctionEffectsRef(FX, Conds); in create()
H A DTypePrinter.cpp1042 const FunctionEffectsRef FX = T->getFunctionEffects(); in printFunctionProtoAfter() local
1043 for (const auto &CFE : FX) { in printFunctionProtoAfter()
H A DASTContext.cpp14106 const auto *FX = cast<FunctionNoProtoType>(X), in getCommonNonSugarTypeNode() local
14108 assert(FX->getExtInfo() == FY->getExtInfo()); in getCommonNonSugarTypeNode()
14110 Ctx.getCommonSugaredType(FX->getReturnType(), FY->getReturnType()), in getCommonNonSugarTypeNode()
14111 FX->getExtInfo()); in getCommonNonSugarTypeNode()
14114 const auto *FX = cast<FunctionProtoType>(X), in getCommonNonSugarTypeNode() local
14116 FunctionProtoType::ExtProtoInfo EPIX = FX->getExtProtoInfo(), in getCommonNonSugarTypeNode()
14130 Ctx.getCommonSugaredType(FX->getReturnType(), FY->getReturnType()); in getCommonNonSugarTypeNode()
14131 auto P = getCommonTypes(Ctx, FX->param_types(), FY->param_types(), in getCommonNonSugarTypeNode()
/freebsd/contrib/ncurses/include/
H A DCaps-ncurses86 #key_f43 kf43 str FX - - ----- F43 function key
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h15437 bool diagnoseConflictingFunctionEffect(const FunctionEffectsRef &FX,
15453 if (FunctionEffectsRef FX = D->getFunctionEffects(); !FX.empty()) in maybeAddDeclWithEffects() local
15454 maybeAddDeclWithEffects(D, FX); in maybeAddDeclWithEffects()
15458 void maybeAddDeclWithEffects(const Decl *D, const FunctionEffectsRef &FX);
15461 void addDeclWithEffects(const Decl *D, const FunctionEffectsRef &FX);

12