OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:shortbuf
(Results
1 - 4
of
4
) sorted by null
/dalvik/tests/070-nio-buffer/src/
Main.java
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)
[
all
...]
/external/openssl/crypto/des/
enc_writ.c
91
unsigned char
shortbuf
[8];
local
131
cp=
shortbuf
;
132
memcpy(
shortbuf
,buf,len);
133
RAND_pseudo_bytes(
shortbuf
+len, 8-len);
/cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java
165
ShortBuffer
shortBuf
= ShortBuffer.allocate(BUFFER_SIZE);
166
assertEquals(0,
shortBuf
.position());
167
mBitmap.copyPixelsToBuffer(
shortBuf
);
168
assertEquals(pixSize >> 1,
shortBuf
.position());
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/
ShortBufferTest.java
693
ShortBuffer
shortBuf
= buf.asShortBuffer();
695
shortBuf
.put(src);
696
shortBuf
.clear();
698
shortBuf
.put(src);
Completed in 23 milliseconds