Lines Matching full:shortbuf
37 ShortBuffer shortBuf = directBuf.asShortBuffer();
46 shortBuf.position(0);
47 shortBuf.put(myShorts, 0, 32); // should work
48 shortBuf.position(0);
49 shortBuf.put(myShorts, 16, 16); // should work
50 shortBuf.put(myShorts, 16, 16); // advance to end
53 shortBuf.put(myShorts, 0, 1); // should fail
60 shortBuf.position(0);
61 shortBuf.put(myShorts, 0, 33); // should fail
68 shortBuf.position(16);
69 shortBuf.put(myShorts, 0, 17); // should fail