Searched refs:TCount (Results 1 – 7 of 7) sorted by relevance
/external/skqp/tests/ |
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)1).get()); in test_container_apis() 81 REPORTER_ASSERT(reporter, TContainer((TCount)kStackPreallocCount).get()); in test_container_apis() 82 REPORTER_ASSERT(reporter, TContainer((TCount)kStackPreallocCount + 1).get()); in test_container_apis() 87 container.reset((TCount)1); in test_container_apis() 90 container.reset((TCount)kStackPreallocCount); in test_container_apis() 93 container.reset((TCount)kStackPreallocCount + 1); in test_container_apis() 96 container.reset((TCount)0); in test_container_apis()
|
/external/skia/tests/ |
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)1).get()); in test_container_apis() 81 REPORTER_ASSERT(reporter, TContainer((TCount)kStackPreallocCount).get()); in test_container_apis() 82 REPORTER_ASSERT(reporter, TContainer((TCount)kStackPreallocCount + 1).get()); in test_container_apis() 87 container.reset((TCount)1); in test_container_apis() 90 container.reset((TCount)kStackPreallocCount); in test_container_apis() 93 container.reset((TCount)kStackPreallocCount + 1); in test_container_apis() 96 container.reset((TCount)0); in test_container_apis()
|
/external/harfbuzz_ng/src/ |
D | hb-ot-shape-complex-hangul.cc | 101 #define TCount 28u macro 103 #define NCount (VCount * TCount) 108 #define isCombiningT(u) (hb_in_range<hb_codepoint_t> ((u), TBase+1, TBase+TCount-1)) 266 hb_codepoint_t s = SBase + (l - LBase) * NCount + (v - VBase) * TCount + tindex; in preprocess_text_hangul() 307 unsigned int vindex = nindex / TCount; in preprocess_text_hangul() 308 unsigned int tindex = nindex % TCount; in preprocess_text_hangul()
|
/external/python/cpython2/Modules/ |
D | unicodedata.c | 492 #define TCount 28 macro 493 #define NCount (VCount*TCount) 542 int V = VBase + (SIndex % NCount) / TCount; in nfd_nfkd() 543 int T = TBase + SIndex % TCount; in nfd_nfkd() 673 code = SBase + (LIndex*VCount+VIndex)*TCount; in nfc_nfkc() 676 TBase < *i && *i < (TBase+TCount)) { in nfc_nfkc() 916 int V = (SIndex % NCount) / TCount; in _getucname() 917 int T = SIndex % TCount; in _getucname() 1033 find_syllable(pos, &len, &T, TCount, 2); in _getcode() 1036 *code = SBase + (L*VCount+V)*TCount + T; in _getcode()
|
/external/python/cpython3/Modules/ |
D | unicodedata.c | 481 #define TCount 28 macro 482 #define NCount (VCount*TCount) 542 int V = VBase + (SIndex % NCount) / TCount; in nfd_nfkd() 543 int T = TBase + SIndex % TCount; in nfd_nfkd() 690 code = SBase + (LIndex*VCount+VIndex)*TCount; in nfc_nfkc() 694 PyUnicode_READ(kind, data, i) < (TBase+TCount)) { in nfc_nfkc() 977 int V = (SIndex % NCount) / TCount; in _getucname() 978 int T = SIndex % TCount; in _getucname() 1114 find_syllable(pos, &len, &T, TCount, 2); in _getcode() 1117 *code = SBase + (L*VCount+V)*TCount + T; in _getcode()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/ |
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
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
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
|