Home | History | Annotate | Download | only in jutf7

Lines Matching refs:out

20  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 

102 * @param out The output byte buffer
105 protected CoderResult implFlush(ByteBuffer out) {
107 if (out.remaining() < 2)
110 out.put(base64.getChar(sextet));
111 out.put(unshift);
141 * @param out The output byte buffer
144 protected CoderResult encodeLoop(CharBuffer in, ByteBuffer out) {
146 if (out.remaining() < 4)
150 unshift(out, ch);
151 out.put((byte)ch);
153 out.put(shift);
154 out.put(unshift);
156 encodeBase64(ch, out);
165 && out.limit() != MAX_BYTES_PER_CHAR * in.limit())
177 * @param out
180 private void unshift(ByteBuffer out, char ch) {
184 out.put(base64.getChar(sextet));
186 out.put(unshift);
200 * @param out
203 private void encodeBase64(char ch, ByteBuffer out) {
205 out.put(shift);
212 out.put(base64.getChar(sextet));