Lines Matching refs:LocNoCount
132 LocNoCount = LocNoVec.size(); in DbgVariableValue()
133 if (LocNoCount > 0) { in DbgVariableValue()
134 LocNos = std::make_unique<unsigned[]>(LocNoCount); in DbgVariableValue()
140 LocNoCount = 1; in DbgVariableValue()
150 LocNos = std::make_unique<unsigned[]>(LocNoCount); in DbgVariableValue()
155 DbgVariableValue() : LocNoCount(0), WasIndirect(0), WasList(0) {} in DbgVariableValue()
157 : LocNoCount(Other.LocNoCount), WasIndirect(Other.getWasIndirect()), in DbgVariableValue()
174 LocNoCount = Other.getLocNoCount(); in operator =()
182 uint8_t getLocNoCount() const { return LocNoCount; } in getLocNoCount()
188 bool isUndef() const { return LocNoCount == 0 || containsLocNo(UndefLocNo); } in isUndef()
228 if (std::tie(LHS.LocNoCount, LHS.WasIndirect, LHS.WasList, in operator ==()
230 std::tie(RHS.LocNoCount, RHS.WasIndirect, RHS.WasList, RHS.Expression)) in operator ==()
243 unsigned *loc_nos_end() { return LocNos.get() + LocNoCount; } in loc_nos_end()
244 const unsigned *loc_nos_end() const { return LocNos.get() + LocNoCount; } in loc_nos_end()
246 return ArrayRef<unsigned>(LocNos.get(), LocNoCount); in loc_nos()
256 uint8_t LocNoCount : 6; member in __anonef106bf80211::DbgVariableValue