Searched refs:dst (Results 26 - 50 of 181) sorted by relevance

12345678

/frameworks/av/media/libeffects/lvm/lib/Common/lib/
H A DVectorArithmetic.h33 LVM_INT16 *dst,
37 LVM_INT32 *dst,
41 LVM_INT16 *dst,
54 LVM_INT16 *dst,
67 LVM_INT32 *dst,
73 LVM_INT16 *dst,
84 LVM_INT16 *dst,
88 LVM_INT32 *dst,
93 LVM_INT16 *dst,
98 LVM_INT32 *dst,
[all...]
H A DMixer.h77 LVM_INT32 *dst,
83 LVM_INT32 *dst,
88 LVM_INT32 *dst,
97 LVM_INT32 *dst,
103 LVM_INT32 *dst,
108 LVM_INT32 *dst,
/frameworks/compile/libbcc/runtime/lib/ppc/
H A Dgcc_qadd.c16 DD dst = { .ld = x }, src = { .ld = y }; local
18 register double A = dst.s.hi, a = dst.s.lo,
23 dst.s.hi = A + B;
24 dst.s.lo = 0.0;
25 return dst.ld;
33 dst.s.hi = A + B;
34 dst.s.lo = 0.0;
35 return dst.ld;
43 dst
[all...]
H A Dgcc_qsub.c16 DD dst = { .ld = x }, src = { .ld = y }; local
18 register double A = dst.s.hi, a = dst.s.lo,
23 dst.s.hi = A + B;
24 dst.s.lo = 0.0;
25 return dst.ld;
33 dst.s.hi = A + B;
34 dst.s.lo = 0.0;
35 return dst.ld;
43 dst
[all...]
/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DDelayMix_16x16.c31 LVM_INT16 *dst, /* Source/destination */
42 temp = (LVM_INT16)((LVM_UINT32)((LVM_INT32)(*dst) + (LVM_INT32)delay[Offset]) >> 1);
43 *dst = temp;
44 dst++;
52 temp = (LVM_INT16)((LVM_UINT32)((LVM_INT32)(*dst) - (LVM_INT32)delay[Offset]) >> 1);
53 *dst = temp;
54 dst++;
28 DelayMix_16x16(const LVM_INT16 *src, LVM_INT16 *delay, LVM_INT16 size, LVM_INT16 *dst, LVM_INT16 *pOffset, LVM_INT16 n) argument
H A DLVC_Core_MixHard_1St_2i_D16C31_SAT.c34 LVM_INT16 *dst,
52 *dst++ = 0x7FFF;
54 *dst++ = - 0x8000;
56 *dst++ = (LVM_INT16)Temp;
60 *dst++ = 0x7FFF;
62 *dst++ = - 0x8000;
64 *dst++ = (LVM_INT16)Temp;
31 LVC_Core_MixHard_1St_2i_D16C31_SAT( LVMixer3_st *ptrInstance1, LVMixer3_st *ptrInstance2, const LVM_INT16 *src, LVM_INT16 *dst, LVM_INT16 n) argument
H A DShift_Sat_v32xv32.c30 LVM_INT32 *dst,
59 *dst = b;
60 dst++;
68 *dst = (*src >> RShift);
69 dst++;
75 if(src!=dst)
77 Copy_16((LVM_INT16 *)src,(LVM_INT16 *)dst,(LVM_INT16)(n<<1));
28 Shift_Sat_v32xv32(const LVM_INT16 val, const LVM_INT32 *src, LVM_INT32 *dst, LVM_INT16 n) argument
H A DLVC_Core_MixInSoft_D16C31_SAT.c31 LVM_INT16 *dst,
58 Temp = ((LVM_INT32)*dst) + (((LVM_INT32)*(src++) * CurrentShort)>>15); /* Q15 + Q15*Q15>>15 into Q15 */
60 *dst++ = 0x7FFF;
62 *dst++ = - 0x8000;
64 *dst++ = (LVM_INT16)Temp;
77 Temp = ((LVM_INT32)*dst) + (((LVM_INT32)*(src++) * CurrentShort)>>15); /* Q15 + Q15*Q15>>15 into Q15 */
79 *dst++ = 0x7FFF;
81 *dst++ = - 0x8000;
83 *dst++ = (LVM_INT16)Temp;
96 Temp = ((LVM_INT32)*dst)
29 LVC_Core_MixInSoft_D16C31_SAT( LVMixer3_st *ptrInstance, const LVM_INT16 *src, LVM_INT16 *dst, LVM_INT16 n) argument
[all...]
H A DMac3s_Sat_32x16.c31 LVM_INT32 *dst,
45 dInVal = *dst;
61 *dst = dOutVal;
62 dst++;
29 Mac3s_Sat_32x16( const LVM_INT32 *src, const LVM_INT16 val, LVM_INT32 *dst, LVM_INT16 n) argument
H A DLVC_MixSoft_2St_D16C31_SAT.c32 LVM_INT16 *dst,
44 LVC_MixSoft_1St_D16C31_SAT( (LVMixer3_1St_st *)(&ptrInstance->MixerStream[1]), src2, dst, n);
47 LVC_MixSoft_1St_D16C31_SAT( (LVMixer3_1St_st *)(&ptrInstance->MixerStream[0]), src1, dst, n);
51 LVC_MixSoft_1St_D16C31_SAT((LVMixer3_1St_st *)(&ptrInstance->MixerStream[0]), src1, dst, n);
52 LVC_MixInSoft_D16C31_SAT( (LVMixer3_1St_st *)(&ptrInstance->MixerStream[1]), src2, dst, n);
62 Shift_Sat_v16xv16 ((LVM_INT16)pInstance1->Shift,src1,dst,n);
63 LVC_Core_MixHard_2St_D16C31_SAT( &ptrInstance->MixerStream[0], &ptrInstance->MixerStream[1], dst, src2, dst, n);
66 LVC_Core_MixHard_2St_D16C31_SAT( &ptrInstance->MixerStream[0], &ptrInstance->MixerStream[1], src1, src2, dst, n);
29 LVC_MixSoft_2St_D16C31_SAT( LVMixer3_2St_st *ptrInstance, const LVM_INT16 *src1, LVM_INT16 *src2, LVM_INT16 *dst, LVM_INT16 n) argument
H A DCore_MixSoft_1St_D32C31_WRA.c31 LVM_INT32 *dst,
63 *dst = Temp2;
64 dst++;
77 *dst = Temp2;
78 dst++;
84 *dst = Temp2;
85 dst++;
91 *dst = Temp2;
92 dst++;
97 *dst
29 Core_MixSoft_1St_D32C31_WRA( Mix_1St_Cll_t *pInstance, const LVM_INT32 *src, LVM_INT32 *dst, LVM_INT16 n) argument
[all...]
H A DLVC_Mixer_Private.h55 LVM_INT16 *dst,
60 LVM_INT16 *dst,
67 LVM_INT16 *dst,
80 LVM_INT16 *dst, /* dst can be equal to src */
92 LVM_INT16 *dst, /* dst can be equal to src */
101 LVM_INT32 *dst,
106 LVM_INT32 *dst,
113 LVM_INT32 *dst,
[all...]
H A DLVC_MixSoft_1St_D16C31_SAT.c39 LVM_INT16 *dst,
65 Shift_Sat_v16xv16 ((LVM_INT16)pInstance->Shift,src,dst,n);
66 LVC_Core_MixSoft_1St_D16C31_WRA( &(ptrInstance->MixerStream[0]), dst, dst, n);
69 LVC_Core_MixSoft_1St_D16C31_WRA( &(ptrInstance->MixerStream[0]), src, dst, n);
79 LoadConst_16(0, dst, n);
81 Shift_Sat_v16xv16 ((LVM_INT16)pInstance->Shift,src,dst,n);
83 Mult3s_16x16( dst, (LVM_INT16)(pInstance->Target>>16), dst, n );
87 Mult3s_16x16( src, (LVM_INT16)(pInstance->Target>>16), dst,
37 LVC_MixSoft_1St_D16C31_SAT( LVMixer3_1St_st *ptrInstance, const LVM_INT16 *src, LVM_INT16 *dst, LVM_INT16 n) argument
[all...]
H A DLVC_Core_MixHard_2St_D16C31_SAT.c32 LVM_INT16 *dst,
50 *dst++ = 0x7FFF;
52 *dst++ = - 0x8000;
54 *dst++ = (LVM_INT16)Temp;
28 LVC_Core_MixHard_2St_D16C31_SAT( LVMixer3_st *ptrInstance1, LVMixer3_st *ptrInstance2, const LVM_INT16 *src1, const LVM_INT16 *src2, LVM_INT16 *dst, LVM_INT16 n) argument
H A DLVC_Core_MixSoft_1St_2i_D16C31_WRA.c33 LVM_INT16 *dst,
92 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShortL)>>15); /* Q15*Q15>>15 into Q15 */
93 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShortR)>>15); /* Q15*Q15>>15 into Q15 */
130 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShortL)>>15); /* Q15*Q15>>15 into Q15 */
131 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShortR)>>15); /* Q15*Q15>>15 into Q15 */
132 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShortL)>>15);
133 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShortR)>>15);
134 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShortL)>>15);
135 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShortR)>>15);
136 *(dst
30 LVC_Core_MixSoft_1St_2i_D16C31_WRA( LVMixer3_st *ptrInstance1, LVMixer3_st *ptrInstance2, const LVM_INT16 *src, LVM_INT16 *dst, LVM_INT16 n) argument
[all...]
H A DLVC_Core_MixSoft_1St_D16C31_WRA.c32 LVM_INT16 *dst,
58 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShort)>>15); /* Q15*Q15>>15 into Q15 */
70 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShort)>>15); /* Q15*Q15>>15 into Q15 */
71 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShort)>>15);
72 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShort)>>15);
73 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShort)>>15);
85 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShort)>>15); /* Q15*Q15>>15 into Q15 */
96 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShort)>>15); /* Q15*Q15>>15 into Q15 */
97 *(dst++) = (LVM_INT16)(((LVM_INT32)*(src++) * (LVM_INT32)CurrentShort)>>15);
98 *(dst
30 LVC_Core_MixSoft_1St_D16C31_WRA( LVMixer3_st *ptrInstance, const LVM_INT16 *src, LVM_INT16 *dst, LVM_INT16 n) argument
[all...]
H A DMixSoft_1St_D32C31_WRA.c40 LVM_INT32 *dst,
60 Core_MixSoft_1St_D32C31_WRA( pInstance, src, dst, n);
70 LoadConst_32(0, dst, n);
72 if (src != dst)
73 Copy_16((LVM_INT16*)src, (LVM_INT16*)dst, (LVM_INT16)(n * 2));
76 Mult3s_32x16( src, (LVM_INT16)(pInstance->Current>>16), dst, n );
38 MixSoft_1St_D32C31_WRA( Mix_1St_Cll_t *pInstance, const LVM_INT32 *src, LVM_INT32 *dst, LVM_INT16 n) argument
/frameworks/base/core/jni/android/graphics/
H A DNinePatchImpl.cpp70 static void drawStretchyPatch(SkCanvas* canvas, SkIRect& src, const SkRect& dst, argument
76 canvas->drawRect(dst, paint);
86 canvas->drawRect(dst, paint);
91 canvas->drawBitmapRect(bitmap, &src, dst, &paint);
171 SkRect dst; local
212 dst.fTop = bounds.fTop;
233 dst.fLeft = bounds.fLeft;
236 dst.fBottom = bounds.fBottom;
241 dst.fBottom = dst
[all...]
H A DRegion.cpp47 static void Region_setRegion(JNIEnv* env, jobject, SkRegion* dst, const SkRegion* src) { argument
48 SkASSERT(dst && src);
49 *dst = *src;
52 static jboolean Region_setRect(JNIEnv* env, jobject, SkRegion* dst, int left, int top, int right, int bottom) { argument
53 return dst->setRect(left, top, right, bottom);
56 static jboolean Region_setPath(JNIEnv* env, jobject, SkRegion* dst, argument
58 SkASSERT(dst && path && clip);
59 return dst->setPath(*path, *clip);
71 static jboolean Region_op0(JNIEnv* env, jobject, SkRegion* dst, int left, int top, int right, int bottom, int op) { argument
75 return dst
78 Region_op1(JNIEnv* env, jobject, SkRegion* dst, jobject rectObject, const SkRegion* region, int op) argument
84 Region_op2(JNIEnv* env, jobject, SkRegion* dst, const SkRegion* region1, const SkRegion* region2, int op) argument
120 Region_translate(JNIEnv* env, jobject region, int x, int y, jobject dst) argument
129 scale_rect(SkIRect* dst, const SkIRect& src, float scale) argument
138 scale_rgn(SkRegion* dst, const SkRegion& src, float scale) argument
150 Region_scale(JNIEnv* env, jobject region, jfloat scale, jobject dst) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dme_utils.cpp220 UChar *src, *dst; local
239 dst = src - (pitch << 4);
241 *((ULong*)(dst - 16)) = temp1;
242 *((ULong*)(dst - 12)) = temp1;
243 *((ULong*)(dst - 8)) = temp1;
244 *((ULong*)(dst - 4)) = temp1;
246 M4VENC_MEMCPY(dst, src, width);
248 *((ULong*)(dst += width)) = temp2;
249 *((ULong*)(dst + 4)) = temp2;
250 *((ULong*)(dst
[all...]
H A Dm4venc_oscl.h35 #define M4VENC_MEMCPY(dst,src,size) memcpy(dst,src,size)
/frameworks/av/include/media/stagefright/
H A DColorConverter.h68 const BitmapParams &src, const BitmapParams &dst);
71 const BitmapParams &src, const BitmapParams &dst);
74 const BitmapParams &src, const BitmapParams &dst);
77 const BitmapParams &src, const BitmapParams &dst);
80 const BitmapParams &src, const BitmapParams &dst);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Didct.h48 void idctrow0(int16 *blk, uint8 *pred, uint8 *dst, int width);
49 void idctrow1(int16 *blk, uint8 *pred, uint8 *dst, int width);
50 void idctrow2(int16 *blk, uint8 *pred, uint8 *dst, int width);
51 void idctrow3(int16 *blk, uint8 *pred, uint8 *dst, int width);
52 void idctrow4(int16 *blk, uint8 *pred, uint8 *dst, int width);
/frameworks/av/media/libstagefright/colorconversion/
H A DColorConverter.cpp97 BitmapParams dst(
106 err = convertYUV420Planar(src, dst);
110 err = convertCbYCrY(src, dst);
114 err = convertQCOMYUV420SemiPlanar(src, dst);
118 err = convertYUV420SemiPlanar(src, dst);
122 err = convertTIYUV420PackedSemiPlanar(src, dst);
136 const BitmapParams &src, const BitmapParams &dst) {
142 && src.cropWidth() == dst.cropWidth()
143 && src.cropHeight() == dst.cropHeight())) {
147 uint16_t *dst_ptr = (uint16_t *)dst
135 convertCbYCrY( const BitmapParams &src, const BitmapParams &dst) argument
199 convertYUV420Planar( const BitmapParams &src, const BitmapParams &dst) argument
293 convertQCOMYUV420SemiPlanar( const BitmapParams &src, const BitmapParams &dst) argument
365 convertYUV420SemiPlanar( const BitmapParams &src, const BitmapParams &dst) argument
439 convertTIYUV420PackedSemiPlanar( const BitmapParams &src, const BitmapParams &dst) argument
[all...]
/frameworks/av/libvideoeditor/vss/common/inc/
H A DVideoEditorResampler.h34 M4OSA_Int16 *dst,
38 M4OSA_Int16 *dst,

Completed in 246 milliseconds

12345678