HomeSort by relevance Sort by last modified time
    Searched defs:byteBuf (Results 1 - 14 of 14) sorted by null

  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
MacSpiTest.java 96 ByteBuffer byteBuf = ByteBuffer.allocate(10);
97 byteBuf.put(bbb);
98 byteBuf.position(5);
99 int beforeUp = byteBuf.remaining();
100 mSpi1.engineUpdate(byteBuf);
115 byteBuf = ByteBuffer.allocate(5);
116 byteBuf.put(bbuf);
117 byteBuf.position(5);
118 if (!byteBuf.hasRemaining()) {
119 mSpi2.engineUpdate(byteBuf);
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/texture/plugins/
AWTLoader.java 70 DataBufferByte byteBuf = (DataBufferByte) buf;
71 return byteBuf.getData();
  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanel.java 30 private ByteBuffer byteBuf;
126 byteBuf.clear();
127 rm.getRenderer().readFrameBuffer(fb, byteBuf);
139 byteBuf.clear();
140 rm.getRenderer().readFrameBuffer(fb, byteBuf);
207 byteBuf = BufferUtils.ensureLargeEnough(byteBuf, width * height * 4);
208 intBuf = byteBuf.asIntBuffer();
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
MacSpiTest.java 198 ByteBuffer byteBuf = ByteBuffer.allocate(10);
199 byteBuf.put(bbb);
200 byteBuf.position(5);
201 int beforeUp = byteBuf.remaining();
202 mSpi1.engineUpdate(byteBuf);
217 byteBuf = ByteBuffer.allocate(5);
218 byteBuf.put(bbuf);
219 byteBuf.position(5);
220 if (!byteBuf.hasRemaining()) {
221 mSpi2.engineUpdate(byteBuf);
    [all...]
MacTest.java 684 ByteBuffer byteBuf;
688 byteBuf = ByteBuffer.allocate(5);
689 byteBuf.put(bbuf);
690 byteBuf.position(2);
692 macs[i].update(byteBuf);
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
MacTest.java 656 ByteBuffer byteBuf;
660 byteBuf = ByteBuffer.allocate(5);
661 byteBuf.put(bbuf);
662 byteBuf.position(2);
664 macs[i].update(byteBuf);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
HttpZipLocator.java 67 private static final ByteBuffer byteBuf = ByteBuffer.allocate(250);
130 int toRead = Math.min(len - read, byteBuf.capacity());
132 boolean endOfInput = toRead < byteBuf.capacity();
134 // read 'toRead' bytes into byteBuf
135 byteBuf.put(b, off + read, toRead);
139 byteBuf.flip();
141 // decode data in byteBuf
142 CoderResult result = utf8Decoder.decode(byteBuf, charBuf, endOfInput);
159 byteBuf.clear();
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java 128 ByteBuffer byteBuf = ByteBuffer.allocate(pixSize);
129 assertEquals(0, byteBuf.position());
130 mBitmap.copyPixelsToBuffer(byteBuf);
131 assertEquals(pixSize, byteBuf.position());
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
ChannelsTest.java 116 ByteBuffer byteBuf = ByteBuffer.allocate(this.testNum);
122 readres = rbChannel.read(byteBuf);
131 ByteBuffer byteBuf = ByteBuffer.allocate(this.testNum);
145 readres = rbChannel.read(byteBuf);
159 ByteBuffer byteBuf = ByteBuffer.allocate(bufSize);
174 readres = rbChannel.read(byteBuf);
SocketChannelTest.java 165 java.nio.ByteBuffer[] byteBuf = null;
173 this.channel1.read(byteBuf);
178 byteBuf = new java.nio.ByteBuffer[CAPACITY_NORMAL];
180 this.channel1.read(byteBuf);
186 readNum = testMSChannel.read(byteBuf);
189 readNum = testMSChannelnull.read(byteBuf);
200 java.nio.ByteBuffer[] byteBuf = null;
205 this.channel1.read(byteBuf);
211 testMSChannel.read(byteBuf);
217 testMSChannelnull.read(byteBuf);
    [all...]
  /prebuilts/devtools/tools/lib/
jobb.jar 
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 286 milliseconds