HomeSort by relevance Sort by last modified time
    Searched refs:bytesPerAtom (Results 1 - 5 of 5) sorted by null

  /libcore/ojluni/src/main/java/sun/misc/
CharacterDecoder.java 64 * <DD>bytesPerAtom which tells the decoder how many bytes to
91 abstract protected int bytesPerAtom();
123 * method how many bytes are required. This is always <= bytesPerAtom().
162 for (i = 0; (i+bytesPerAtom()) < length; i += bytesPerAtom()) {
163 decodeAtom(ps, bStream, bytesPerAtom());
164 totalBytes += bytesPerAtom();
166 if ((i + bytesPerAtom()) == length) {
167 decodeAtom(ps, bStream, bytesPerAtom());
168 totalBytes += bytesPerAtom();
    [all...]
CharacterEncoder.java 60 * <DD>bytesPerAtom which tells the encoder how many bytes to
82 abstract protected int bytesPerAtom();
155 for (j = 0; j < numBytes; j += bytesPerAtom()) {
157 if ((j + bytesPerAtom()) <= numBytes) {
158 encodeAtom(outStream, tmpbuffer, j, bytesPerAtom());
290 for (j = 0; j < numBytes; j += bytesPerAtom()) {
291 if ((j + bytesPerAtom()) <= numBytes) {
292 encodeAtom(outStream, tmpbuffer, j, bytesPerAtom());
BASE64Decoder.java 64 protected int bytesPerAtom() {
BASE64Encoder.java 50 protected int bytesPerAtom() {
HexDumpEncoder.java 70 protected int bytesPerAtom() {

Completed in 80 milliseconds