Searched refs:out (Results 26 - 50 of 484) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddct.cpp33 Output: out[64] ==> next block
38 Void BlockDCT_AANwSub(Short *out, UChar *cur, UChar *pred, Int width) argument
50 dst = out + 64 ;
52 out += 128;
158 while (dst < out);
160 out -= 64;
161 dst = out + 8;
166 k0 = out[0];
167 k1 = out[8];
168 k2 = out[1
267 Block4x4DCT_AANwSub(Short *out, UChar *cur, UChar *pred, Int width) argument
473 Block2x2DCT_AANwSub(Short *out, UChar *cur, UChar *pred, Int width) argument
652 BlockDCT_AANIntra(Short *out, UChar *cur, UChar *dummy2, Int width) argument
863 Block4x4DCT_AANIntra(Short *out, UChar *cur, UChar *dummy2, Int width) argument
1050 Block2x2DCT_AANIntra(Short *out, UChar *cur, UChar *dummy2, Int width) argument
1210 Block1x1DCTwSub(Short *out, UChar *cur, UChar *pred, Int width) argument
1247 Block1x1DCTIntra(Short *out, UChar *cur, UChar *dummy2, Int width) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DIAidlTest.aidl26 AidlTest.TestParcelable parcelableOut(out AidlTest.TestParcelable p);
34 boolean[] booleanArray(in boolean[] a0, out boolean[] a1, inout boolean[] a2);
35 char[] charArray(in char[] a0, out char[] a1, inout char[] a2);
36 int[] intArray(in int[] a0, out int[] a1, inout int[] a2);
37 long[] longArray(in long[] a0, out long[] a1, inout long[] a2);
38 float[] floatArray(in float[] a0, out float[] a1, inout float[] a2);
39 double[] doubleArray(in double[] a0, out double[] a1, inout double[] a2);
40 String[] stringArray(in String[] a0, out String[] a1, inout String[] a2);
42 out AidlTest.TestParcelable[] a1,
/frameworks/base/core/java/android/app/
H A DResultInfo.java53 public void writeToParcel(Parcel out, int flags) { argument
54 out.writeString(mResultWho);
55 out.writeInt(mRequestCode);
56 out.writeInt(mResultCode);
58 out.writeInt(1);
59 mData.writeToParcel(out, 0);
61 out.writeInt(0);
/frameworks/base/core/java/android/content/pm/
H A DProviderInfo.java120 @Override public void writeToParcel(Parcel out, int parcelableFlags) { argument
121 super.writeToParcel(out, parcelableFlags);
122 out.writeString(authority);
123 out.writeString(readPermission);
124 out.writeString(writePermission);
125 out.writeInt(grantUriPermissions ? 1 : 0);
126 out.writeTypedArray(uriPermissionPatterns, parcelableFlags);
127 out.writeTypedArray(pathPermissions, parcelableFlags);
128 out.writeInt(multiprocess ? 1 : 0);
129 out
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DVpnConfig.java78 public void writeToParcel(Parcel out, int flags) { argument
79 out.writeString(user);
80 out.writeString(interfaze);
81 out.writeString(session);
82 out.writeInt(mtu);
83 out.writeString(addresses);
84 out.writeString(routes);
85 out.writeStringList(dnsServers);
86 out.writeStringList(searchDomains);
87 out
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dgeometry.cpp46 Point out; local
47 out.x_ = x_ + other.x_;
48 out.y_ = y_ + other.y_;
49 return out;
53 Point out; local
54 out.x_ = x_ - other.x_;
55 out.y_ = y_ - other.y_;
56 return out;
60 Point out; local
61 out
[all...]
/frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
H A DBandwidthEnforcementTestService.java69 BufferedWriter out = new BufferedWriter(writer);
71 out.append(tag + ":fail\n");
73 out.append(tag + ":pass\n");
75 out.close();
186 final ByteArrayOutputStream out = new ByteArrayOutputStream();
191 out.write(id);
192 out.write(new byte[] { 0x01, 0x00 });
193 out.write(new byte[] { 0x00, 0x01 });
194 out.write(new byte[] { 0x00, 0x00 });
195 out
[all...]
/frameworks/base/core/java/android/view/
H A DIWindowSession.aidl38 in int viewVisibility, out Rect outContentInsets,
39 out InputChannel outInputChannel);
41 in int viewVisibility, in int layerStackId, out Rect outContentInsets,
42 out InputChannel outInputChannel);
44 in int viewVisibility, out Rect outContentInsets);
46 in int viewVisibility, in int layerStackId, out Rect outContentInsets);
87 int flags, out Rect outFrame,
88 out Rect outContentInsets, out Rect outVisibleInsets,
89 out Configuratio
[all...]
/frameworks/av/include/media/stagefright/foundation/
H A Dbase64.h29 void encodeBase64(const void *data, size_t size, AString *out);
/frameworks/base/core/java/android/app/backup/
H A DRestoreSet.java65 public void writeToParcel(Parcel out, int flags) { argument
66 out.writeString(name);
67 out.writeString(device);
68 out.writeLong(token);
/frameworks/base/core/java/android/ddm/
H A DDdmHandleHello.java123 ByteBuffer out = ByteBuffer.allocate(20
125 out.order(ChunkHandler.CHUNK_ORDER);
126 out.putInt(DdmServer.CLIENT_PROTOCOL_VERSION);
127 out.putInt(android.os.Process.myPid());
128 out.putInt(vmIdent.length());
129 out.putInt(appName.length());
130 putString(out, vmIdent);
131 putString(out, appName);
132 out.putInt(UserHandle.myUserId());
134 Chunk reply = new Chunk(CHUNK_HELO, out);
[all...]
H A DDdmHandleAppName.java93 ByteBuffer out = ByteBuffer.allocate(
97 out.order(ChunkHandler.CHUNK_ORDER);
98 out.putInt(appName.length());
99 putString(out, appName);
100 out.putInt(userId);
102 Chunk chunk = new Chunk(CHUNK_APNM, out);
/frameworks/base/core/java/android/net/
H A DNetworkQuotaInfo.java66 public void writeToParcel(Parcel out, int flags) { argument
67 out.writeLong(mEstimatedBytes);
68 out.writeLong(mSoftLimitBytes);
69 out.writeLong(mHardLimitBytes);
H A DNetworkState.java64 public void writeToParcel(Parcel out, int flags) { argument
65 out.writeParcelable(networkInfo, flags);
66 out.writeParcelable(linkProperties, flags);
67 out.writeParcelable(linkCapabilities, flags);
68 out.writeString(subscriberId);
69 out.writeString(networkId);
/frameworks/base/core/java/com/android/internal/util/
H A DXmlUtils.java172 * @param out Where to write the XML data.
179 public static final void writeMapXml(Map val, OutputStream out) argument
182 serializer.setOutput(out, "utf-8");
194 * @param out Where to write the XML data.
201 public static final void writeListXml(List val, OutputStream out) argument
205 serializer.setOutput(out, "utf-8");
219 * @param out XmlSerializer to write the map into.
226 public static final void writeMapXml(Map val, String name, XmlSerializer out) argument
230 out.startTag(null, "null");
231 out
265 writeListXml(List val, String name, XmlSerializer out) argument
289 writeSetXml(Set val, String name, XmlSerializer out) argument
321 writeByteArrayXml(byte[] val, String name, XmlSerializer out) argument
366 writeIntArrayXml(int[] val, String name, XmlSerializer out) argument
409 writeValueXml(Object v, String name, XmlSerializer out) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_content_res_Configuration.cpp47 JNIEnv* env, jobject clazz, struct AConfiguration* out) {
48 out->mcc = env->GetIntField(clazz, gConfigurationClassInfo.mcc);
49 out->mnc = env->GetIntField(clazz, gConfigurationClassInfo.mnc);
50 out->screenLayout = env->GetIntField(clazz, gConfigurationClassInfo.screenLayout);
51 out->touchscreen = env->GetIntField(clazz, gConfigurationClassInfo.touchscreen);
52 out->keyboard = env->GetIntField(clazz, gConfigurationClassInfo.keyboard);
53 out->navigation = env->GetIntField(clazz, gConfigurationClassInfo.navigation);
55 out->inputFlags = env->GetIntField(clazz, gConfigurationClassInfo.keyboardHidden);
57 if (out->inputFlags == ACONFIGURATION_KEYSHIDDEN_NO
59 out
46 android_Configuration_getFromJava( JNIEnv* env, jobject clazz, struct AConfiguration* out) argument
[all...]
/frameworks/base/include/android_runtime/
H A Dandroid_content_res_Configuration.h31 JNIEnv* env, jobject clazz, struct AConfiguration* out);
/frameworks/base/location/java/android/location/
H A DIGeocodeProvider.aidl30 in GeocoderParams params, out List<Address> addrs);
35 in GeocoderParams params, out List<Address> addrs);
/frameworks/base/wifi/java/android/net/wifi/
H A DRssiPacketCountInfo.java48 public void writeToParcel(Parcel out, int flags) { argument
49 out.writeInt(rssi);
50 out.writeInt(txgood);
51 out.writeInt(txbad);
/frameworks/base/opengl/java/android/opengl/
H A DETC1.java64 * @param out a native order direct buffer of size ENCODED_BLOCK_SIZE that receives the
68 public static native void encodeBlock(Buffer in, int validPixelMask, Buffer out); argument
76 * @param out a native order direct buffer of size DECODED_BLOCK_SIZE that will receive
81 public static native void decodeBlock(Buffer in, Buffer out); argument
92 * @param out a native order direct buffer of the encoded data.
98 int pixelSize, int stride, Buffer out);
103 * @param out native order direct buffer of the image data. Will be written such that
109 public static native void decodeImage(Buffer in, Buffer out, argument
97 encodeImage(Buffer in, int width, int height, int pixelSize, int stride, Buffer out) argument
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarNotification.java90 public void writeToParcel(Parcel out, int flags) { argument
91 out.writeString(this.pkg);
92 out.writeInt(this.id);
94 out.writeInt(1);
95 out.writeString(this.tag);
97 out.writeInt(0);
99 out.writeInt(this.uid);
100 out.writeInt(this.initialPid);
101 out.writeInt(this.score);
102 this.notification.writeToParcel(out, flag
[all...]
H A DStatusBarIcon.java75 public void writeToParcel(Parcel out, int flags) { argument
76 out.writeString(this.iconPackage);
77 out.writeParcelable(this.user, 0);
78 out.writeInt(this.iconId);
79 out.writeInt(this.iconLevel);
80 out.writeInt(this.visible ? 1 : 0);
81 out.writeInt(this.number);
82 out.writeCharSequence(this.contentDescription);
/frameworks/base/core/java/android/hardware/usb/
H A DUsbRequest.java136 boolean out = (mEndpoint.getDirection() == UsbConstants.USB_DIR_OUT);
139 result = native_queue_direct(buffer, length, out);
141 result = native_queue_array(buffer.array(), length, out);
154 boolean out = (mEndpoint.getDirection() == UsbConstants.USB_DIR_OUT);
159 bytesRead = native_dequeue_array(mBuffer.array(), mLength, out);
180 private native boolean native_queue_array(byte[] buffer, int length, boolean out); argument
181 private native int native_dequeue_array(byte[] buffer, int length, boolean out); argument
182 private native boolean native_queue_direct(ByteBuffer buffer, int length, boolean out); argument
/frameworks/compile/linkloader/include/impl/
H A DELFSectionStrTab.hxx56 out() << '\n' << fillformat('=', 79) << '\n';
57 out().changeColor(raw_ostream::WHITE, true);
58 out() << "ELF String Table: " << this->section_header->getName() << '\n';
59 out().resetColor();
60 out() << fillformat('-', 79) << '\n';
64 out() << fillformat('=', 79) << '\n';
/frameworks/base/media/mca/filterpacks/native/base/
H A Dvec_types.h33 // out of boundary not checked
37 // out of boundary not checked
60 Vec<T, dim> out; local
62 out.data[i] = x.data[i] + y.data[i];
63 return out;
68 Vec<T, dim> out; local
70 out.data[i] = x.data[i] - y.data[i];
71 return out;
76 Vec<T, dim> out; local
78 out
84 Vec<T, dim> out; local
92 T out = 0; local
100 Vec<T, dim> out; local
108 Vec<T, dim> out; local
116 Vec<T, dim> out; local
[all...]

Completed in 414 milliseconds

1234567891011>>