Home
last modified time | relevance | path

Searched refs:NumOpts (Results 1 – 5 of 5) sorted by relevance

/external/llvm/include/llvm/CodeGen/
DRegAllocPBQP.h85 AllowedRegVector() : NumOpts(0), Opts(nullptr) {} in AllowedRegVector()
88 : NumOpts(OptVec.size()), Opts(new unsigned[NumOpts]) { in AllowedRegVector()
93 : NumOpts(Other.NumOpts), Opts(new unsigned[NumOpts]) { in AllowedRegVector()
94 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get()); in AllowedRegVector()
98 : NumOpts(std::move(Other.NumOpts)), Opts(std::move(Other.Opts)) {} in AllowedRegVector()
101 NumOpts = Other.NumOpts;
102 Opts.reset(new unsigned[NumOpts]);
103 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get());
108 NumOpts = std::move(Other.NumOpts);
113 unsigned size() const { return NumOpts; } in size()
[all …]
/external/swiftshader/third_party/LLVM/lib/Support/
DCommandLine.cpp1118 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff() local
1119 for (unsigned i = 0; i != NumOpts; ++i) { in printGenericOptionDiff()
1127 for (unsigned j = 0; j != NumOpts; ++j) { in printGenericOptionDiff()
/external/llvm/lib/Support/
DCommandLine.cpp1593 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff() local
1594 for (unsigned i = 0; i != NumOpts; ++i) { in printGenericOptionDiff()
1602 for (unsigned j = 0; j != NumOpts; ++j) { in printGenericOptionDiff()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DCommandLine.cpp1618 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff() local
1619 for (unsigned i = 0; i != NumOpts; ++i) { in printGenericOptionDiff()
1627 for (unsigned j = 0; j != NumOpts; ++j) { in printGenericOptionDiff()
/external/llvm/tools/gold/
Dgold-plugin.cpp1468 if (unsigned NumOpts = options::extra.size()) in allSymbolsReadHook() local
1469 cl::ParseCommandLineOptions(NumOpts, &options::extra[0]); in allSymbolsReadHook()