OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bytebuf
(Results
1 - 25
of
508
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/gconv/
EUC-KR.so
GBGBK.so
ISO8859-1.so
ISO_11548-1.so
ISO_2033.so
ISO_5428.so
TSCII.so
UNICODE.so
UTF-16.so
UTF-32.so
EUC-CN.so
EUC-JISX0213.so
EUC-JP.so
JOHAB.so
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/gconv/
EUC-KR.so
GBGBK.so
ISO8859-1.so
ISO_11548-1.so
ISO_2033.so
ISO_5428.so
TSCII.so
UNICODE.so
UTF-16.so
UTF-32.so
/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
...]
Completed in 122 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>