Lines Matching defs:dst
58 private void put(char c, ByteBuffer dst) {
60 dst.put((byte)(c >> 8));
61 dst.put((byte)(c & 0xff));
63 dst.put((byte)(c & 0xff));
64 dst.put((byte)(c >> 8));
70 protected CoderResult encodeLoop(CharBuffer src, ByteBuffer dst) {
74 if (dst.remaining() < 2)
76 put(BYTE_ORDER_MARK, dst);
83 if (dst.remaining() < 2)
86 put(c, dst);
92 if (dst.remaining() < 4)
95 put(Character.highSurrogate(d), dst);
96 put(Character.lowSurrogate(d), dst);