Searched refs:NumOpts (Results 1 – 3 of 3) sorted by relevance
84 AllowedRegVector() : NumOpts(0), Opts(nullptr) {} in AllowedRegVector()87 : NumOpts(OptVec.size()), Opts(new unsigned[NumOpts]) { in AllowedRegVector()92 : NumOpts(Other.NumOpts), Opts(new unsigned[NumOpts]) { in AllowedRegVector()93 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get()); in AllowedRegVector()97 : NumOpts(std::move(Other.NumOpts)), Opts(std::move(Other.Opts)) {} in AllowedRegVector()100 NumOpts = Other.NumOpts;101 Opts.reset(new unsigned[NumOpts]);102 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get());107 NumOpts = std::move(Other.NumOpts);112 unsigned size() const { return NumOpts; } in size()[all …]
754 if (unsigned NumOpts = options::extra.size()) in codegen() local755 cl::ParseCommandLineOptions(NumOpts, &options::extra[0]); in codegen()
1388 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff() local1389 for (unsigned i = 0; i != NumOpts; ++i) { in printGenericOptionDiff()1397 for (unsigned j = 0; j != NumOpts; ++j) { in printGenericOptionDiff()