Home
last modified time | relevance | path

Searched refs:Title (Results 1 – 25 of 166) sorted by relevance

1234567

/freebsd/sys/contrib/dev/acpica/components/resources/
H A Drsdump.c167 const char *Title,
172 const char *Title,
177 const char *Title,
182 const char *Title,
187 const char *Title,
192 const char *Title);
220 char *Title,
627 char *Title, in AcpiRsDumpResourceLabel() argument
632 AcpiRsOutString (Title, in AcpiRsDumpResourceLabel()
706 const char *Title, in AcpiRsOutString() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DGraphWriter.h125 void writeGraph(const std::string &Title = "") {
127 writeHeader(Title);
139 void writeHeader(const std::string &Title) { in writeHeader() argument
142 if (!Title.empty()) in writeHeader()
143 O << "digraph \"" << DOT::EscapeString(Title) << "\" {\n"; in writeHeader()
152 if (!Title.empty()) in writeHeader()
153 O << "\tlabel=\"" << DOT::EscapeString(Title) << "\";\n"; in writeHeader()
361 const Twine &Title = "") {
366 W.writeGraph(Title.str());
380 const Twine &Title = "",
[all …]
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devpmac_common.txt15 Title = HMAC tests (from RFC2104 and others)
42 Title = SHA1
68 Title = SHA2
150 Title = SHA3
234 Title = HMAC self generated tests
242 Title = CMAC tests (from FIPS module)
262 Title = GMAC Tests (from NIST)
330 Title = KMAC Tests (From NIST)
374 Title = KMAC XOF Tests (From NIST)
429 Title = KMAC XOF Tests via ctrl (From NIST)
[all …]
H A Devpmd_md.txt9 Title = MD2 tests
46 Title = MD4 tests
83 Title = MD5 tests
113 Title = MD5-SHA1
H A Devpciph_aes_stitched.txt1 Title = AES-128-CBC-HMAC-SHA1 test vectors
33 Title = AES-256-CBC-HMAC-SHA1 test vectors
64 Title = AES-128-CBC-HMAC-SHA256 test vectors
96 Title = AES-256-CBC-HMAC-SHA256 test vectors
H A Devpciph_des.txt9 Title = DES ECB Tests (from destest)
53 Title = DES Tests (from FIPS PUB 81)
78 Title = DES Tests (various sources)
H A Devppkey_ecc.txt14 Title=c2pnb163v1 curve tests
92 Title=c2pnb163v2 curve tests
170 Title=c2pnb163v3 curve tests
248 Title=c2pnb176v1 curve tests
326 Title=c2pnb208w1 curve tests
406 Title=c2pnb272w1 curve tests
486 Title=c2pnb304w1 curve tests
566 Title=c2pnb368w1 curve tests
649 Title=c2tnb191v1 curve tests
729 Title=c2tnb191v2 curve tests
[all …]
H A Devpkdf_x942_des.txt8 Title = X9.42 KDF tests (from RFC2631 test vectors)
17 Title = X9.42 KDF tests (ACVP test vectors)
H A Devppkey_brainpool.txt14 Title=brainpoolP160r1 curve tests
52 Title=brainpoolP160t1 curve tests
90 Title=brainpoolP192r1 curve tests
130 Title=brainpoolP192t1 curve tests
170 Title=brainpoolP224r1 curve tests
210 Title=brainpoolP224t1 curve tests
250 Title=brainpoolP256r1 curve tests
290 Title=brainpoolP256t1 curve tests
330 Title=brainpoolP320r1 curve tests
370 Title=brainpoolP320t1 curve tests
[all …]
H A Devpciph_aria.txt14 Title = ARIA test vectors from RFC5794 (and others)
149 Title = ARIA GCM test vectors from RFC8269
167 Title = ARIA GCM self-generated test vectors
197 Title = ARIA CCM test vectors from IETF draft-ietf-avtcore-aria-srtp-02
H A Devpciph_rc4.txt9 Title = RC4 tests
47 Title = RC4 tests (From RFC6229)
H A Devpmd_sm3.txt14 Title = SM3 Tests
53 Title = Case insensitive digest tests
H A Devpkdf_x942.txt14 Title = X9.42 KDF tests (RFC3565 2.3.2 Examples)
29 Title = X9.42 KDF tests (generated tests to test different options)
78 Title = X9.42 KDF tests (ACVP test vectors)
H A Devppkey_ecdsa.txt38 Title = ECDSA tests
93 Title = DigestSign and DigestVerify
162 Title = FIPS tests
183 Title = FIPS Negative tests (using different curves and digests)
H A Devpmac_siphash.txt17 Title = SIPHASH tests
174 Title = SIPHASH - explicit rounds
185 Title = SIPHASH - non-default values: 4,8 rounds
/freebsd/share/doc/smm/title/
H A DMakefile3 DOC= Title
4 SRCS= Title
/freebsd/share/doc/psd/title/
H A DMakefile3 DOC= Title
4 SRCS= Title
/freebsd/share/doc/usd/title/
H A DMakefile3 DOC= Title
4 SRCS= Title
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDOTGraphTraitsPass.h270 std::string Title = DOTGraphTraits<GraphT>::getGraphName(Graph); in runOnModule() local
272 ViewGraph(Graph, Name, IsSimple, Title); in runOnModule()
303 std::string Title = DOTGraphTraits<GraphT>::getGraphName(Graph); in runOnModule() local
306 WriteGraph(File, Graph, IsSimple, Title); in runOnModule()
335 std::string Title = GraphName + " for '" + F.getName().str() + "' function"; in WriteDOTGraphToFile() local
338 WriteGraph(File, Graph, IsSimple, Title); in WriteDOTGraphToFile()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp146 void SelectionDAG::viewGraph(const std::string &Title) { in viewGraph() argument
150 false, Title); in viewGraph()
172 const Twine &Title) { in dumpDotGraph() argument
173 dumpDotGraphToFile(this, FileName, Title); in dumpDotGraph()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAGPrinter.cpp79 void ScheduleDAG::viewGraph(const Twine &Name, const Twine &Title) { in viewGraph() argument
82 ViewGraph(this, Name, false, Title); in viewGraph()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DDetailedRecordsBackend.cpp49 void printSectionHeading(StringRef Title, int Count, raw_ostream &OS);
117 void DetailedRecordsEmitter::printSectionHeading(StringRef Title, int Count, in printSectionHeading() argument
119 OS << formatv("\n{0} {1} ({2}) {0}\n", "--------------------", Title, Count); in printSectionHeading()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DInstrDocsEmitter.cpp63 std::string Title = std::string(Target.getName()); in EmitInstrDocs() local
64 Title += " Instructions"; in EmitInstrDocs()
65 writeTitle(Title, OS); in EmitInstrDocs()
/freebsd/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp651 static void PrintHelpOptionList(raw_ostream &OS, StringRef Title, in PrintHelpOptionList() argument
653 OS << Title << ":\n"; in PrintHelpOptionList()
706 void OptTable::printHelp(raw_ostream &OS, const char *Usage, const char *Title, in printHelp() argument
710 OS, Usage, Title, ShowHidden, ShowAllAliases, in printHelp()
716 void OptTable::printHelp(raw_ostream &OS, const char *Usage, const char *Title, in printHelp() argument
722 OS, Usage, Title, ShowHidden, ShowAllAliases, in printHelp()
733 raw_ostream &OS, const char *Usage, const char *Title, bool ShowHidden, in internalPrintHelp() argument
736 OS << "OVERVIEW: " << Title << "\n\n"; in internalPrintHelp()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDomPrinter.cpp28 void DominatorTree::viewGraph(const Twine &Name, const Twine &Title) { in viewGraph() argument
30 ViewGraph(this, Name, false, Title); in viewGraph()

1234567