Home | History | Annotate | Download | only in runtime

Lines Matching refs:FieldGap

326 struct FieldGap {
333 bool operator() (const FieldGap& lhs, const FieldGap& rhs)
341 using FieldGaps = std::priority_queue<FieldGap, std::vector<FieldGap>, FieldGapsComparator>;
351 gaps->push(FieldGap {current_offset, sizeof(uint32_t)});
354 gaps->push(FieldGap {current_offset, sizeof(uint16_t)});
357 gaps->push(FieldGap {current_offset, sizeof(uint8_t)});
390 FieldGap gap = gaps->top();