Lines Matching defs:ObjectSize
76 uint64_t ObjectSize = 0; // Size of Object in bytes.
97 SortingObjects[Obj].ObjectSize = MFI.getObjectSize(Obj);
124 // Count / ObjectSize. The comparisons of two such fractions are refactored
125 // by multiplying both sides with A.ObjectSize * B.ObjectSize, in order to
132 if (!A.ObjectSize || !B.ObjectSize)
133 return A.ObjectSize > 0;
134 uint64_t ADensityCmp = A.D12Count * B.ObjectSize;
135 uint64_t BDensityCmp = B.D12Count * A.ObjectSize;
138 return A.DPairCount * B.ObjectSize < B.DPairCount * A.ObjectSize;