/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/ |
isacfix_unittest.cc | 77 int32_t out[kSamples] = {-1040, -1035, -22875, -1397, -27604, 20018, 7917, local 81 int32_t out[kSamples] = {-1040, -1035, -22875, -1397, -27604, 20017, 7915, local 94 EXPECT_EQ(out[i], in[i]);
|
/external/wpa_supplicant_8/src/utils/ |
base64.c | 32 unsigned char *out, *pos; local 42 out = os_malloc(olen); 43 if (out == NULL) 48 pos = out; 82 *out_len = pos - out; 83 return out; 100 unsigned char dtable[256], *out, *pos, block[4], tmp; local 119 pos = out = os_malloc(olen); 120 if (out == NULL) 145 os_free(out); [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPSerializerHelper.java | 34 * @param out the output stream to serialize to 38 public static void serialize(XMPMetaImpl xmp, OutputStream out, 49 new XMPSerializerRDF().serialize(xmp, out, options); 71 ByteArrayOutputStream out = new ByteArrayOutputStream(2048); local 72 serialize(xmp, out, options); 76 return out.toString(options.getEncoding()); 82 return out.toString(); 98 ByteArrayOutputStream out = new ByteArrayOutputStream(2048); local 99 serialize(xmp, out, options); 100 return out.toByteArray() [all...] |
/external/zlib/src/examples/ |
zpipe.c | 42 unsigned char out[CHUNK]; local 66 strm.next_out = out; 70 if (fwrite(out, 1, have, dest) != have || ferror(dest)) { 98 unsigned char out[CHUNK]; local 124 strm.next_out = out; 136 if (fwrite(out, 1, have, dest) != have || ferror(dest)) { 168 fputs("out of memory\n", stderr);
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
sad_halfpel_inline.h | 83 register int32 out; local 92 : "=&r"(out), 97 return out; 103 register int32 out; local 112 : "=&r"(out), 117 return out;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_stream.c | 75 u32 out; local 80 out = h264bsdShowBits32(pStrmData) >> (32 - numBits); 84 return(out); 119 u32 out; local 137 out = ((u32)pStrm[0] << 24) | ((u32)pStrm[1] << 16) | 144 out <<= bitPosInWord; 145 out |= byte>>tmp; 147 return (out); 153 out = (u32)(*pStrm++) << shift; 158 out |= (u32)(*pStrm++) << shift [all...] |
/frameworks/base/core/java/android/net/ |
NetworkState.java | 62 public void writeToParcel(Parcel out, int flags) { 63 out.writeParcelable(networkInfo, flags); 64 out.writeParcelable(linkProperties, flags); 65 out.writeParcelable(networkCapabilities, flags); 66 out.writeParcelable(network, flags); 67 out.writeString(subscriberId); 68 out.writeString(networkId);
|
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/ |
BitmapFactoryTest.java | 35 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 36 bitmap1.compress(Bitmap.CompressFormat.PNG, 100, out); 37 ParcelFileDescriptor pfd = ParcelFileDescriptor.fromData(out.toByteArray(), null);
|
/frameworks/base/media/jni/ |
android_media_ResampleInputStream.cpp | 93 short out[BUF_SIZE]; local 101 out[i] = (short)(sum >> 16); 105 env->SetByteArrayRegion(jOut, jOutOffset, jNpoints * 2, (jbyte*)out);
|
/frameworks/base/tools/preload/ |
PrintHtmlDiff.java | 71 PrintStream out = System.out; local 73 out.println("<html><body>"); 74 out.println("<style>"); 75 out.println("a, th, td, h2 { font-family: arial }"); 76 out.println("th, td { font-size: small }"); 77 out.println("</style>"); 78 out.println("<script src=\"sorttable.js\"></script>"); 79 out.println("<p><a href=\"#removed\">Removed</a>"); 80 out.println("<a name=\"added\"/><h2>Added</h2>") [all...] |
/frameworks/base/wifi/java/android/net/wifi/ |
ScanSettings.java | 61 public void writeToParcel(Parcel out, int flags) { 62 out.writeInt(channelSet == null ? 0 : channelSet.size()); 64 for (WifiChannel channel : channelSet) channel.writeToParcel(out, flags);
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
BinaryHprofWriter.java | 42 private final DataOutputStream out; field in class:BinaryHprofWriter 53 this.out = new DataOutputStream(outputStream); 75 out.flush(); 80 out.writeBytes(BinaryHprof.MAGIC + "1.0.2"); 81 out.writeByte(0); // null terminated string 82 out.writeInt(BinaryHprof.ID_SIZE); 83 out.writeLong(dumpTimeInMilliseconds); 94 out.writeInt(flags); 95 out.writeShort((short) depth); 117 out.writeInt(e.threadId) [all...] |
/libcore/dex/src/main/java/com/android/dex/ |
EncodedValueCodec.java | 30 * Writes a signed integral to {@code out}. 32 public static void writeSignedIntegralValue(ByteOutput out, int type, long value) { 34 * Figure out how many bits are needed to represent the value, 51 out.writeByte(type | ((requiredBytes - 1) << 5)); 55 out.writeByte((byte) value); 62 * Writes an unsigned integral to {@code out}. 64 public static void writeUnsignedIntegralValue(ByteOutput out, int type, long value) { 65 // Figure out how many bits are needed to represent the value. 78 out.writeByte(type | ((requiredBytes - 1) << 5)); 82 out.writeByte((byte) value) [all...] |
/libcore/luni/src/main/java/java/security/ |
DigestOutputStream.java | 87 out.write(b); 110 out.write(b, off, len);
|
/libcore/luni/src/main/java/java/util/zip/ |
CheckedOutputStream.java | 68 out.write(val); 88 out.write(buf, off, nbytes);
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Boolean.java | 84 public void encodeContent(BerOutputStream out) { 85 out.encodeBoolean(); 88 public void setEncodingContent(BerOutputStream out) { 89 out.length = 1;
|
ASN1Enumerated.java | 81 public void encodeContent(BerOutputStream out) { 82 out.encodeInteger(); 85 public void setEncodingContent(BerOutputStream out) { 86 out.length = ((byte[]) out.content).length;
|
ASN1OctetString.java | 79 @Override public void encodeContent(BerOutputStream out) { 80 out.encodeOctetString(); 83 @Override public void setEncodingContent(BerOutputStream out) { 84 out.length = ((byte[]) out.content).length;
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldPipedOutputStreamTest.java | 33 public PReader(PipedOutputStream out) { 35 reader = new PipedInputStream(out); 37 System.out.println("Exception setting up reader: " 66 System.out.println("Exception reading (" 83 PipedOutputStream out; field in class:OldPipedOutputStreamTest 86 out = new PipedOutputStream(); 87 assertNotNull(out); 89 out.close(); 99 out = new PipedOutputStream(new PipedInputStream()); 100 out.write('b') [all...] |
/libcore/luni/src/test/java/libcore/java/lang/annotation/ |
AnnotationTypeMismatchExceptionTest.java | 37 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 41 new ObjectOutputStream(out).writeObject(original);
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
OldAndroidZipFileTest.java | 78 ZipOutputStream out = new ZipOutputStream(bytesOut); local 89 out.putNextEntry(newEntry); 90 out.write(input, 0, input.length); 91 out.closeEntry(); 94 out.setComment("This is a lovely compressed archive!"); 96 out.close(); 105 // System.out.println("Contents of " + zipFile + ":"); 108 // System.out.println(" " + entry.getName());
|
ZipEntryTest.java | 59 ZipOutputStream out = new ZipOutputStream(new FileOutputStream(f)); local 61 out.putNextEntry(new ZipEntry(filename)); 62 out.closeEntry(); // Empty files are fine. 64 out.close(); 108 ZipOutputStream out = createZipOutputStream(f); local 109 out.putNextEntry(new ZipEntry(maxLengthName)); 110 out.closeEntry(); 111 out.close(); 133 ZipOutputStream out = createZipOutputStream(f); local 136 out.putNextEntry(ze) 160 ZipOutputStream out = createZipOutputStream(f); local 178 ZipOutputStream out = createZipOutputStream(f); local [all...] |
/libcore/support/src/test/java/tests/support/resource/ |
Support_Resources.java | 133 FileOutputStream out = new FileOutputStream(dest); local 134 copy(in, out); 135 out.close(); 141 private static int copy(InputStream in, OutputStream out) throws IOException { 147 out.write(buffer, 0, c); 185 File f = File.createTempFile("out", ".xml"); 187 FileOutputStream out = new FileOutputStream(f); local 192 out.write(b); 194 out.flush(); 195 out.close() 202 FileOutputStream out = new FileOutputStream(dest); local [all...] |
/ndk/tests/abcc/src/compiler/abcc/ |
AbccService.java | 184 OutputStream out = null; local 187 out = new FileOutputStream(out_dir + "/" + filename); 188 copyFile(in, out); 191 out.flush(); 192 out.close(); 193 out = null; 206 private void copyFile(InputStream in, OutputStream out) throws IOException { 210 out.write(buffer, 0, read);
|
/packages/apps/Email/src/com/android/email/mail/internet/ |
EmailHtmlUtil.java | 39 StringBuilder out = new StringBuilder(); local 43 out.append(text.substring(end, start)); 49 out.append(" "); 51 out.append(' '); 53 out.append("<br>"); 55 out.append("<"); 57 out.append(">"); 59 out.append("&"); 62 out.append(text.substring(end)); 63 text = out.toString() [all...] |