OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shortBuf
(Results
1 - 5
of
5
) sorted by null
/art/test/070-nio-buffer/src/
Main.java
44
ShortBuffer
shortBuf
= directBuf.asShortBuffer();
53
shortBuf
.position(0);
54
shortBuf
.put(myShorts, 0, 32); // should work
55
shortBuf
.position(0);
56
shortBuf
.put(myShorts, 16, 16); // should work
57
shortBuf
.put(myShorts, 16, 16); // advance to end
60
shortBuf
.put(myShorts, 0, 1); // should fail
67
shortBuf
.position(0);
68
shortBuf
.put(myShorts, 0, 33); // should fail
75
shortBuf
.position(16)
[
all
...]
/dalvik/tests/070-nio-buffer/src/
Main.java
44
ShortBuffer
shortBuf
= directBuf.asShortBuffer();
53
shortBuf
.position(0);
54
shortBuf
.put(myShorts, 0, 32); // should work
55
shortBuf
.position(0);
56
shortBuf
.put(myShorts, 16, 16); // should work
57
shortBuf
.put(myShorts, 16, 16); // advance to end
60
shortBuf
.put(myShorts, 0, 1); // should fail
67
shortBuf
.position(0);
68
shortBuf
.put(myShorts, 0, 33); // should fail
75
shortBuf
.position(16)
[
all
...]
/external/jmonkeyengine/engine/src/desktop/com/jme3/texture/plugins/
AWTLoader.java
73
DataBufferUShort
shortBuf
= (DataBufferUShort) buf;
74
return
shortBuf
.getData();
/cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java
146
ShortBuffer
shortBuf
= ShortBuffer.allocate(pixSize);
147
assertEquals(0,
shortBuf
.position());
148
mBitmap.copyPixelsToBuffer(
shortBuf
);
149
assertEquals(pixSize >> 1,
shortBuf
.position());
/frameworks/base/core/java/android/net/dhcp/
DhcpPacket.java
383
ShortBuffer
shortBuf
= buf.asShortBuffer();
389
shortBuf
.get(shortArray);
Completed in 121 milliseconds