Searched refs:out (Results 101 - 125 of 1293) sorted by relevance

1234567891011>>

/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
H A Dartistic1.rs59 uchar4 out = rsPackColorTo8888(v1);
61 out.r = gLutR[out.r];
62 out.g = gLutG[out.g];
63 out.b = gLutB[out.b];
64 return out;
H A Dwbalance.rs79 uchar4 out;
82 out.r = sum15r/count15r;
83 out.g = sum15g/count15g;
84 out.b = sum15b/count15b;
86 out.r = out.g = out.b = 255;
89 return out;
109 uchar4 out;
110 out
[all...]
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A Dartistic1.rs59 uchar4 out = rsPackColorTo8888(v1);
61 out.r = gLutR[out.r];
62 out.g = gLutG[out.g];
63 out.b = gLutB[out.b];
64 return out;
H A Dwbalance.rs79 uchar4 out;
82 out.r = sum15r/count15r;
83 out.g = sum15g/count15g;
84 out.b = sum15b/count15b;
86 out.r = out.g = out.b = 255;
89 return out;
109 uchar4 out;
110 out
[all...]
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A Dartistic1.rs59 uchar4 out = rsPackColorTo8888(v1);
61 out.r = gLutR[out.r];
62 out.g = gLutG[out.g];
63 out.b = gLutB[out.b];
64 return out;
H A Dwbalance.rs79 uchar4 out;
82 out.r = sum15r/count15r;
83 out.g = sum15g/count15g;
84 out.b = sum15b/count15b;
86 out.r = out.g = out.b = 255;
89 return out;
109 uchar4 out;
110 out
[all...]
/frameworks/opt/net/lowpan/libandroid_net_lowpan/
H A DLowpanCredential.cpp51 status_t LowpanCredential::initMasterKey(LowpanCredential& out, const uint8_t* masterKeyBytes, int masterKeyLen, int masterKeyIndex) argument
61 out.mMasterKey.clear();
62 out.mMasterKey.insert(out.mMasterKey.end(), masterKeyBytes, masterKeyBytes + masterKeyLen);
63 out.mMasterKeyIndex = masterKeyIndex;
68 status_t LowpanCredential::initMasterKey(LowpanCredential& out, const uint8_t* masterKeyBytes, int masterKeyLen) argument
70 return LowpanCredential::initMasterKey(out, masterKeyBytes, masterKeyLen, 0);
73 status_t LowpanCredential::initMasterKey(LowpanCredential& out, const std::vector<uint8_t>& masterKey, int masterKeyIndex) argument
75 return LowpanCredential::initMasterKey(out, &masterKey.front(), masterKey.size(), masterKeyIndex);
78 status_t LowpanCredential::initMasterKey(LowpanCredential& out, cons argument
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/
H A DBase64.h36 void encodeBase64(const void *data, size_t size, std::string *out);
38 void encodeBase64Url(const void *data, size_t size, std::string *out);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothActivityEnergyInfo.java93 public void writeToParcel(Parcel out, int flags) { argument
94 out.writeLong(mTimestamp);
95 out.writeInt(mBluetoothStackState);
96 out.writeLong(mControllerTxTimeMs);
97 out.writeLong(mControllerRxTimeMs);
98 out.writeLong(mControllerIdleTimeMs);
99 out.writeLong(mControllerEnergyUsed);
100 out.writeTypedArray(mUidTraffic, flags);
H A DBluetoothHidDeviceAppSdpSettings.java107 public void writeToParcel(Parcel out, int flags) { argument
108 out.writeString(mName);
109 out.writeString(mDescription);
110 out.writeString(mProvider);
111 out.writeByte(mSubclass);
112 out.writeByteArray(mDescriptors);
/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterBlobArgument.java45 public void writeValue(Parcel out) { argument
46 out.writeByteArray(blob);
H A DKeymasterLongArgument.java45 public void writeValue(Parcel out) { argument
46 out.writeLong(value);
/frameworks/base/core/tests/coretests/src/android/util/
H A DArrayMapTest.java46 System.out.println("Starting ArrayMap concurrency test");
59 System.out.println("[successfully caught CME at put #" + i
63 System.out.print(".");
71 System.out.print("X");
80 System.out.println(
86 System.out.println();
98 System.out.print(".");
102 System.out.print("X");
/frameworks/base/telephony/java/android/telephony/ims/
H A DImsExternalCallState.java89 public void writeToParcel(Parcel out, int flags) { argument
90 out.writeInt(mCallId);
91 out.writeParcelable(mAddress, 0);
92 out.writeInt(mIsPullable ? 1 : 0);
93 out.writeInt(mCallState);
94 out.writeInt(mCallType);
95 out.writeInt(mIsHeld ? 1 : 0);
96 Rlog.d(TAG, "ImsExternalCallState writeToParcel = " + out.toString());
/frameworks/base/tools/aapt2/text/
H A DPrinter.h31 explicit Printer(::aapt::io::OutputStream* out) : out_(out) { argument
/frameworks/base/cmds/incident_helper/src/
H A Dmain.cpp37 static void usage(FILE* out) { argument
38 fprintf(out, "incident_helper is not designed to run manually,");
39 fprintf(out, "it reads from stdin and writes to stdout, see README.md for details.\n");
40 fprintf(out, "usage: incident_helper -s SECTION\n");
41 fprintf(out, "REQUIRED:\n");
42 fprintf(out, " -s section id, must be positive\n");
/frameworks/base/core/java/android/ddm/
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 DNetworkMisc.java87 public void writeToParcel(Parcel out, int flags) { argument
88 out.writeInt(allowBypass ? 1 : 0);
89 out.writeInt(explicitlySelected ? 1 : 0);
90 out.writeInt(acceptUnvalidated ? 1 : 0);
91 out.writeString(subscriberId);
92 out.writeInt(provisioningNotificationDisabled ? 1 : 0);
/frameworks/base/core/java/android/webkit/
H A DWebViewProviderInfo.java73 public void writeToParcel(Parcel out, int flags) { argument
74 out.writeString(packageName);
75 out.writeString(description);
76 out.writeInt(availableByDefault ? 1 : 0);
77 out.writeInt(isFallback ? 1 : 0);
78 out.writeTypedArray(signatures, 0);
/frameworks/base/core/jni/
H A Dandroid_util_EventLog.cpp40 jobject out) {
42 if (tags == NULL || out == NULL) {
47 ELog::readEvents(env, ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK, tags, 0, out);
58 jobject out) {
59 if (tags == NULL || out == NULL) {
64 timestamp, out);
38 android_util_EventLog_readEvents(JNIEnv* env, jobject clazz ATTRIBUTE_UNUSED, jintArray tags, jobject out) argument
55 android_util_EventLog_readEventsOnWrapping(JNIEnv* env, jobject clazz ATTRIBUTE_UNUSED, jintArray tags, jlong timestamp, jobject out) argument
/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...]
/frameworks/base/services/core/java/com/android/server/net/
H A DDelayedDiskWrite.java37 public void onWriteCalled(DataOutputStream out) throws IOException; argument
67 DataOutputStream out = null;
70 out = new DataOutputStream(new BufferedOutputStream(
73 w.onWriteCalled(out);
77 if (out != null) {
79 out.close();
/frameworks/base/telephony/java/android/telephony/
H A DIccOpenLogicalChannelResponse.java102 public void writeToParcel(Parcel out, int flags) { argument
103 out.writeInt(mChannel);
104 out.writeInt(mStatus);
106 out.writeInt(mSelectResponse.length);
107 out.writeByteArray(mSelectResponse);
109 out.writeInt(0);
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/types/
H A DColumnTypeAdapter.kt26 abstract class ColumnTypeAdapter(val out: TypeMirror, val typeAffinity: SQLTypeAffinity) :
28 val outTypeName: TypeName by lazy { TypeName.get(out) }
29 override fun typeMirror() = out
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DPasspointXmlUtils.java116 * @param out The output stream to serialize to
121 public static void serializePasspointConfiguration(XmlSerializer out, argument
123 XmlUtil.writeNextValue(out, XML_TAG_UPDATE_IDENTIFIER, config.getUpdateIdentifier());
124 XmlUtil.writeNextValue(out, XML_TAG_CREDENTIAL_PRIORITY, config.getCredentialPriority());
125 XmlUtil.writeNextValue(out, XML_TAG_TRUST_ROOT_CERT_LIST, config.getTrustRootCertList());
126 XmlUtil.writeNextValue(out, XML_TAG_SUBSCRIPTION_CREATION_TIME,
128 XmlUtil.writeNextValue(out, XML_TAG_SUBSCRIPTION_EXPIRATION_TIME,
130 XmlUtil.writeNextValue(out, XML_TAG_SUBSCRIPTION_TYPE, config.getSubscriptionType());
131 XmlUtil.writeNextValue(out, XML_TAG_USAGE_LIMIT_TIME_PERIOD,
133 XmlUtil.writeNextValue(out, XML_TAG_USAGE_LIMIT_START_TIM
231 serializeHomeSp(XmlSerializer out, HomeSp homeSp) argument
257 serializeCredential(XmlSerializer out, Credential credential) argument
283 serializePolicy(XmlSerializer out, Policy policy) argument
316 serializeUserCredential(XmlSerializer out, Credential.UserCredential userCredential) argument
342 serializeCertCredential(XmlSerializer out, Credential.CertificateCredential certCredential) argument
364 serializeSimCredential(XmlSerializer out, Credential.SimCredential simCredential) argument
383 serializePreferredRoamingPartnerList(XmlSerializer out, List<Policy.RoamingPartner> preferredRoamingPartnerList) argument
411 serializeUpdateParameter(XmlSerializer out, String type, UpdateParameter param) argument
439 serializeProtoPortMap(XmlSerializer out, Map<Integer, String> protoPortMap) argument
[all...]

Completed in 1693 milliseconds

1234567891011>>