Home | History | Annotate | Download | only in icu

Lines Matching full:uint32

24 typedef uint32 UChar32;
58 ((uint32)(c)<=0xfdef || ((c)&0xfffe)==0xfffe) && \
59 (uint32)(c)<=0x10ffff)
79 ((uint32)(c)<0xd800 || \
80 ((uint32)(c)>0xdfff && \
81 (uint32)(c)<=0x10ffff && \
151 ((uint32)(c)<=0x7f ? 1 : \
152 ((uint32)(c)<=0x7ff ? 2 : \
153 ((uint32)(c)<=0xd7ff ? 3 : \
154 ((uint32)(c)<=0xdfff || (uint32)(c)>0x10ffff ? 0 : \
155 ((uint32)(c)<=0xffff ? 3 : 4)\
217 if((uint32)(c)<=0x7f) { \
220 if((uint32)(c)<=0x7ff) { \
223 if((uint32)(c)<=0xffff) { \
325 #define CBU16_LENGTH(c) ((uint32)(c)<=0xffff ? 1 : 2)
378 if((uint32)(c)<=0xffff) { \