Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/libcore/io/
DBase64.java52 int byteTripletAsInt = in[i] & 0xff; in encode() local
55 byteTripletAsInt <<= 8; in encode()
56 byteTripletAsInt |= in[i + 1] & 0xff; in encode()
58 byteTripletAsInt <<= 8; in encode()
59 byteTripletAsInt |= in[i + 2] & 0xff; in encode()
62 byteTripletAsInt <<= 2; in encode()
66 byteTripletAsInt <<= 4; in encode()
72 (byteTripletAsInt & FIRST_OUTPUT_BYTE_MASK) >>> 18]; in encode()
77 (byteTripletAsInt & SECOND_OUTPUT_BYTE_MASK) >>> 12]; in encode()
80 (byteTripletAsInt & THIRD_OUTPUT_BYTE_MASK) >>> 6]; in encode()
[all …]