Searched refs:m_outputBytes (Results 1 – 1 of 1) sorted by relevance
61 private final byte m_outputBytes[]; field in WriterToUTF8Buffered86 m_outputBytes = new byte[BYTES_MAX + 3]; in WriterToUTF8Buffered()143 m_outputBytes[count++] = (byte) (c); in write()147 m_outputBytes[count++] = (byte) (0xc0 + (c >> 6)); in write()148 m_outputBytes[count++] = (byte) (0x80 + (c & 0x3f)); in write()152 m_outputBytes[count++] = (byte) (0xe0 + (c >> 12)); in write()153 m_outputBytes[count++] = (byte) (0x80 + ((c >> 6) & 0x3f)); in write()154 m_outputBytes[count++] = (byte) (0x80 + (c & 0x3f)); in write()158 m_outputBytes[count++] = (byte) (0xf0 + (c >> 18)); in write()159 m_outputBytes[count++] = (byte) (0x80 + ((c >> 12) & 0x3f)); in write()[all …]