Home | History | Annotate | Download | only in intltest

Lines Matching defs:cp

200             UChar32 cp = 0;
203 cp = (cp * 16) + (*p - 0x30);
205 cp = (cp * 16) + (*p - 0x61) + 10;
207 cp = (cp * 16) + (*p - 0x41) + 10;
212 if (U_IS_BMP(cp)){
213 *bufBase++ = cp;
215 *bufBase++ = U16_LEAD(cp);
216 *bufBase++ = U16_TRAIL(cp);