5 references to c_tmin
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Globalization\IdnMapping.cs (5)
576
int t = k <= bias ?
c_tmin
: k >= bias + c_tmax ? c_tmax : k - bias;
842
int t = k <= bias ?
c_tmin
: k >= bias + c_tmax ? c_tmax : k - bias;
982
for (k = 0; delta > ((c_punycodeBase -
c_tmin
) * c_tmax) / 2; k += c_punycodeBase)
984
delta /= c_punycodeBase -
c_tmin
;
988
return (int)(k + (c_punycodeBase -
c_tmin
+ 1) * delta / (delta + c_skew));