/external/mesa3d/src/gallium/auxiliary/util/ |
u_format_pack.py | 267 def clamp_expr(src_channel, dst_channel, dst_native_type, value): 271 if src_channel == dst_channel: 274 src_min = src_channel.min() 275 src_max = src_channel.max() 280 dst_min_native = native_to_constant(src_channel, value_to_native(src_channel, dst_min)) 281 dst_max_native = native_to_constant(src_channel, value_to_native(src_channel, dst_max)) 295 def conversion_expr(src_channel, 305 assert src_channel.type == UNSIGNE [all...] |
/external/virglrenderer/src/gallium/auxiliary/util/ |
u_format_pack.py | 269 def clamp_expr(src_channel, dst_channel, dst_native_type, value): 273 if src_channel == dst_channel: 276 src_min = src_channel.min() 277 src_max = src_channel.max() 282 dst_min_native = native_to_constant(src_channel, value_to_native(src_channel, dst_min)) 283 dst_max_native = native_to_constant(src_channel, value_to_native(src_channel, dst_max)) 297 def conversion_expr(src_channel, 307 assert src_channel.type == UNSIGNE [all...] |
/device/google/marlin/camera/QCamera2/HAL3/ |
QCamera3HALHeader.h | 95 QCamera3ProcessingChannel *src_channel; member in struct:qcamera::__anon3083
|
QCamera3Channel.cpp | [all...] |
/external/webrtc/webrtc/common_audio/ |
audio_converter_unittest.cc | 149 for (size_t src_channel = 0; src_channel < arraysize(kChannels); 150 ++src_channel) { 153 RunAudioConverterTest(kChannels[src_channel], kSampleRates[src_rate],
|
/external/webrtc/webrtc/voice_engine/ |
utility_unittest.cc | 214 for (int src_channel = 0; src_channel < kChannelsSize; src_channel++) { 216 RunResampleTest(kChannels[src_channel], kSampleRates[src_rate],
|
/external/libopus/src/ |
opus_projection_encoder.c | 54 int src_channel, 60 (const float*)src, src_stride, dst, src_channel, dst_stride, frame_size); 69 int src_channel, 75 (const opus_int16*)src, src_stride, dst, src_channel, dst_stride, frame_size);
|
opus_private.h | 93 int src_channel,
|
opus_multistream_encoder.c | 1020 int src_channel, 1031 dst[i*dst_stride] = FLOAT2INT16(float_src[i*src_stride+src_channel]); 1033 dst[i*dst_stride] = float_src[i*src_stride+src_channel]; 1043 int src_channel, 1054 dst[i*dst_stride] = short_src[i*src_stride+src_channel]; 1056 dst[i*dst_stride] = (1/32768.f)*short_src[i*src_stride+src_channel]; [all...] |
/external/webp/src/demux/ |
anim_decode.c | 200 const uint8_t src_channel = (src >> shift) & 0xff; local 202 const uint32_t blend_unscaled = src_channel * src_a + dst_channel * dst_a;
|