Home
last modified time | relevance | path

Searched refs:Spec (Results 1 – 25 of 148) sorted by relevance

123456

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFormatVariadic.cpp33 if (Spec.empty()) in consumeFieldLayout()
36 if (Spec.size() > 1) { in consumeFieldLayout()
44 if (auto Loc = translateLocChar(Spec[1])) { in consumeFieldLayout()
45 Pad = Spec[0]; in consumeFieldLayout()
47 Spec = Spec.drop_front(2); in consumeFieldLayout()
48 } else if (auto Loc = translateLocChar(Spec[0])) { in consumeFieldLayout()
50 Spec = Spec.drop_front(1); in consumeFieldLayout()
54 bool Failed = Spec.consumeInteger(0, Align); in consumeFieldLayout()
60 StringRef RepString = Spec.trim("{}"); in parseReplacementItem()
129 StringRef Spec = Fmt.slice(1, BC); in splitLiteralAndReplacement() local
[all …]
H A DNativeFormatting.cpp185 SmallString<8> Spec; in write_double() local
186 llvm::raw_svector_ostream Out(Spec); in write_double()
218 len = format(Spec.c_str(), N).snprint(buf, sizeof(buf)); in write_double()
245 format(Spec.c_str(), N).snprint(Buf, sizeof(Buf)); in write_double()
/freebsd/crypto/openssl/test/recipes/
H A D15-test_out_option.t13 use File::Spec;
33 my $path = File::Spec->canonpath('./');
40 my $path = File::Spec->canonpath('randomname.bin');
52 } while (-d File::Spec->catdir('.', $rand_path));
55 my $path = File::Spec->canonpath($rand_path);
65 my $path = File::Spec->canonpath(File::Spec->devnull());
H A D04-test_provider_fallback.t10 use File::Spec;
16 $ENV{OPENSSL_CONF} = File::Spec->devnull();
H A D04-test_provider_pkey.t10 use File::Spec;
16 $ENV{OPENSSL_CONF} = File::Spec->devnull();
H A D90-test_store.t9 use File::Spec::Functions;
555 ($vol, $dir, $file) = File::Spec->splitpath($file, $isdir // 0);
558 $dir = join('/', File::Spec->splitdir($dir));
596 return File::Spec->rel2abs($file);
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatVariadic.h51 : Type(ReplacementType::Literal), Spec(Literal) {} in ReplacementItem()
52 ReplacementItem(StringRef Spec, size_t Index, size_t Align, AlignStyle Where, in ReplacementItem()
54 : Type(ReplacementType::Format), Spec(Spec), Index(Index), Align(Align), in ReplacementItem()
58 StringRef Spec; member
71 static bool consumeFieldLayout(StringRef &Spec, AlignStyle &Where,
90 S << R.Spec; in format()
94 S << R.Spec; in format()
106 static std::optional<ReplacementItem> parseReplacementItem(StringRef Spec);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.cpp152 for (const AttributeSpec &Spec : AttributeSpecs) { in dump() local
153 OS << formatv("\t{0}\t{1}", Spec.Attr, Spec.Form); in dump()
154 if (Spec.isImplicitConst()) in dump()
155 OS << '\t' << Spec.getImplicitConstValue(); in dump()
194 const AttributeSpec &Spec = AttributeSpecs[AttrIndex]; in getAttributeValueFromOffset() local
195 if (Spec.isImplicitConst()) in getAttributeValueFromOffset()
196 return DWARFFormValue::createFromSValue(Spec.Form, in getAttributeValueFromOffset()
197 Spec.getImplicitConstValue()); in getAttributeValueFromOffset()
199 DWARFFormValue FormValue(Spec.Form); in getAttributeValueFromOffset()
/freebsd/crypto/openssl/
H A Dconfigdata.pm.in9 use File::Spec::Unix;
10 use File::Spec;
24 (my $vol, my $dirs, my $file) = File::Spec->splitpath($path);
25 my @dirs = File::Spec->splitdir($dirs);
29 $dirs = File::Spec::Unix->catdir('', $vol, @dirs);
30 $path = File::Spec::Unix->catpath('', $dirs, $file);
36 return _fixup_path(File::Spec->catdir($config{sourcedir}, @_))
39 return _fixup_path(File::Spec->catfile($config{sourcedir}, @_))
78 use File::Spec::Functions;
128 use File::Spec::Functions;
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DFunctionSpecialization.h121 struct Spec { struct
137 Spec(Function *F, const SpecSig &S, unsigned Score) in Spec() argument
139 Spec(Function *F, const SpecSig &&S, unsigned Score) in Spec() function
316 SmallVectorImpl<Spec> &AllSpecs, SpecMap &SM);
341 void updateCallSites(Function *F, const Spec *Begin, const Spec *End);
/freebsd/contrib/sendmail/contrib/
H A Dqtool.pl11 use File::Spec;
292 $source_name = File::Spec->catfile("$source_dir_name",
299 $source_name = File::Spec->catfile("$source_dir_name", "qf",
305 $data_dir_name = File::Spec->catfile("$source_dir_name", "df");
310 $source_dir_name = File::Spec->catfile("$source_dir_name",
902 $qf_dest = File::Spec->catfile($destination, "qf");
905 $df_dest = File::Spec->catfile($destination, "df");
917 if (-e File::Spec->catfile($qf_dest, "$qprefix$self->{id}"))
1036 $control_dir = File::Spec->catfile($self->{queue_dir}, 'qf');
1040 $data_dir = File::Spec->catfile($self->{queue_dir}, 'df');
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/
H A DARMTargetParserCommon.cpp141 bool ARM::parseBranchProtection(StringRef Spec, ParsedBranchProtection &PBP, in parseBranchProtection() argument
144 if (Spec == "none") in parseBranchProtection()
147 if (Spec == "standard") { in parseBranchProtection()
155 Spec.split(Opts, "+"); in parseBranchProtection()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFindingAction.cpp133 for (const auto *Spec : PartialSpecs) in handleClassTemplateDecl() local
134 addUSRsOfCtorDtors(Spec); in handleClassTemplateDecl()
148 for (const auto *Spec : VTD->specializations()) in handleVarTemplateDecl() local
149 USRSet.insert(getUSRForDecl(Spec)); in handleVarTemplateDecl()
152 for (const auto *Spec : PartialSpecs) in handleVarTemplateDecl() local
153 USRSet.insert(getUSRForDecl(Spec)); in handleVarTemplateDecl()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DModelUnderTrainingRunner.cpp25 TensorSpec Spec; member
134 return LFS.Spec; in createAndEnsureValid()
141 : LFS.Spec.name(), in createAndEnsureValid()
142 LFS.Spec); in createAndEnsureValid()
H A DTFLiteUtils.cpp95 const TensorSpec &Spec);
197 const TensorSpec &Spec) { in checkReportAndInvalidate() argument
199 errs() << "Could not find TF_Output named: " + Spec.name(); in checkReportAndInvalidate()
202 if (Spec.getTotalTensorBufferSize() != Tensor->bytes) in checkReportAndInvalidate()
H A DTensorSpec.cpp107 std::string tensorValueToString(const char *Buffer, const TensorSpec &Spec) { in tensorValueToString() argument
108 switch (Spec.type()) { in tensorValueToString()
112 auto R = llvm::make_range(TypedBuff, TypedBuff + Spec.getElementCount()); \ in tensorValueToString()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp303 const ApplyChangesSpec &Spec) { in applyAtomicChanges() argument
305 createReplacementsForHeaders(FilePath, Code, Changes, Spec.Style); in applyAtomicChanges()
326 if (Spec.Cleanup) { in applyAtomicChanges()
328 format::cleanupAroundReplacements(Code, AllReplaces, Spec.Style); in applyAtomicChanges()
346 Spec.Style, *ChangedCode, AllReplaces.getAffectedRanges(), FilePath); in applyAtomicChanges()
356 *ChangedCode, Spec.Style.ColumnLimit, Spec.Format, AllReplaces); in applyAtomicChanges()
359 format::reformat(Spec.Style, *ChangedCode, FormatRanges, FilePath); in applyAtomicChanges()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/
H A DLoongArch.def66 // Spec addition: https://github.com/loongson/LoongArch-Documentation/pull/57
110 // Spec addition: https://github.com/loongson/la-abi-specs/pull/1
127 // Spec addition: https://github.com/loongson/la-abi-specs/pull/4
133 // Spec addition: https://github.com/loongson/la-abi-specs/pull/5
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DBytesOutputStyle.cpp481 for (const auto &Spec : Specs) { in dumpStreamBytes() local
483 if (Spec.SI >= StreamPurposes.size()) { in dumpStreamBytes()
484 P.formatLine("Stream {0}: Not present", Spec.SI); in dumpStreamBytes()
487 P.formatMsfStreamData("Data", File, Spec.SI, in dumpStreamBytes()
488 StreamPurposes[Spec.SI].getShortName(), Spec.Begin, in dumpStreamBytes()
489 Spec.Size); in dumpStreamBytes()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/Utils/
H A DTrainingLogger.h100 void writeTensor(const TensorSpec &Spec, const char *RawData) { in writeTensor() argument
101 OS->write(RawData, Spec.getTotalTensorBufferSize()); in writeTensor()
/freebsd/crypto/openssl/providers/common/der/
H A Doids_to_c.pm15 use File::Spec;
72 my $input = File::Spec->catfile($opts{dir}, $file);
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMLModelRunner.h63 void setUpBufferForTensor(size_t Index, const TensorSpec &Spec, in setUpBufferForTensor() argument
66 OwnedBuffers.emplace_back(Spec.getTotalTensorBufferSize()); in setUpBufferForTensor()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DProgram.cpp254 for (const CXXBaseSpecifier &Spec : CD->bases()) { in getOrCreateRecord() local
255 if (Spec.isVirtual()) in getOrCreateRecord()
258 const RecordDecl *BD = Spec.getType()->castAs<RecordType>()->getDecl(); in getOrCreateRecord()
269 for (const CXXBaseSpecifier &Spec : CD->vbases()) { in getOrCreateRecord() local
270 const RecordDecl *BD = Spec.getType()->castAs<RecordType>()->getDecl(); in getOrCreateRecord()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionSpecialization.cpp630 SmallVector<Spec, 32> AllSpecs; in run()
714 const Spec &S = AllSpecs[BestSpecs[I]]; in run()
728 Spec &S = AllSpecs[BestSpecs[I]]; in run()
808 SmallVectorImpl<Spec> &AllSpecs, in findSpecializations()
915 auto &Spec = AllSpecs.emplace_back(F, S, Score); in findSpecializations() local
917 Spec.CallSites.push_back(&CS); in findSpecializations()
1097 void FunctionSpecializer::updateCallSites(Function *F, const Spec *Begin, in updateCallSites()
1098 const Spec *End) { in updateCallSites()
1112 const Spec *BestSpec = nullptr; in updateCallSites()
1113 for (const Spec &S : make_range(Begin, End)) { in updateCallSites()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java77 ProbeDescription.Spec probespec;
85 ProbeDescription.Spec spec = ((req.probespec == null) in applyProbespec()
86 ? ProbeDescription.Spec.NAME in applyProbespec()
733 r.probespec = ProbeDescription.Spec.FUNCTION; in main()
743 r.probespec = ProbeDescription.Spec.NAME; in main()
760 r.probespec = ProbeDescription.Spec.MODULE; in main()
767 r.probespec = ProbeDescription.Spec.NAME; in main()
802 r.probespec = ProbeDescription.Spec.PROVIDER; in main()

123456