Home
last modified time | relevance | path

Searched refs:ctCache (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/awt/font/
DNumericShaper.java548 private static int ctCache = 0; field in NumericShaper
553 if (c < contexts[ctCache]) { in getContextKey()
554 while (ctCache > 0 && c < contexts[ctCache]) --ctCache; in getContextKey()
555 } else if (c >= contexts[ctCache + 1]) { in getContextKey()
556 while (ctCache < ctCacheLimit && c >= contexts[ctCache + 1]) ++ctCache; in getContextKey()
560 return (ctCache & 0x1) == 0 ? (ctCache / 2) : EUROPEAN_KEY; in getContextKey()