Home
last modified time | relevance | path

Searched refs:Sets (Results 1 – 25 of 385) sorted by relevance

12345678910>>...16

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DDeltaAlgorithm.cpp45 const changesetlist_ty &Sets) { in Delta() argument
47 UpdatedSearchState(Changes, Sets); in Delta()
50 if (Sets.size() <= 1) in Delta()
55 if (Search(Changes, Sets, Res)) in Delta()
60 for (changesetlist_ty::const_iterator it = Sets.begin(), in Delta()
61 ie = Sets.end(); it != ie; ++it) in Delta()
63 if (SplitSets.size() == Sets.size()) in Delta()
70 const changesetlist_ty &Sets, in Search() argument
73 for (changesetlist_ty::const_iterator it = Sets.begin(), in Search()
74 ie = Sets.end(); it != ie; ++it) { in Search()
[all …]
H A DDAGDeltaAlgorithm.cpp118 const changesetlist_ty &Sets, in UpdatedSearchState() argument
120 DDA.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState()
163 const changesetlist_ty &Sets) override { in UpdatedSearchState() argument
164 DDAI.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState()
/netbsd-src/external/apache2/llvm/dist/libcxx/benchmarks/
H A Dordered_set.bench.cpp45 std::vector<std::set<uint64_t> > Sets; member
52 R.Sets.resize(1); in makeTestingSets()
55 R.Sets[0].insert(2 * I); in makeTestingSets()
58 R.Sets.resize(NumTables, R.Sets[0]); in makeTestingSets()
90 std::vector<std::set<uint64_t>> Sets(NumTables); in run() local
92 for (auto& Set : Sets) { in run()
113 for (auto& Set : Data.Sets) { in run()
134 for (auto& Set : Data.Sets) { in run()
155 for (auto& Set : Data.Sets) { in run()
176 for (auto& Set : Data.Sets) { in run()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man7/
H A Dprovider-kdf.pod162 Sets the key in the associated KDF ctx.
166 Sets the secret in the associated KDF ctx.
170 Sets the password in the associated KDF ctx.
178 Sets the name of the underlying cipher, digest or MAC to be used.
183 Sets the length of the MAC in the associated KDF ctx.
187 Sets the properties to be queried when trying to fetch the underlying algorithm.
193 Sets the number of iterations in the associated KDF ctx.
197 Sets the mode in the associated KDF ctx.
218 Sets an optional random string that is provided by the sender called
224 Sets the CEK wrapping algorithm name in the associated KDF ctx.
[all …]
H A DEVP_MAC-GMAC.pod36 Sets the MAC key.
41 Sets the IV of the underlying cipher, when applicable.
45 Sets the name of the underlying cipher to be used.
49 Sets the properties to be queried when trying to fetch the underlying cipher.
H A DEVP_MAC-BLAKE2.pod42 Sets the MAC key.
49 Sets the customization/personalization string.
55 Sets the salt.
61 Sets the MAC size.
H A DEVP_MAC-CMAC.pod36 Sets the MAC key.
41 Sets the name of the underlying cipher to be used.
45 Sets the properties to be queried when trying to fetch the underlying cipher.
H A DEVP_MAC-HMAC.pod36 Sets the MAC key.
41 Sets the name of the underlying digest to be used.
45 Sets the properties to be queried when trying to fetch the underlying digest.
H A DEVP_PKEY-FFC.pod81 Sets the index to use for canonical generation and verification of the generator
130 Sets the type of parameter generation. The shared valid values are:
151 Sets the size (in bits) of the prime 'p'.
155 Sets the size (in bits) of the prime 'q'.
162 Sets the Digest algorithm to be used as part of the Key Generation Function
168 Sets properties to be used upon look up of the implementation for the selected
H A DEVP_MAC-Siphash.pod37 Sets the MAC key.
42 Sets the MAC size.
H A DEVP_MAC-KMAC.pod43 Sets the MAC key.
49 Sets the customization string.
55 Sets the MAC size.
H A Dprovider-keyexch.pod174 Sets or gets the Key Derivation Function type to apply within the associated key
179 Sets or gets the Digest algorithm to be used as part of the Key Derivation Function
184 Sets properties to be used upon look up of the implementation for the selected
190 Sets or gets the desired size for the output of the chosen Key Derivation Function
196 Sets the User Key Material to be used as part of the selected Key Derivation
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DCFLSteensAliasAnalysis.cpp73 StratifiedSets<InstantiatedValue> Sets; member in CFLSteensAAResult::FunctionInfo
81 return Sets; in getStratifiedSets()
119 : Sets(std::move(S)) { in FunctionInfo()
148 auto &Link = Sets.getLink(SetIndex); in FunctionInfo()
167 auto RetInfo = Sets.find(InstantiatedValue{RetVal, 0}); in FunctionInfo()
176 auto ParamInfo = Sets.find(InstantiatedValue{&Param, 0}); in FunctionInfo()
298 auto &Sets = MaybeInfo->getStratifiedSets(); in query() local
299 auto MaybeA = Sets.find(InstantiatedValue{ValA, 0}); in query()
303 auto MaybeB = Sets.find(InstantiatedValue{ValB, 0}); in query()
309 auto AttrsA = Sets.getLink(SetA.Index).Attrs; in query()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugPubTable.cpp26 Sets.clear(); in extract()
30 Sets.push_back({}); in extract()
31 Set &NewSet = Sets.back(); in extract()
38 Sets.pop_back(); in extract()
94 for (const Set &S : Sets) { in dump()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DDeltaAlgorithm.h60 const changesetlist_ty &Sets);
68 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets,
74 const changesetlist_ty &Sets) {} in UpdatedSearchState() argument
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Ddwarf2yaml.cpp178 ArrayRef<DWARFDebugPubTable::Set> Sets = Table.getData(); in dumpPubSection() local
179 if (Sets.empty()) in dumpPubSection()
183 Y.Format = Sets[0].Format; in dumpPubSection()
184 Y.Length = Sets[0].Length; in dumpPubSection()
185 Y.Version = Sets[0].Version; in dumpPubSection()
186 Y.UnitOffset = Sets[0].Offset; in dumpPubSection()
187 Y.UnitSize = Sets[0].Size; in dumpPubSection()
189 for (const DWARFDebugPubTable::Entry &E : Sets[0].Entries) in dumpPubSection()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugPubTable.h67 std::vector<Set> Sets;
81 ArrayRef<Set> getData() { return Sets; } in getData()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSplitModule.cpp170 SmallVector<SortType, 64> Sets; in findPartitions() local
178 Sets.push_back( in findPartitions()
182 llvm::sort(Sets, [](const SortType &a, const SortType &b) { in findPartitions()
189 for (auto &I : Sets) { in findPartitions()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DTableGen.cpp227 SetTheory Sets; in LLVMTableGenMain() local
228 Sets.addFieldExpander("Set", "Elements"); in LLVMTableGenMain()
231 const std::vector<Record*> *Elts = Sets.expand(Rec); in LLVMTableGenMain()
/netbsd-src/sys/arch/ia64/stand/common/
H A Dhelp.common135 Sets the default delay for the autoboot command to <value> seconds.
142 Sets the default set of kernel boot filename(s). It may be overridden
216 Sets the current console. If <value> is omitted, a list of valid
231 Sets the list of binaries which the kernel will try to run as initial
240 Sets the list of directories which will be searched in for modules
284 Sets the size of kernel memory (bytes). This overrides
316 Sets the lowest address that the pci code will assign
/netbsd-src/external/bsd/atf/dist/atf-sh/
H A Dlibatf-sh.subr145 # Sets the expectations to 'death'.
158 # Sets the expectations to 'timeout'.
171 # Sets the expectations to 'exit'.
190 # Sets the expectations to 'fail'.
203 # Sets the expectations to 'pass'.
216 # Sets the expectations to 'signal'.
347 # Sets the test case's variable 'varname' to the specified values
401 # Sets the test case's private variable 'varname' to the specified
414 # Sets the test case's private variable 'varname' to the specified
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-m4/
H A Dcsharpexec.m410 # Sets at most one of HAVE_ILRUN, HAVE_MONO, HAVE_CLIX.
11 # Sets HAVE_CSHARPEXEC to nonempty if csharpexec.sh will work.
H A Dcsharpcomp.m49 # Sets at most one of HAVE_CSCC, HAVE_MCS, HAVE_CSC.
10 # Sets HAVE_CSHARPCOMP to nonempty if csharpcomp.sh will work.
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/gnulib-m4/
H A Dcsharpcomp.m49 # Sets at most one of HAVE_CSCC, HAVE_MCS, HAVE_CSC.
10 # Sets HAVE_CSHARPCOMP to nonempty if csharpcomp.sh will work.
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DSSL_CTX_set_split_send_fragment.pod144 Sets Maximum Fragment Length to 512 bytes.
148 Sets Maximum Fragment Length to 1024.
152 Sets Maximum Fragment Length to 2048.
156 Sets Maximum Fragment Length to 4096.

12345678910>>...16