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