Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/
Dhb-ot-shape-complex-hangul.cc105 #define NCount (VCount * TCount) macro
106 #define SCount (LCount * NCount)
266 hb_codepoint_t s = SBase + (l - LBase) * NCount + (v - VBase) * TCount + tindex; in preprocess_text_hangul()
305 unsigned int lindex = (s - SBase) / NCount; in preprocess_text_hangul()
306 unsigned int nindex = (s - SBase) % NCount; in preprocess_text_hangul()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
DNormalizerBuilder.java236 first = (char)(LBase + SIndex / NCount); in buildDecompositionTables()
237 second = (char)(VBase + (SIndex % NCount) / TCount); in buildDecompositionTables()
253 NCount = VCount * TCount, // 588 field in NormalizerBuilder
254 SCount = LCount * NCount; // 11172
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
DNormalizerBuilder.java237 first = (char)(LBase + SIndex / NCount); in buildDecompositionTables()
238 second = (char)(VBase + (SIndex % NCount) / TCount); in buildDecompositionTables()
254 NCount = VCount * TCount, // 588 field in NormalizerBuilder
255 SCount = LCount * NCount; // 11172
/external/python/cpython2/Modules/
Dunicodedata.c493 #define NCount (VCount*TCount) macro
494 #define SCount (LCount*NCount)
541 int L = LBase + SIndex / NCount; in nfd_nfkd()
542 int V = VBase + (SIndex % NCount) / TCount; in nfd_nfkd()
911 int L = SIndex / NCount; in _getucname()
912 int V = (SIndex % NCount) / TCount; in _getucname()
/external/clang/test/Sema/
Dwarn-duplicate-enum.c91 NCount = NMax + 1 enumerator