Home | History | Annotate | Download | only in toolutil

Lines Matching refs:maxLength

30     LargestGaps(int32_t max) : maxLength(max<=kCapacity ? max : kCapacity), length(0) {}
37 if(i<maxLength) {
38 // The new gap is now one of the maxLength largest.
41 int32_t j= length<maxLength ? length++ : maxLength-1;
80 int32_t maxLength;
111 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1;
112 if(length>=(density*maxLength)/0x100) {
135 // the length of the [minValue..maxValue] range (maxLength).
144 maxLength-=gaps.gapLength(i);
145 if(length>num*2 && length>=(density*maxLength)/0x100) {