Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/cintltst/
Ducptrietest.c246 value2 = UCPTRIE_FAST_GET(trie, UCPTRIE_16, start); in testTrieGetters()
248 value2 = UCPTRIE_FAST_GET(trie, UCPTRIE_32, start); in testTrieGetters()
250 value2 = UCPTRIE_FAST_GET(trie, UCPTRIE_8, start); in testTrieGetters()
308 value = UCPTRIE_FAST_GET(trie, UCPTRIE_16, -1); in testTrieGetters()
309 value2 = UCPTRIE_FAST_GET(trie, UCPTRIE_16, 0x110000); in testTrieGetters()
311 value = UCPTRIE_FAST_GET(trie, UCPTRIE_32, -1); in testTrieGetters()
312 value2 = UCPTRIE_FAST_GET(trie, UCPTRIE_32, 0x110000); in testTrieGetters()
314 value = UCPTRIE_FAST_GET(trie, UCPTRIE_8, -1); in testTrieGetters()
315 value2 = UCPTRIE_FAST_GET(trie, UCPTRIE_8, 0x110000); in testTrieGetters()
/external/icu/icu4c/source/common/unicode/
Ducptrie.h378 #define UCPTRIE_FAST_GET(trie, dataAccess, c) dataAccess(trie, _UCPTRIE_CP_INDEX(trie, 0xffff, c)) macro
/external/icu/icu4c/source/common/
Dnormalizer2impl.h267 return U_IS_LEAD(c) ? INERT : UCPTRIE_FAST_GET(normTrie, UCPTRIE_16, c); in getNorm16()
269 uint16_t getRawNorm16(UChar32 c) const { return UCPTRIE_FAST_GET(normTrie, UCPTRIE_16, c); } in getRawNorm16()