Lines Matching full:c32
205 * if((c32)<=0xd7ff) { (result)=_UTRIE_GET_RAW(trie, data, 0, c32); }
207 #define _UTRIE_GET(trie, data, c32, result, resultType) \
208 if((uint32_t)(c32)<=0xffff) { \
210 (result)=_UTRIE_GET_FROM_BMP(trie, data, c32); \
211 } else if((uint32_t)(c32)<=0x10ffff) { \
213 UChar __lead16=UTF16_LEAD(c32); \
214 _UTRIE_GET_FROM_PAIR(trie, data, __lead16, c32, result, resultType); \
332 * @param c32 (UChar32, in) the input code point
335 #define UTRIE_GET16(trie, c32, result) _UTRIE_GET(trie, index, c32, result, uint16_t)
343 * @param c32 (UChar32, in) the input code point
346 #define UTRIE_GET32(trie, c32, result) _UTRIE_GET(trie, data32, c32, result, uint32_t)