Home | History | Annotate | Download | only in intltest

Lines Matching defs:cp

199             UChar32 cp = 0;
202 cp = (cp * 16) + (*p - 0x30);
204 cp = (cp * 16) + (*p - 0x61) + 10;
206 cp = (cp * 16) + (*p - 0x41) + 10;
211 if (U_IS_BMP(cp)){
212 *bufBase++ = cp;
214 *bufBase++ = U16_LEAD(cp);
215 *bufBase++ = U16_TRAIL(cp);