Searched refs:src (Results 1 - 25 of 784) sorted by relevance

1234567891011>>

/frameworks/av/media/libeffects/lvm/lib/
H A DAndroid.mk11 StereoWidening/src/LVCS_BypassMix.c \
12 StereoWidening/src/LVCS_Control.c \
13 StereoWidening/src/LVCS_Equaliser.c \
14 StereoWidening/src/LVCS_Init.c \
15 StereoWidening/src/LVCS_Process.c \
16 StereoWidening/src/LVCS_ReverbGenerator.c \
17 StereoWidening/src/LVCS_StereoEnhancer.c \
18 StereoWidening/src/LVCS_Tables.c \
19 Bass/src/LVDBE_Control.c \
20 Bass/src/LVDBE_Ini
[all...]
/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DFrom2iToMono_32.c28 void From2iToMono_32( const LVM_INT32 *src, argument
37 Temp = (*src>>1);
38 src++;
40 Temp +=(*src>>1);
41 src++;
50 void From2iToMono_Float( const LVM_FLOAT *src, argument
59 Temp = (*src);
60 src++;
62 Temp += (*src);
63 src
[all...]
H A DMonoTo2I_32.c28 void MonoTo2I_32( const LVM_INT32 *src, argument
33 src += (n-1);
38 *dst = *src;
41 *dst = *src;
43 src--;
49 void MonoTo2I_Float( const LVM_FLOAT *src, argument
54 src += (n - 1);
59 *dst = *src;
62 *dst = *src;
64 src
[all...]
H A DCopy_16.c28 void Copy_16( const LVM_INT16 *src, argument
34 if (src > dst)
38 *dst = *src;
40 src++;
45 src += n - 1;
49 *dst = *src;
51 src--;
58 void Copy_Float( const LVM_FLOAT *src, argument
64 if (src > dst)
68 *dst = *src;
[all...]
H A DFrom2iToMono_16.c28 void From2iToMono_16( const LVM_INT16 *src, argument
36 Temp = (LVM_INT32)*src;
37 src++;
39 Temp += (LVM_INT32)*src;
40 src++;
H A DMonoTo2I_16.c28 void MonoTo2I_16( const LVM_INT16 *src, argument
33 src += (n-1);
38 *dst = *src;
41 *dst = *src;
43 src--;
H A DInt16LShiftToInt32_16x32.c28 void Int16LShiftToInt32_16x32(const LVM_INT16 *src, argument
35 src += n-1;
40 *dst = ( ((LVM_INT32)*src) << shift);
41 src--;
H A DShift_Sat_v32xv32.c29 const LVM_FLOAT *src,
41 temp = (LVM_FLOAT)*src;
42 src++;
63 temp = (LVM_FLOAT)*src;
64 src++;
75 if(src != dst)
77 Copy_Float(src, dst, n);
84 const LVM_INT32 *src,
97 a=*src;
98 src
28 Shift_Sat_Float(const LVM_INT16 val, const LVM_FLOAT *src, LVM_FLOAT *dst, LVM_INT16 n) argument
83 Shift_Sat_v32xv32(const LVM_INT16 val, const LVM_INT32 *src, LVM_INT32 *dst, LVM_INT16 n) argument
[all...]
H A DMult3s_32x16.c29 void Mult3s_32x16( const LVM_INT32 *src, argument
39 srcval=*src;
40 src++;
51 void Mult3s_Float( const LVM_FLOAT *src, argument
61 temp = (*src) * val;
62 src++;
H A DDelayWrite_32.c28 void DelayWrite_32(const LVM_INT32 *src, /* Source 1, to be delayed */ argument
39 delay[Offset] = *src;
41 src++;
H A Dmult3s_16x16.c28 void Mult3s_16x16( const LVM_INT16 *src, argument
38 temp = (LVM_INT32)(*src) * (LVM_INT32)val;
39 src++;
H A DShift_Sat_v16xv16.c29 const LVM_INT16 *src,
40 temp = (LVM_INT32)*src;
41 src++;
66 *dst = (LVM_INT16)(*src >> RShift);
68 src++;
73 if(src!=dst)
75 Copy_16(src,dst,n);
28 Shift_Sat_v16xv16(const LVM_INT16 val, const LVM_INT16 *src, LVM_INT16 *dst, LVM_INT16 n) argument
H A DDelayMix_16x16.c28 void DelayMix_16x16(const LVM_INT16 *src, /* Source 1, to be delayed */ argument
46 delay[Offset] = *src;
48 src++;
56 delay[Offset] = *src;
58 src++;
73 void DelayMix_Float(const LVM_FLOAT *src, /* Source 1, to be delayed */ argument
91 delay[Offset] = *src;
93 src++;
101 delay[Offset] = *src;
103 src
[all...]
H A DFrom2iToMS_16x16.c28 void From2iToMS_16x16( const LVM_INT16 *src, argument
37 left = (LVM_INT32)*src;
38 src++;
40 right = (LVM_INT32)*src;
41 src++;
57 void From2iToMS_Float( const LVM_FLOAT *src, argument
66 left = (LVM_FLOAT)*src;
67 src++;
69 right = (LVM_FLOAT)*src;
70 src
[all...]
H A DAdd2_Sat_32x32.c29 void Add2_Sat_32x32( const LVM_INT32 *src, argument
37 a=*src;
38 src++;
61 void Add2_Sat_Float( const LVM_FLOAT *src, argument
69 Temp = ((LVM_FLOAT) *src) + ((LVM_FLOAT) *dst);
70 src++;
H A DAdd2_Sat_16x16.c28 void Add2_Sat_16x16( const LVM_INT16 *src, argument
36 Temp = ((LVM_INT32) *src) + ((LVM_INT32) *dst);
37 src++;
H A DInt32RShiftToInt16_Sat_32x16.c28 void Int32RShiftToInt16_Sat_32x16(const LVM_INT32 *src, argument
38 temp = *src >> shift;
39 src++;
/frameworks/base/libs/hwui/protos/
H A DProtoHelpers.h25 void set(proto::RectF* dest, const Rect& src) { argument
26 dest->set_left(src.left);
27 dest->set_top(src.top);
28 dest->set_right(src.right);
29 dest->set_bottom(src.bottom);
32 void set(std::string* dest, const SkPath& src) { argument
33 size_t size = src.writeToMemory(nullptr);
35 src.writeToMemory(&*dest->begin());
/frameworks/av/services/audiopolicy/common/managerdefinitions/
H A DAndroid.mk6 src/DeviceDescriptor.cpp \
7 src/AudioGain.cpp \
8 src/HwModule.cpp \
9 src/IOProfile.cpp \
10 src/AudioPort.cpp \
11 src/AudioProfile.cpp \
12 src/AudioRoute.cpp \
13 src/AudioPolicyMix.cpp \
14 src/AudioPatch.cpp \
15 src/AudioInputDescripto
[all...]
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecMessageBuilder.java33 * @param src source address of command
38 static HdmiCecMessage of(int src, int dest, byte[] body) { argument
41 return new HdmiCecMessage(src, dest, opcode, params);
48 * @param src source address of command
54 static HdmiCecMessage buildFeatureAbortCommand(int src, int dest, int originalOpcode, argument
60 return buildCommand(src, dest, Constants.MESSAGE_FEATURE_ABORT, params);
66 * @param src source address of command
70 static HdmiCecMessage buildGivePhysicalAddress(int src, int dest) { argument
71 return buildCommand(src, dest, Constants.MESSAGE_GIVE_PHYSICAL_ADDRESS);
77 * @param src sourc
81 buildGiveOsdNameCommand(int src, int dest) argument
92 buildGiveDeviceVendorIdCommand(int src, int dest) argument
106 buildSetMenuLanguageCommand(int src, String language) argument
130 buildSetOsdNameCommand(int src, int dest, String name) argument
152 buildReportPhysicalAddressCommand(int src, int address, int deviceType) argument
175 buildDeviceVendorIdCommand(int src, int vendorId) argument
195 buildCecVersion(int src, int dest, int version) argument
209 buildRequestArcInitiation(int src, int dest) argument
220 buildRequestArcTermination(int src, int dest) argument
231 buildReportArcInitiated(int src, int dest) argument
242 buildReportArcTerminated(int src, int dest) argument
253 buildTextViewOn(int src, int dest) argument
264 buildActiveSource(int src, int physicalAddress) argument
276 buildInactiveSource(int src, int physicalAddress) argument
290 buildSetStreamPath(int src, int streamPath) argument
305 buildRoutingChange(int src, int oldPath, int newPath) argument
321 buildGiveDevicePowerStatus(int src, int dest) argument
333 buildReportPowerStatus(int src, int dest, int powerStatus) argument
348 buildReportMenuStatus(int src, int dest, int menuStatus) argument
364 buildSystemAudioModeRequest(int src, int avr, int avrPhysicalAddress, boolean enableSystemAudio) argument
381 buildGiveAudioStatus(int src, int dest) argument
393 buildUserControlPressed(int src, int dest, int uiCommand) argument
405 buildUserControlPressed(int src, int dest, byte[] commandParam) argument
416 buildUserControlReleased(int src, int dest) argument
427 buildGiveSystemAudioModeStatus(int src, int dest) argument
438 buildStandby(int src, int dest) argument
450 buildVendorCommand(int src, int dest, byte[] params) argument
463 buildVendorCommandWithId(int src, int dest, int vendorId, byte[] operands) argument
481 buildRecordOn(int src, int dest, byte[] params) argument
492 buildRecordOff(int src, int dest) argument
504 buildSetDigitalTimer(int src, int dest, byte[] params) argument
516 buildSetAnalogueTimer(int src, int dest, byte[] params) argument
528 buildSetExternalTimer(int src, int dest, byte[] params) argument
540 buildClearDigitalTimer(int src, int dest, byte[] params) argument
552 buildClearAnalogueTimer(int src, int dest, byte[] params) argument
564 buildClearExternalTimer(int src, int dest, byte[] params) argument
578 buildCommand(int src, int dest, int opcode) argument
591 buildCommand(int src, int dest, int opcode, byte[] params) argument
[all...]
/frameworks/native/services/sensorservice/hidl/
H A Dutils.cpp31 SensorInfo convertSensor(const Sensor& src) { argument
33 const String8& name = src.getName();
34 const String8& vendor = src.getVendor();
37 dst.version = src.getVersion();
38 dst.sensorHandle = src.getHandle();
40 src.getType());
43 dst.maxRange = src.getMaxValue();
44 dst.resolution = src.getResolution();
45 dst.power = src.getPowerUsage();
46 dst.minDelay = src
77 convertEvent(const ::ASensorEvent& src) argument
[all...]
/frameworks/base/
H A Dpathmap.mk27 multidex/library/src \
28 multidex/instrumentation/src
50 baseLibrary/src/main \
51 extensions/library/src/main \
52 extensions/library/src/doc
/frameworks/av/media/libstagefright/colorconversion/
H A DColorConverter.cpp154 BitmapParams src(
164 if (!((src.mCropLeft & 1) == 0
165 && src.cropWidth() == dst.cropWidth()
166 && src.cropHeight() == dst.cropHeight())) {
175 err = convertYUV420PlanarUseLibYUV(src, dst);
177 err = convertYUV420Planar(src, dst);
186 err = convertYUV420Planar16(src, dst);
195 err = convertCbYCrY(src, dst);
199 err = convertQCOMYUV420SemiPlanar(src, dst);
203 err = convertYUV420SemiPlanar(src, ds
220 convertCbYCrY( const BitmapParams &src, const BitmapParams &dst) argument
278 convertYUV420PlanarUseLibYUV( const BitmapParams &src, const BitmapParams &dst) argument
[all...]
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
H A DVectorArithmetic.h47 void Copy_Float( const LVM_FLOAT *src,
51 void Copy_16( const LVM_INT16 *src,
59 * For example when *src = 0x8000, val = *0x8000 *
65 void Mult3s_Float( const LVM_FLOAT *src,
70 void Mult3s_16x16( const LVM_INT16 *src,
79 * For example when *src = 0x8000000, val = *0x8000 *
84 void Mult3s_32x16( const LVM_INT32 *src,
89 void DelayMix_Float(const LVM_FLOAT *src, /* Source 1, to be delayed */
96 void DelayMix_16x16( const LVM_INT16 *src,
103 void DelayWrite_32( const LVM_INT32 *src, /* Sourc
[all...]
/frameworks/native/opengl/tests/angeles/
H A Dcams.h38 /* Five parameters of src[5] and dest[5]:
41 short src[5], dest[5]; member in struct:__anon1796

Completed in 292 milliseconds

1234567891011>>