Lines Matching refs:tmax
330 terms of the constants base, tmin, and tmax, and a state variable
334 clamped to the range tmin through tmax
344 or greater than tmax, then t(j) = tmin or tmax, respectively. (In
376 while delta > ((base - tmin) * tmax) div 2
387 t(j) is set to tmax for the more significant digits starting with
390 between tmin and tmax for the digit expected to be second-last
416 The remaining five parameters (tmin, tmax, skew, damp, and the
419 0 <= tmin <= tmax <= base-1
428 make sure that the code points corresponding to 0 through tmax-1 all
437 tmax = 26
523 while delta > ((base - tmin) * tmax) div 2 do begin
585 tmax if k >= bias + tmax, or k - bias otherwise
602 tmax, "+ tmin" can always be omitted. This makes the clamping
644 tmax if k >= bias + tmax, or k - bias otherwise
669 tmax, "+ tmin" can always be omitted. This makes the clamping
1353 enum { base = 36, tmin = 1, tmax = 26, skew = 38, damp = 700,
1428 for (k = 0; delta > ((base - tmin) * tmax) / 2; k += base) {
1520 k >= bias + tmax ? tmax : k - bias;
1600 k >= bias + tmax ? tmax : k - bias;