Searched defs:mix (Results 1 - 9 of 9) sorted by last modified time

/frameworks/rs/driver/runtime/
H A Drs_cl.c955 extern float __attribute__((overloadable)) mix(float start, float stop, float amount) { function
958 extern float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float2 amount) { function
961 extern float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float3 amount) { function
964 extern float4 __attribute__((overloadable)) mix(float4 start, float4 stop, float4 amount) { function
967 extern float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float amount) { function
970 extern float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float amount) { function
973 extern float4 __attribute__((overloadable)) mix(float4 start, float4 stop, float amount) { function
2079 extern half __attribute__((overloadable)) mix(half start, half stop, half amount) { function
2082 extern half2 __attribute__((overloadable)) mix(half2 start, half2 stop, half2 amount) { function
2085 extern half3 __attribute__((overloadable)) mix(half function
2088 extern half4 __attribute__((overloadable)) mix(half4 start, half4 stop, half4 amount) { function
2091 extern half2 __attribute__((overloadable)) mix(half2 start, half2 stop, half amount) { function
2094 extern half3 __attribute__((overloadable)) mix(half3 start, half3 stop, half amount) { function
2097 extern half4 __attribute__((overloadable)) mix(half4 start, half4 stop, half amount) { function
[all...]
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp74 // nothing to mix. However, this causes some problems with certain firewalls and
106 bool mix(int32_t *output, int head, int tail, int sampleRate);
236 bool AudioStream::mix(int32_t *output, int head, int tail, int sampleRate) function in class:__anon1950::AudioStream
312 data |= chain->mix(buffer, tick - mInterval, tick, mSampleRate);
/frameworks/base/libs/hwui/
H A DGradientCache.cpp229 ChannelMixer mix = gMixers[mUseFloatTexture]; local
255 (this->*mix)(start, end, amount, dst);
/frameworks/base/media/java/android/media/audiopolicy/
H A DAudioPolicy.java150 * @param mix a non-null {@link AudioMix} to be part of the audio policy.
155 public Builder addMix(@NonNull AudioMix mix) throws IllegalArgumentException { argument
156 if (mix == null) {
159 mMixes.add(mix);
222 // the AudioPolicy status listener includes updates on each mix activity state
223 for (AudioMix mix : mMixes) {
224 mix.mCallbackFlags |= AudioMix.CALLBACK_FLAG_NOTIFY_ACTIVITY;
273 private void checkMixReadyToUse(AudioMix mix, boolean forTrack) argument
275 if (mix == null) {
280 if (!mConfig.mMixes.contains(mix)) {
363 createAudioRecordSink(AudioMix mix) argument
402 createAudioTrackSource(AudioMix mix) argument
431 onMixStateUpdate(AudioMix mix) argument
582 addressForTag(AudioMix mix) argument
[all...]
H A DAudioPolicyConfig.java53 * @param mix a non-null {@link AudioMix} to be part of the audio policy.
57 public void addMix(AudioMix mix) throws IllegalArgumentException { argument
58 if (mix == null) {
61 mMixes.add(mix);
81 for (AudioMix mix : mMixes) {
82 // write mix route flags
83 dest.writeInt(mix.getRouteFlags());
85 dest.writeInt(mix.mCallbackFlags);
87 dest.writeInt(mix.mDeviceSystemType);
88 dest.writeString(mix
[all...]
/frameworks/base/core/jni/
H A Dandroid_media_AudioSystem.cpp751 nAudioPortConfig->type == AUDIO_PORT_TYPE_DEVICE ? "device" : "mix");
758 // constructed by java code with correct class type (device, mix etc...)
875 ALOGV("convertAudioPortConfigFromNative building a mix config");
1104 ALOGV("convertAudioPortFromNative is a mix");
1106 jHandle, nAudioPort->ext.mix.handle,
1489 nPatches[i].sources[j].type == AUDIO_PORT_TYPE_DEVICE ? "device" : "mix",
1514 nPatches[i].sinks[j].type == AUDIO_PORT_TYPE_DEVICE ? "device" : "mix",
1732 AudioMix mix; local
1733 jStatus = convertAudioMixToNative(env, &mix, jAudioMix);
1739 mixes.add(mix);
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioPolicyMix.cpp45 void AudioPolicyMix::setMix(AudioMix &mix) argument
47 mMix = mix;
65 ALOGE("%s: failed to convert mix type %d", __FUNCTION__, mMix.mMixType);
68 snprintf(buffer, SIZE, "%*s- mix type: %s\n", spaces, "", mixTypeLiteral.c_str());
115 status_t AudioPolicyMixCollection::registerMix(const String8& address, AudioMix mix, argument
120 ALOGE("registerPolicyMixes(): mix for address %s already registered", address.string());
124 policyMix->setMix(mix);
138 ALOGE("unregisterPolicyMixes(): mix for address %s not registered", address.string());
151 ALOGE("unregisterPolicyMixes(): mix for address %s not registered", address.string());
175 AudioMix *mix local
297 AudioMix *mix = valueAt(i)->getMix(); local
331 AudioMix *mix = policyMix->getMix(); local
342 AudioMix *mix = audioPolicyMix->getMix(); local
[all...]
/frameworks/av/services/oboeservice/
H A DAAudioMixer.cpp44 bool AAudioMixer::mix(FifoBuffer *fifo, float volume) { function in class:AAudioMixer
70 //ALOGW("AAudioMixer::mix() UNDERFLOW by %d / %d frames ----- UNDERFLOW !!!!!!!!!!",
/frameworks/av/media/libaudioclient/
H A DIAudioPolicyService.cpp1358 AudioMix mix; local
1359 if (mix.readFromParcel((Parcel*)&data) == NO_ERROR) {
1360 mixes.add(mix);

Completed in 323 milliseconds