HomeSort by relevance Sort by last modified time
    Searched defs:bout (Results 1 - 25 of 37) sorted by null

1 2

  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidSerializationTest.java 35 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
36 ObjectOutputStream oout = new ObjectOutputStream(bout);
40 ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
OldOutputStreamWriterTest.java 203 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
205 OutputStreamWriter writer = new OutputStreamWriter(bout,
210 String converted = new String(bout.toByteArray(), "ISO8859_1");
214 bout.reset();
215 writer = new OutputStreamWriter(bout, "ISO2022JP");
220 converted = new String(bout.toByteArray(), "ISO8859_1");
224 converted = new String(bout.toByteArray(), "ISO8859_1");
228 bout.reset();
229 writer = new OutputStreamWriter(bout, "ISO2022JP");
236 new String(bout.toByteArray(), "ISO8859_1"))
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PictureTest.java 40 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
53 picture.writeToStream(bout);
54 picture = Picture.createFromStream(new ByteArrayInputStream(bout.toByteArray()));
  /external/chromium_org/third_party/openssl/openssl/crypto/dh/
dhtest.c 103 int i,alen,blen,aout,bout,ret=1; local
180 bout=DH_compute_key(bbuf,a->pub_key,b);
183 for (i=0; i<bout; i++)
189 if ((aout < 4) || (bout != aout) || (memcmp(abuf,bbuf,aout) != 0))
  /external/openssl/crypto/dh/
dhtest.c 103 int i,alen,blen,aout,bout,ret=1; local
180 bout=DH_compute_key(bbuf,a->pub_key,b);
183 for (i=0; i<bout; i++)
189 if ((aout < 4) || (bout != aout) || (memcmp(abuf,bbuf,aout) != 0))
  /external/chromium_org/third_party/openssl/openssl/crypto/ecdh/
ecdhtest.c 131 int i,alen,blen,aout,bout,ret=0; local
228 bout=ECDH_compute_key(bbuf,blen,EC_KEY_get0_public_key(a),b,KDF1_SHA1);
232 for (i=0; i<bout; i++)
243 if ((aout < 4) || (bout != aout) || (memcmp(abuf,bbuf,aout) != 0))
265 for (i=0; i<bout; i++)
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestPhysicsReadWrite.java 123 ByteArrayOutputStream bout=new ByteArrayOutputStream(); local
124 BinaryExporter.getInstance().save(physicsRootNode, bout);
126 ByteArrayInputStream bin=new ByteArrayInputStream(bout.toByteArray());
  /external/libvorbis/examples/
decoder_example.c 242 int bout=(samples<convsize?samples:convsize); local
249 for(j=0;j<bout;j++){
273 fwrite(convbuffer,2*vi.channels,bout,stdout);
275 vorbis_synthesis_read(&vd,bout); /* tell libvorbis how
  /external/libvorbis/test/
write_read.c 261 int bout = samples < count ? samples : count; local
262 bout = read_total + bout > count ? count - read_total : bout;
264 memcpy (data + read_total, pcm[0], bout * sizeof (float)) ;
266 vorbis_synthesis_read (&vd,bout);
267 read_total += bout ;
  /external/openssl/crypto/ecdh/
ecdhtest.c 131 int i,alen,blen,aout,bout,ret=0; local
228 bout=ECDH_compute_key(bbuf,blen,EC_KEY_get0_public_key(a),b,KDF1_SHA1);
232 for (i=0; i<bout; i++)
243 if ((aout < 4) || (bout != aout) || (memcmp(abuf,bbuf,aout) != 0))
265 for (i=0; i<bout; i++)
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpTests.java 66 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
95 bout.reset();
99 bout.write(c);
104 String result = new String(bout.toByteArray(), "ISO8859_1");
151 bout.reset();
155 bout.write(c);
160 String result = new String(bout.toByteArray(), "ISO8859_1");
177 bout.reset();
181 bout.write(c);
186 String result = new String(bout.toByteArray(), "ISO8859_1")
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/
ClassDef.java 272 final ByteArrayOStream bout = new ByteArrayOStream (1024); // TODO: reuse these local
273 final DataOutputStream dout = new DataOutputStream (bout);
450 byte [] dump = bout.copyByteArray ();
459 md.update (bout.getByteArray (), 0, bout.size ());
  /external/javassist/src/main/javassist/
SerialVersionUID.java 77 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
78 DataOutputStream out = new DataOutputStream(bout);
188 byte[] digested = digest.digest(bout.toByteArray());
  /external/jmonkeyengine/engine/src/test/jme3test/export/
TestAssetLinkNode.java 79 ByteArrayOutputStream bout=new ByteArrayOutputStream(); local
80 BinaryExporter.getInstance().save(loaderNode, bout);
82 ByteArrayInputStream bin=new ByteArrayInputStream(bout.toByteArray());
  /external/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java 332 private final ByteArrayOutputStream bout; field in class:ByteString.Output
337 private Output(final ByteArrayOutputStream bout) {
338 super(bout);
339 this.bout = bout;
346 final byte[] byteArray = bout.toByteArray();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
OutputStreamWriterTest.java 580 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
582 OutputStreamWriter writer = new OutputStreamWriter(bout,
587 String converted = new String(bout.toByteArray(), "ISO8859_1");
591 bout.reset();
592 writer = new OutputStreamWriter(bout, "ISO2022JP");
597 converted = new String(bout.toByteArray(), "ISO8859_1");
601 converted = new String(bout.toByteArray(), "ISO8859_1");
605 bout.reset();
606 writer = new OutputStreamWriter(bout, "ISO2022JP");
612 new String(bout.toByteArray(), "ISO8859_1"))
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
GZIPInputStreamTest.java 170 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
171 GZIPOutputStream out = new GZIPOutputStream(bout);
174 byte[] comp = bout.toByteArray();
  /external/jmdns/src/javax/jmdns/impl/
DNSEntry.java 235 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
236 DataOutputStream dout = new DataOutputStream(bout);
239 return bout.toByteArray();
  /cts/tests/tests/util/src/android/util/cts/
XmlTest.java 187 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
188 DataOutputStream dout = new DataOutputStream(bout);
202 bout.toByteArray())));
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
ProviderTest.java 587 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
588 PrintStream ps = new PrintStream(bout);
593 return bout.toByteArray();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-swing.jar 
  /external/javassist/src/main/javassist/bytecode/
ConstPool.java 1145 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
VertexBuffer.java 807 ByteBuffer bout = (ByteBuffer) outVb.data; local
809 bout.position(outPos).limit(outPos + elementSz * len);
810 bout.put(bin);
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PropertiesTest.java 1223 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
1234 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
1252 ByteArrayOutputStream bout = new ByteArrayOutputStream(); local
    [all...]
  /prebuilts/tools/common/m2/internal/xom/xom/1.0/
xom-1.0.jar 

Completed in 713 milliseconds

1 2