Lines Matching defs:EncodedCounterAndRegion
254 uint64_t EncodedCounterAndRegion;
255 if (auto Err = readIntMax(EncodedCounterAndRegion,
258 unsigned Tag = EncodedCounterAndRegion & Counter::EncodingTagMask;
263 // "CodeRegion". In that case, EncodedCounterAndRegion actually encodes the
267 // then EncodedCounterAndRegion is interpreted to represent an
268 // ExpansionRegion. In all other cases, EncodedCounterAndRegion is
273 if (auto Err = decodeCounter(EncodedCounterAndRegion, C))
277 if (EncodedCounterAndRegion & EncodingExpansionRegionBit) {
279 ExpandedFileID = EncodedCounterAndRegion >>
285 switch (EncodedCounterAndRegion >>
487 uint64_t EncodedCounterAndRegion;
488 if (Error Err = readIntMax(EncodedCounterAndRegion,
491 unsigned Tag = EncodedCounterAndRegion & Counter::EncodingTagMask;