Searched refs:TCount (Results 1 - 5 of 5) sorted by relevance
/third_party/skia/tests/ |
H A D | TemplatesTest.cpp | 77 template<typename TContainer, typename TCount> 79 REPORTER_ASSERT(reporter, !TContainer((TCount)0).get()); in test_container_apis() 80 REPORTER_ASSERT(reporter, !TContainer((TCount)0).data()); in test_container_apis() 81 REPORTER_ASSERT(reporter, TContainer((TCount)1).get()); in test_container_apis() 82 REPORTER_ASSERT(reporter, TContainer((TCount)1).data()); in test_container_apis() 83 REPORTER_ASSERT(reporter, TContainer((TCount)kStackPreallocCount).get()); in test_container_apis() 84 REPORTER_ASSERT(reporter, TContainer((TCount)kStackPreallocCount).data()); in test_container_apis() 85 REPORTER_ASSERT(reporter, TContainer((TCount)kStackPreallocCount + 1).get()); in test_container_apis() 86 REPORTER_ASSERT(reporter, TContainer((TCount)kStackPreallocCount + 1).data()); in test_container_apis() 91 container.reset((TCount) in test_container_apis() [all...] |
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-shape-complex-hangul.cc | 105 #define TCount 28u macro 107 #define NCount (VCount * TCount) 112 #define isCombiningT(u) (hb_in_range<hb_codepoint_t> ((u), TBase+1, TBase+TCount-1)) 273 hb_codepoint_t s = SBase + (l - LBase) * NCount + (v - VBase) * TCount + tindex; in preprocess_text_hangul() 314 unsigned int vindex = nindex / TCount; in preprocess_text_hangul() 315 unsigned int tindex = nindex % TCount; in preprocess_text_hangul()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/ |
H A D | NormalizerBuilder.java | 231 int TIndex = SIndex % TCount; in buildDecompositionTables() 238 second = (char)(VBase + (SIndex % NCount) / TCount); in buildDecompositionTables() 253 LCount = 19, VCount = 21, TCount = 28, field in NormalizerBuilder 254 NCount = VCount * TCount, // 588
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
H A D | NormalizerBuilder.java | 230 int TIndex = SIndex % TCount; in buildDecompositionTables() 237 second = (char)(VBase + (SIndex % NCount) / TCount); in buildDecompositionTables() 252 LCount = 19, VCount = 21, TCount = 28, field in NormalizerBuilder 253 NCount = VCount * TCount, // 588
|
/third_party/python/Modules/ |
H A D | unicodedata.c | 492 #define TCount 28 macro 493 #define NCount (VCount*TCount) 553 int V = VBase + (SIndex % NCount) / TCount; in nfd_nfkd() 554 int T = TBase + SIndex % TCount; in nfd_nfkd() 701 code = SBase + (LIndex*VCount+VIndex)*TCount; in nfc_nfkc() 705 PyUnicode_READ(kind, data, i) < (TBase+TCount)) { in nfc_nfkc() 1097 int V = (SIndex % NCount) / TCount; in _getucname() 1098 int T = SIndex % TCount; in _getucname() 1243 find_syllable(pos, &len, &T, TCount, 2); in _getcode() 1246 *code = SBase + (L*VCount+V)*TCount in _getcode() [all...] |
Completed in 5 milliseconds