Searched defs:ctCache (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DNumericShaper.java548 private static int ctCache = 0; field in class:NumericShaper
553 if (c < contexts[ctCache]) {
554 while (ctCache > 0 && c < contexts[ctCache]) --ctCache;
555 } else if (c >= contexts[ctCache + 1]) {
556 while (ctCache < ctCacheLimit && c >= contexts[ctCache + 1]) ++ctCache;
560 return (ctCache
[all...]

Completed in 48 milliseconds