Searched refs:bytesPerAtom (Results 1 - 2 of 2) sorted by relevance

/opensolaris-onvv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/encoding/
H A DUCDecoder.java43 protected int bytesPerAtom() method in class:UCDecoder
161 for (i = 0; i + bytesPerAtom() < length;
162 i += bytesPerAtom())
164 decodeAtom(aStream, bStream, bytesPerAtom());
165 totalBytes += bytesPerAtom();
168 if (i + bytesPerAtom() == length)
170 decodeAtom(aStream, bStream, bytesPerAtom());
171 totalBytes += bytesPerAtom();
H A DUCEncoder.java43 protected int bytesPerAtom() method in class:UCEncoder
123 for (int j = 0; j < numBytes; j += bytesPerAtom())
124 if (j + bytesPerAtom() <= numBytes)
125 encodeAtom(outStream, tmpbuffer, j, bytesPerAtom());

Completed in 42 milliseconds