Searched refs:FS (Results 176 - 200 of 290) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/libarchive/libarchive/
H A Darchive_blake2sp_ref.c218 blake2s_state FS[1]; local
280 if( blake2sp_init_root( FS, outlen, keylen ) < 0 )
283 FS->last_node = 1;
286 blake2s_update( FS, hash[i], BLAKE2S_OUTBYTES );
288 return blake2s_final( FS, out, outlen );
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp351 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { argument
352 if (FS.Str.size() >= FS.Width || FS.Justify == FormattedString::JustifyNone) {
353 this->operator<<(FS.Str);
356 const size_t Difference = FS.Width - FS.Str.size();
357 switch (FS.Justify) {
359 this->operator<<(FS.Str);
364 this->operator<<(FS
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp1587 raw_ostream &operator<<(raw_ostream &OS, FieldSeparator &FS) { argument
1588 if (FS.Skip) {
1589 FS.Skip = false;
1592 return OS << FS.Sep;
1597 FieldSeparator FS; member in struct:__anon4746::MDFieldPrinter
1631 Out << FS << "tag: "; local
1640 Out << FS << "type: "; local
1650 Out << FS << "checksumkind: " << Checksum.getKindAsString();
1659 Out << FS << Name << ": \"";
1680 Out << FS << Nam
2143 FieldSeparator FS; local
2704 FieldSeparator FS; local
2812 FieldSeparator FS; local
2814 Out << FS; local
2827 FieldSeparator FS; local
2829 Out << FS; local
2839 FieldSeparator FS; local
2841 Out << FS; local
2856 FieldSeparator FS; local
2858 Out << FS; local
2911 FieldSeparator FS; local
2913 Out << FS; local
2959 printFunctionSummary(const FunctionSummary *FS) argument
3000 FieldSeparator FS; local
3004 Out << FS; local
3010 Out << FS; local
3049 FieldSeparator FS; local
3051 Out << FS; local
3064 FieldSeparator FS; local
3066 Out << FS; local
3075 FieldSeparator FS; local
3077 Out << FS; local
3112 FieldSeparator FS; local
3114 Out << FS; local
3135 FieldSeparator FS; local
3137 Out << FS; local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp259 for (const auto &FS : I->second) {
261 const FunctionSamples &CalleeSamples = FS.second;
297 for (const auto &FS : J.second) {
298 const FunctionSamples &CalleeSamples = FS.second;
528 for (const auto &FS : J.second) {
530 const FunctionSamples &CalleeSamples = FS.second;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUSubtarget.h402 GCNSubtarget(const Triple &TT, StringRef GPU, StringRef FS,
407 StringRef GPU, StringRef FS);
450 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
1237 R600Subtarget(const Triple &TT, StringRef CPU, StringRef FS,
1263 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
1272 StringRef GPU, StringRef FS);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64Subtarget.h237 AArch64Subtarget &initializeSubtargetDependencies(StringRef FS,
247 const std::string &FS, const TargetMachine &TM,
468 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DCompilationDatabase.h227 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCTargetDesc.h48 StringRef FS);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.h68 StringRef FS);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86Subtarget.h158 /// Processor has FS/GS base insturctions.
511 X86Subtarget(const Triple &TT, StringRef CPU, StringRef FS,
545 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
556 X86Subtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
557 void initSubtargetFeatures(StringRef CPU, StringRef FS);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLLVMTargetMachine.cpp79 StringRef FS, const TargetOptions &Options,
82 : TargetMachine(T, DataLayoutString, TT, CPU, FS, Options) {
76 LLVMTargetMachine(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL) argument
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DCuda.cpp127 auto &FS = D.getVFS(); local
128 if (!(FS.exists(IncludePath) && FS.exists(BinPath)))
131 if (CheckLibDevice && !FS.exists(LibDevicePath))
140 if (HostTriple.isArch64Bit() && FS.exists(InstallPath + "/lib64"))
142 else if (FS.exists(InstallPath + "/lib"))
148 FS.getBufferForFile(InstallPath + "/version.txt");
160 if (FS.exists(FilePath)) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp102 void checkLoopConditionForFloat(const ForStmt *FS);
213 void WalkAST::VisitForStmt(ForStmt *FS) { argument
214 checkLoopConditionForFloat(FS);
217 VisitChildren(FS);
262 void WalkAST::checkLoopConditionForFloat(const ForStmt *FS) { argument
267 const Expr *condition = FS->getCond();
273 const Expr *increment = FS->getInc();
337 PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC);
H A DDeadStoresChecker.cpp525 FindEscaped FS; local
526 cfg.VisitBlockStmts(FS);
527 DeadStoreObs A(cfg, BR.getContext(), BR, this, AC, pmap, FS.Escaped,
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp52 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS)
53 : ProxyFileSystem(std::move(FS)) {}
51 ProxyFileSystemWithoutChdir( llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS) argument
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h68 const Triple &TargetTriple, StringRef CPU, StringRef FS,
317 const Triple &TT, StringRef CPU, StringRef FS,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCTargetDesc.cpp75 StringRef CPU, StringRef FS) {
76 return createPPCMCSubtargetInfoImpl(TT, CPU, FS);
74 createPPCMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) argument
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachine.cpp35 const Triple &TT, StringRef CPU, StringRef FS,
38 TargetFS(FS), AsmInfo(nullptr), MRI(nullptr), MII(nullptr), STI(nullptr),
34 TargetMachine(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options) argument
/freebsd-12-stable/contrib/gcc/
H A Dopth-gen.awk32 FS=SUBSEP
/freebsd-12-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp223 if (auto *FS = dyn_cast<FunctionSummary>(GS)) {
224 for (auto &TT : FS->type_tests())
226 for (auto &TT : FS->type_test_assume_vcalls())
228 for (auto &TT : FS->type_checked_load_vcalls())
230 for (auto &TT : FS->type_test_assume_const_vcalls())
232 for (auto &TT : FS->type_checked_load_const_vcalls())
234 for (auto &ET : FS->calls()) {
903 auto *FS = dyn_cast<FunctionSummary>(S.get()); local
904 if (!FS)
906 if (!FS
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCloneDetection.cpp306 llvm::FoldingSetNodeID &FS; member in class:__anon2777::FoldingSetNodeIDWrapper
309 FoldingSetNodeIDWrapper(llvm::FoldingSetNodeID &FS) : FS(FS) {} argument
311 void update(StringRef Str) { FS.AddString(Str); }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.cpp80 StringRef FS, const TargetMachine &TM)
81 : HexagonGenSubtargetInfo(TT, CPU, FS), OptLevel(TM.getOptLevel()),
83 InstrInfo(initializeSubtargetDependencies(CPU, FS)),
92 HexagonSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS) { argument
115 ParseSubtargetFeatures(CPUString, FS);
79 HexagonSubtarget(const Triple &TT, StringRef CPU, StringRef FS, const TargetMachine &TM) argument
/freebsd-12-stable/contrib/one-true-awk/
H A Dlib.c121 dprintf( ("RS=<%s>, FS=<%s>, ARGC=%g, FILENAME=%s\n",
122 *RS, *FS, *ARGC, *FILENAME) );
194 if (strlen(*FS) >= sizeof(inputFS))
195 FATAL("field separator %.10s... is too long", *FS);
197 strcpy(inputFS, *FS); /* for subsequent field splitting */
287 strcpy(inputFS, *FS);
309 } else if ((sep = *inputFS) == 0) { /* new: FS="" => 1 char/field */
324 /* subtlecase : if length(FS) == 1 && length(RS > 0)
418 int refldbld(const char *rec, const char *fs) /* build fields from reg expr in FS */
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DFormatString.cpp145 FormatSpecifier &FS,
169 FS.setArgIndex(Amt.getConstantAmount() - 1);
170 FS.setUsesPositionalArg();
182 FormatSpecifier &FS,
204 FS.setVectorNumElts(NumElts);
211 clang::analyze_format_string::ParseLengthModifier(FormatSpecifier &FS, argument
292 FS.setLengthModifier(lm);
144 ParseArgPosition(FormatStringHandler &H, FormatSpecifier &FS, const char *Start, const char *&Beg, const char *E) argument
181 ParseVectorModifier(FormatStringHandler &H, FormatSpecifier &FS, const char *&I, const char *E, const LangOptions &LO) argument
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp478 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, FileStaticSym &FS) { argument
479 P.format(" `{0}`", FS.Name);
483 SymGroup->getNameFromStringTable(FS.ModFilenameOffset);
486 typeIndex(FS.Index), FS.ModFilenameOffset, *FileName,
487 formatLocalSymFlags(P.getIndentLevel() + 9, FS.Flags));
493 typeIndex(FS.Index), FS.ModFilenameOffset,
494 formatLocalSymFlags(P.getIndentLevel() + 9, FS.Flags));

Completed in 208 milliseconds

1234567891011>>