Searched refs:Values (Results 26 - 50 of 186) sorted by relevance

12345678

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Option/
H A DArgList.cpp93 SmallVector<const char *, 16> Values; local
94 AddAllArgValues(Values, Id);
95 return std::vector<std::string>(Values.begin(), Values.end());
142 const auto &Values = Arg->getValues(); local
143 Output.append(Values.begin(), Values.end());
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp272 if (AbbrCode == 0 || Entry.Values.empty())
292 auto FormVal = Entry.Values.begin();
294 for (; FormVal != Entry.Values.end() && AbbrForm != Abbrev.Attributes.end();
694 ArrayRef<yaml::Hex64> Values,
696 if (Values.size() != ExpectedOperands)
701 Values.size(), EncodingString.str().c_str(), ExpectedOperands);
724 Operation.Values, ExpectedOperands);
733 encodeSLEB128(Operation.Values[0], OS);
761 return checkOperandCount(EncodingName, Entry.Values, ExpectedOperands);
777 encodeULEB128(Entry.Values[
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
H A DRefactoringActionRulesInternal.h52 auto Values = local
54 auto Err = findError(std::get<Is>(Values)...);
60 RuleType::initiate(Context, std::move((*std::get<Is>(Values)))...);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Basic/Targets/
H A DSystemZ.cpp109 SmallVectorImpl<StringRef> &Values) const {
111 Values.push_back(Rev.Name);
H A DNVPTX.h122 void fillValidCPUList(SmallVectorImpl<StringRef> &Values) const override {
125 Values.emplace_back(CudaArchToString(static_cast<CudaArch>(i)));
H A DLanai.h67 void fillValidCPUList(SmallVectorImpl<StringRef> &Values) const override;
H A DSparc.cpp133 SmallVectorImpl<StringRef> &Values) const {
135 Values.push_back(Info.Name);
258 SmallVectorImpl<StringRef> &Values) const {
261 Values.push_back(Info.Name);
H A DHexagon.cpp206 SmallVectorImpl<StringRef> &Values) const {
208 Values.push_back(Suffix.Name);
H A DSparc.h141 void fillValidCPUList(SmallVectorImpl<StringRef> &Values) const override;
229 void fillValidCPUList(SmallVectorImpl<StringRef> &Values) const override;
H A DWebAssembly.cpp66 SmallVectorImpl<StringRef> &Values) const {
67 Values.append(std::begin(ValidCPUNames), std::end(ValidCPUNames));
H A DBPF.h105 void fillValidCPUList(SmallVectorImpl<StringRef> &Values) const override;
H A DHexagon.h124 void fillValidCPUList(SmallVectorImpl<StringRef> &Values) const override;
H A DAMDGPU.cpp314 SmallVectorImpl<StringRef> &Values) const {
316 llvm::AMDGPU::fillValidArchListAMDGCN(Values);
318 llvm::AMDGPU::fillValidArchListR600(Values);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Option/
H A DOptTable.h57 const char *Values; member in struct:llvm::opt::OptTable::Info
177 /// Add Values to Option's Values class
179 /// \param [in] Option - Prefix + Name of the flag which Values will be
181 /// \param [in] Values - String of Values seperated by ",", such as
186 bool addValues(const char *Option, const char *Values);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DGVNSink.cpp156 // corresponding Values.
230 SmallVector<Value *, 4> Values; member in class:__anon2938::ModelledPHI
244 Values.push_back(P.second);
253 M.Values.push_back(reinterpret_cast<Value*>(ID));
260 llvm::copy(V, std::back_inserter(Values));
269 Values.push_back(I->getOperand(OpNum));
276 auto VI = Values.begin();
278 assert(VI != Values.end());
281 VI = Values.erase(VI);
290 ArrayRef<Value *> getValues() const { return Values; }
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.h78 void hashBlockData(const DIE::const_value_range &Values);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DXRayInstr.h73 SmallVectorImpl<StringRef> &Values);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DOptParserEmitter.cpp80 std::vector<StringRef> Values; member in class:MarshallingInfo
137 for (unsigned I = 0, E = Values.size(); I != E; ++I) {
139 write_cstring(OS, Values[I]);
185 assert(!isa<UnsetInit>(R.getValueInit("Values")) &&
189 Ret.Values.reserve(Ret.NormalizedValues.size());
192 StringRef ValuesStr = R.getValueAsString("Values");
198 Ret.Values.push_back(ValuesStr.slice(0, Idx));
202 Ret.Values.push_back(ValuesStr);
204 assert(Ret.Values.size() == Ret.NormalizedValues.size() &&
301 // The option Values (unuse
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp385 unsigned FirstConstant = Values.size();
485 OptimizeConstants(FirstConstant, Values.size());
575 std::stable_sort(Values.begin() + CstStart, Values.begin() + CstEnd,
588 std::stable_partition(Values.begin() + CstStart, Values.begin() + CstEnd,
593 ValueMap[Values[CstStart].first] = CstStart+1;
900 Values[ValueID-1].second++;
933 Values.push_back(std::make_pair(V, 1U));
934 ValueMap[V] = Values
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp74 static void appendToUsedList(Module &M, StringRef Name, ArrayRef<GlobalValue *> Values) { argument
91 for (auto *V : Values) {
106 void llvm::appendToUsed(Module &M, ArrayRef<GlobalValue *> Values) { argument
107 appendToUsedList(M, "llvm.used", Values);
110 void llvm::appendToCompilerUsed(Module &M, ArrayRef<GlobalValue *> Values) { argument
111 appendToUsedList(M, "llvm.compiler.used", Values);
/netbsd-current/external/apache2/llvm/dist/libcxx/benchmarks/
H A DCartesianBenchmarks.h74 const Vs&... Values) {
77 Values...);
73 allValueCombinations(R& Result, const T& Prev, const V& Value, const Vs&... Values) argument
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp262 Values.reserve(HdrData.Atoms.size());
264 Values.push_back(DWARFFormValue(Atom.second));
272 for (auto &Atom : Values)
279 assert(HdrData->Atoms.size() == Values.size());
280 for (auto Tuple : zip_first(HdrData->Atoms, Values)) {
533 Values.reserve(Abbr.Attributes.size());
535 Values.emplace_back(Attr.Form);
540 assert(Abbr->Attributes.size() == Values.size());
541 for (auto Tuple : zip_first(Abbr->Attributes, Values)) {
574 assert(Abbr->Attributes.size() == Values
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DWaymarking.h169 // in Values.
173 static const uint8_t Values[sizeof...(Vals)]; member in struct:llvm::detail::WaymarkingTraits::TagsData
194 Count, Vals...>::Values[sizeof...(Vals)] = {Vals...}; member in class:llvm::detail::WaymarkingTraits::TagsData
235 Marker::setWaymark(*Begin, Marker::Traits::Tags::Values[Offset]);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/XRay/
H A DFDRTraceWriter.cpp41 template <uint8_t Kind, class... Values>
42 Error writeMetadata(support::endian::Writer &OS, Values &&... Ds) {
46 auto T = std::make_tuple(std::forward<Values>(std::move(Ds))...);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-param-test.h84 // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}.
100 Values("meeny", "miny", "moe"));
202 // INSTANTIATE_TEST_SUITE_P(TestSequence, FooTest, Values(3, 5, 8));
314 // Values() allows generating tests from explicitly specified list of
318 // Values(T v1, T v2, ..., T vN)
326 // Values("one", "two", "three"));
331 // INSTANTIATE_TEST_SUITE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5));
335 internal::ValueArray<T...> Values(T... v) { function in namespace:testing
360 return Values(false, true);
389 // Combine(Values("ca
[all...]

Completed in 404 milliseconds

12345678