Searched refs:diffs (Results 1 – 2 of 2) sorted by relevance
67 std::ostream& operator<<(std::ostream& o, const AuthorizationSetDifferences& diffs) { in operator <<() argument68 if (!diffs.aWhackB.empty()) { in operator <<()69 o << "Set " << diffs.aName << " contains the following that " << diffs.bName << " does not" in operator <<()70 << diffs.aWhackB; in operator <<()71 if (!diffs.bWhackA.empty()) o << std::endl; in operator <<()74 if (!diffs.bWhackA.empty()) { in operator <<()75 o << "Set " << diffs.bName << " contains the following that " << diffs.aName << " does not" in operator <<()76 << diffs.bWhackA; in operator <<()89 AuthorizationSetDifferences diffs = {std::move(aName), std::move(bName), {}, {}}; in difference() local90 std::set_difference(a.begin(), a.end(), b.begin(), b.end(), std::back_inserter(diffs.aWhackB)); in difference()[all …]
244 std::unordered_map<uint32_t, UserIo> diffs; in calcIncrement() local249 diffs[d.uid] = d; in calcIncrement()251 diffs[d.uid] = d - mPrevious[d.uid]; in calcIncrement()254 if ((diffs[d.uid].sumRead() || diffs[d.uid].sumWrite()) && in calcIncrement()261 return diffs; in calcIncrement()