OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:wbytes
(Results
1 - 7
of
7
) sorted by null
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FilterOutputStreamTest.java
84
byte[]
wbytes
= new byte[fileString.length()];
85
bis.read(
wbytes
, 0, fileString.length());
87
wbytes
, 0,
wbytes
.length)));
101
byte[]
wbytes
= new byte[fileString.length()];
102
bis.read(
wbytes
, 0, fileString.length());
104
wbytes
, 0,
wbytes
.length)));
117
byte[]
wbytes
= new byte[1];
118
bis.read(
wbytes
, 0, 1)
[
all
...]
BufferedOutputStreamTest.java
143
byte[]
wbytes
= new byte[1013];
144
bais.read(
wbytes
, 0, 1013);
145
assertEquals("Incorrect bytes written", new String(
wbytes
, 0,
146
wbytes
.length), fileString.substring(0, 1013));
657
byte[]
wbytes
= new byte[1];
658
bais.read(
wbytes
, 0, 1);
659
assertEquals("Incorrect byte written", 't',
wbytes
[0]);
/libcore/luni/src/test/java/libcore/java/io/
OldBufferedOutputStreamTest.java
102
byte[]
wbytes
= new byte[1013];
103
bais.read(
wbytes
, 0, 1013);
106
new String(
wbytes
, 0,
wbytes
.length)));
166
byte[]
wbytes
= new byte[1];
167
bais.read(
wbytes
, 0, 1);
169
't',
wbytes
[0]);
OldFilterOutputStreamTest.java
106
byte[]
wbytes
= new byte[testLength];
107
bis.read(
wbytes
, 0, testLength);
109
fileString.equals(new String(
wbytes
)));
129
byte[]
wbytes
= new byte[testLength - 10];
130
bis.read(
wbytes
);
132
fileString.substring(10).equals(new String(
wbytes
)));
/external/skia/tests/
AAClipTest.cpp
26
size_t
wbytes
= a.fBounds.width();
local
29
wbytes
= (
wbytes
+ 7) >> 3;
35
wbytes
<<= 1;
39
wbytes
<<= 2;
50
if (memcmp(aptr, bptr,
wbytes
)) {
53
aptr +=
wbytes
;
54
bptr +=
wbytes
;
/external/qemu/audio/
esdaudio.c
169
int
wbytes
= wsamples << hw->info.shift;
local
170
if (
wbytes
!= written) {
173
wbytes
, written, hw->info.align + 1);
winaudio.c
283
//D("run_out: buffer:%d pos:%d size:%d wsamples:%d
wbytes
:%d live:%d rpos:%d hwsamples:%d\n", s->write_index,
543
D("%s: buffer:%d pos:%d size:%d wsamples:%d
wbytes
:%d live:%d wpos:%d hwsamples:%d\n",
Completed in 686 milliseconds