138c138
< int loopTag;
---
> uint16_t loopTag;
240a241,249
> * Updates an unsigned counter based on up/down parameter
> * @param ctr Reference to counter to update.
> * @param up Boolean indicating if the counter is incremented/decremented
> * If true it is incremented, if false it is decremented
> * @param nbits Counter width.
> */
> void unsignedCtrUpdate(uint8_t & ctr, bool up, unsigned nbits);
>
> /**
357a367,370
> const unsigned loopTableAgeBits;
> const unsigned loopTableConfidenceBits;
> const unsigned loopTableTagBits;
> const unsigned loopTableIterBits;
358a372,375
> const uint8_t confidenceThreshold;
> const uint16_t loopTagMask;
> const uint16_t loopNumIterMask;
>