Searched refs:out (Results 251 - 275 of 484) sorted by relevance

<<11121314151617181920

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s29 ; * [out]predQP quantization parameter of the predictor block
30 ; * [out]predDir indicates the prediction direction which takes one
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s29 ; * [out]predQP quantization parameter of the predictor block
30 ; * [out]predDir indicates the prediction direction which takes one
/frameworks/base/core/java/android/accounts/
H A DAccountAuthenticatorCache.java81 public void writeAsXml(AuthenticatorDescription item, XmlSerializer out) argument
83 out.attribute(null, "type", item.type);
/frameworks/base/core/java/android/hardware/usb/
H A DIUsbManager.aidl29 void getDeviceList(out Bundle devices);
/frameworks/base/core/java/com/android/internal/http/multipart/
H A DMultipartEntity.java189 public void writeTo(OutputStream out) throws IOException { argument
190 Part.sendParts(out, parts, getMultipartBoundary());
/frameworks/base/core/tests/coretests/src/android/net/
H A DLocalSocketTest.java64 FileDescriptor[] out = ls1.getAncillaryFileDescriptors();
66 assertEquals(1, out.length);
85 // Try various array-out-of-bound cases
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java107 boolean dumpMap(PrintWriter out, String titlePrefix, String title, argument
124 out.print(titlePrefix); out.println(title);
128 out.print(eprefix); out.print(e.getKey()); out.println(":");
132 dumpFilter(out, fprefix, filter);
135 printer = new PrintWriterPrinter(out);
144 public boolean dump(PrintWriter out, String title, String prefix, String packageName, argument
149 if (dumpMap(out, curPrefi
378 dumpFilter(PrintWriter out, String prefix, F filter) argument
[all...]
/frameworks/native/libs/gui/
H A DSurfaceTexture.cpp113 static void mtxMul(float out[16], const float a[16], const float b[16]);
885 static void mtxMul(float out[16], const float a[16], const float b[16]) { argument
886 out[0] = a[0]*b[0] + a[4]*b[1] + a[8]*b[2] + a[12]*b[3];
887 out[1] = a[1]*b[0] + a[5]*b[1] + a[9]*b[2] + a[13]*b[3];
888 out[2] = a[2]*b[0] + a[6]*b[1] + a[10]*b[2] + a[14]*b[3];
889 out[3] = a[3]*b[0] + a[7]*b[1] + a[11]*b[2] + a[15]*b[3];
891 out[4] = a[0]*b[4] + a[4]*b[5] + a[8]*b[6] + a[12]*b[7];
892 out[5] = a[1]*b[4] + a[5]*b[5] + a[9]*b[6] + a[13]*b[7];
893 out[6] = a[2]*b[4] + a[6]*b[5] + a[10]*b[6] + a[14]*b[7];
894 out[
[all...]
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java521 XmlSerializer out = new FastXmlSerializer();
522 out.setOutput(fos, "utf-8");
523 out.startDocument(null, true);
524 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
525 out.startTag(null, "services");
529 out.startTag(null, "service");
530 out.attribute(null, "uid", Integer.toString(service.getValue()));
531 mSerializerAndParser.writeAsXml(service.getKey(), out);
532 out.endTag(null, "service");
535 out
[all...]
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsCollection.java293 public void write(DataOutputStream out) throws IOException { argument
305 out.writeInt(FILE_MAGIC);
306 out.writeInt(VERSION_UNIFIED_INIT);
308 out.writeInt(keysByIdent.size());
311 ident.writeToStream(out);
313 out.writeInt(keys.size());
316 out.writeInt(key.uid);
317 out.writeInt(key.set);
318 out.writeInt(key.tag);
319 history.writeToStream(out);
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java296 public void writeToParcel(Parcel out, int flags) { argument
297 out.writeInt(TAG);
298 out.writeInt(this.viewId);
299 out.writeInt(this.emptyViewId);
746 public void writeToParcel(Parcel out, int flags) { argument
747 out.writeInt(TAG);
748 out.writeInt(this.viewId);
749 out.writeString(this.methodName);
1008 public void writeToParcel(Parcel out, int flags) { argument
1009 out
[all...]
/frameworks/av/media/libstagefright/codecs/g711/dec/
H A DSoftG711.cpp254 int16_t *out, const uint8_t *in, size_t inSize) {
274 *out++ = (x > 127) ? mant : -mant;
280 int16_t *out, const uint8_t *in, size_t inSize) {
293 *out++ = (x < 0x80) ? -abs : abs;
253 DecodeALaw( int16_t *out, const uint8_t *in, size_t inSize) argument
279 DecodeMLaw( int16_t *out, const uint8_t *in, size_t inSize) argument
/frameworks/base/core/java/android/content/
H A DIntentSender.java315 public void writeToParcel(Parcel out, int flags) { argument
316 out.writeStrongBinder(mTarget.asBinder());
337 * @param out Where to write the IntentSender.
340 Parcel out) {
341 out.writeStrongBinder(sender != null ? sender.mTarget.asBinder()
339 writeIntentSenderOrNullToParcel(IntentSender sender, Parcel out) argument
/frameworks/base/core/java/android/nfc/
H A DTag.java346 /*package*/ static void writeBytesWithNull(Parcel out, byte[] b) { argument
348 out.writeInt(-1);
351 out.writeInt(b.length);
352 out.writeByteArray(b);
/frameworks/base/core/java/android/os/
H A DBroadcaster.java144 * For debugging purposes, print the registrations to System.out
150 System.out.println("Broadcaster " + this + " {");
154 System.out.println(" senderWhat=" + r.senderWhat);
157 System.out.println(" [" + r.targetWhats[i]
163 System.out.println("}");
168 * Send out msg. Anyone who has registered via the request() method will be
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java68 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { argument
/frameworks/base/location/java/android/location/
H A DILocationManager.aidl55 in GeocoderParams params, out List<Address> addrs);
59 in GeocoderParams params, out List<Address> addrs);
/frameworks/base/services/tests/servicestests/src/com/android/server/net/
H A DNetworkStatsCollectionTest.java161 OutputStream out = null;
164 out = new FileOutputStream(file);
165 Streams.copy(in, out);
168 IoUtils.closeQuietly(out);
/frameworks/base/test-runner/src/junit/runner/
H A DTestCaseClassLoader.java143 ByteArrayOutputStream out= new ByteArrayOutputStream(1000);
147 out.write(b, 0, n);
149 out.close();
150 return out.toByteArray();
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A Dconvolve5x5.rs27 void root(uchar4 *out, uint32_t x, uint32_t y) {
71 *out = convert_uchar4(p0);
/frameworks/base/tools/preload/loadclass/
H A DLoadClass.java77 System.out.println(response.toString());
/frameworks/compile/libbcc/lib/Core/
H A DCompiler.cpp180 // FIXME: Figure out which passes (if any) makes sense for levels 1 and 2.
370 llvm::raw_ostream *out = pResult.dup(); local
371 if (out == NULL) {
376 enum Compiler::ErrorCode err = compile(pScript, *out);
379 delete out;
/frameworks/native/opengl/tools/glgen/src/
H A DGenerateGL.java26 static void copy(String filename, PrintStream out) throws IOException { argument
30 out.println(s);
52 System.out.println("Special-casing function " + fname);
93 System.out.println("useContextPointer = " + useContextPointer);
120 new PrintStream(new FileOutputStream("out/" + gl10Filename));
122 new PrintStream(new FileOutputStream("out/" + gl10ExtFilename));
124 new PrintStream(new FileOutputStream("out/" + gl11Filename));
126 new PrintStream(new FileOutputStream("out/" + gl11ExtFilename));
128 new PrintStream(new FileOutputStream("out/" + gl11ExtPackFilename));
130 new PrintStream(new FileOutputStream("out/"
[all...]
/frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
H A DDumpCommand.java73 System.out.println(
/frameworks/base/tests/CoreTests/android/core/
H A DTestEventHandler.java211 System.out.println("MAJOR = "+expectMajor+" MINOR = "+expectMinor+
239 System.out.println("Expected header name: " + h.name);
300 System.out.print(" Missing! ");
305 System.out.println("Expect value = null");
308 System.out.println("Expect value = " +
436 System.out.println("TestEventHandler: endData() stopping "+
487 System.out.println("TestEventHandler: endData() stopping "+

Completed in 8045 milliseconds

<<11121314151617181920