Home
last modified time | relevance | path

Searched refs:myByte (Results 1 – 2 of 2) sorted by relevance

/external/icu4c/common/
Ducnv_u8.c607 uint8_t myByte; in ucnv_getNextUChar_UTF8() local
622 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 …]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
DSHA1withDSA_SignatureTest.java133 byte myByte[] = new byte[1];
134 mySecureRandom.nextBytes(myByte);
135 offset = myByte[0] & 037;