Searched defs:bytesPerAtom (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DBASE64Decoder.java64 protected int bytesPerAtom() { method in class:BASE64Decoder
H A DBASE64Encoder.java50 protected int bytesPerAtom() { method in class:BASE64Encoder
H A DUUDecoder.java102 protected int bytesPerAtom() { method in class:UUDecoder
H A DHexDumpEncoder.java70 protected int bytesPerAtom() { method in class:HexDumpEncoder
H A DUCDecoder.java88 protected int bytesPerAtom() { method in class:UCDecoder
H A DUCEncoder.java79 protected int bytesPerAtom() { method in class:UCEncoder
H A DUUEncoder.java121 protected int bytesPerAtom() { method in class:UUEncoder
H A DCharacterDecoder.java64 * <DD>bytesPerAtom which tells the decoder how many bytes to
91 abstract protected int bytesPerAtom(); method in class:CharacterDecoder
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...]
H A DCharacterEncoder.java60 * <DD>bytesPerAtom which tells the encoder how many bytes to
82 abstract protected int bytesPerAtom(); method in class:CharacterEncoder
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());

Completed in 35 milliseconds