Searched refs:myByte (Results 1 – 2 of 2) sorted by relevance
607 uint8_t myByte; in ucnv_getNextUChar_UTF8() local622 myByte = (uint8_t)*(source++); in ucnv_getNextUChar_UTF8()623 if (myByte < 0x80) in ucnv_getNextUChar_UTF8()626 return (UChar32)myByte; in ucnv_getNextUChar_UTF8()629 extraBytesToWrite = (uint16_t)bytesFromUTF8[myByte]; in ucnv_getNextUChar_UTF8()631 cnv->toUBytes[0] = myByte; in ucnv_getNextUChar_UTF8()642 cnv->toUBytes[0] = myByte; in ucnv_getNextUChar_UTF8()646 if(U8_IS_TRAIL(myByte = *source)) { in ucnv_getNextUChar_UTF8()647 cnv->toUBytes[i++] = myByte; in ucnv_getNextUChar_UTF8()661 ch = myByte << 6; in ucnv_getNextUChar_UTF8()[all …]
133 byte myByte[] = new byte[1];134 mySecureRandom.nextBytes(myByte);135 offset = myByte[0] & 037;