Home
last modified time | relevance | path

Searched refs:ibuffer (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/javax/crypto/
DCipherOutputStream.java72 private byte[] ibuffer = new byte[1]; field in CipherOutputStream
117 ibuffer[0] = (byte) b; in write()
118 obuffer = cipher.update(ibuffer, 0, 1); in write()
DCipherInputStream.java77 private byte[] ibuffer = new byte[512]; field in CipherInputStream
103 int readin = input.read(ibuffer); in getMoreData()
120 obuffer = cipher.update(ibuffer, 0, readin); in getMoreData()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
DMappedByteBufferTest.java59 IntBuffer ibuffer = mmb.asIntBuffer(); in testasIntBuffer() local
61 int val = ibuffer.get(); in testasIntBuffer()