HomeSort by relevance Sort by last modified time
    Searched refs:pSrc (Results 26 - 50 of 211) sorted by null

12 3 4 5 6 7 8 9

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_InterpolateHalfDiag_Luma.c 48 * [in] pSrc Pointer to top-left corner of block used to interpolate
62 const OMX_U8* pSrc,
75 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
89 pSrc [pos - 2] -
90 5 * pSrc [pos - 1] +
91 20 * pSrc [pos] +
92 20 * pSrc [pos + 1] -
93 5 * pSrc [pos + 2] +
94 pSrc [pos + 3];
armVCM4P10_Interpolate_Chroma.c 44 * [in] pSrc Pointer to top-left corner of block used to
61 OMX_U8 *pSrc,
77 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
99 ACoeff * pSrc [y * iSrcStep + x] +
100 BCoeff * pSrc [y * iSrcStep + x + 1] +
101 CCoeff * pSrc [(y + 1) * iSrcStep + x] +
102 DCoeff * pSrc [(y + 1) * iSrcStep + x + 1] +
113 pDst [y * iDstStep + x] = pSrc [y * iSrcStep + x];
omxVCM4P10_InterpolateHalfHor_Luma.c 47 * pSrc - Pointer to the top-left corner of the block used to interpolate in
74 * pSrc, pDstLeft, or pDstRight
84 const OMX_U8* pSrc,
96 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
113 pSrc - 1,
126 pSrc,
omxVCM4P10_InvTransformDequant_LumaDC.c 48 * pSrc - Pointer to the 4x4 array of the 4x4 Hadamard-transformed and
62 * - at least one of the following pointers is NULL: pSrc
63 * - pSrc or pDst is not aligned on a 16-byte boundary
67 const OMX_S16* pSrc,
77 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
80 armRetArgErrIf(armNot16ByteAligned(pSrc), OMX_Sts_BadArgErr)
89 m1[i][0] = pSrc[j + 0] + pSrc[j + 2]; /* a+c */
90 m1[i][1] = pSrc[j + 1] + pSrc[j + 3]; /* b+d *
    [all...]
armVCM4P10_FwdTransformResidual4x4.c 44 * [in] pSrc Source 4x4 block
48 void armVCM4P10_FwdTransformResidual4x4(OMX_S16* pDst, OMX_S16 *pSrc)
55 int d0 = pSrc[i+0];
56 int d1 = pSrc[i+1];
57 int d2 = pSrc[i+2];
58 int d3 = pSrc[i+3];
armVCM4P10_TransformResidual4x4.c 44 * [in] pSrc Source 4x4 block
49 void armVCM4P10_TransformResidual4x4(OMX_S16* pDst, OMX_S16 *pSrc)
56 int d0 = pSrc[i+0];
57 int d1 = pSrc[i+1];
58 int d2 = pSrc[i+2];
59 int d3 = pSrc[i+3];
armVCM4P10_SADQuar.c 27 * This function will calculate SAD of pSrc with average of two Ref blocks
41 * This function calculates the SAD between one block (pSrc) and the
46 * [in] pSrc Pointer to the original block
61 const OMX_U8* pSrc,
76 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
85 SAD += armAbs(pSrc [y * iSrcStep + x] - ((
armVCM4P10_Interpolate_Luma.c 46 * [in] pSrc Pointer to top-left corner of block
58 const OMX_U8* pSrc,
72 pDst [y * iDstStep + x] = pSrc [y * iSrcStep + x];
87 * [in] pSrc Pointer to top-left corner of block used to
105 const OMX_U8 *pSrc,
116 const OMX_U8 *pSrcHalfHor = pSrc;
117 const OMX_U8 *pSrcHalfVer = pSrc;
120 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
141 armM4P10_Copy(pSrc, iSrcStep, pDst, iDstStep, iWidth, iHeight);
171 (pSrc, iSrcStep, pDst, iDstStep, iWidth, iHeight)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
omxVCCOMM_ComputeTextureErrorBlock.c 45 * pSrc - pointer to the source plane. This should be aligned on an 8-byte
61 * pSrc, pSrcRef, pDst.
62 * - pSrc is not 8-byte aligned.
70 const OMX_U8 *pSrc,
80 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
83 armRetArgErrIf(!armIs8ByteAligned(pSrc), OMX_Sts_BadArgErr);
91 y++, pSrc += srcStep)
95 pDst[count] = pSrc[x] - pSrcRef[count];
omxVCCOMM_ComputeTextureErrorBlock_SAD.c 46 * pSrc - pointer to the source plane; must be aligned on an 8-byte
63 * pointers is NULL: pSrc, pSrcRef, pDst and pDstSAD.
64 * - pSrc is not 8-byte aligned.
72 const OMX_U8 *pSrc,
83 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
87 armRetArgErrIf(!armIs8ByteAligned(pSrc), OMX_Sts_BadArgErr);
95 y++, pSrc += srcStep)
99 pDst[count] = pSrc[x] - pSrcRef[count];
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_Align_unsafe_s.s 40 pSrc RN 0
55 ;// Implements copy from an arbitrary aligned source memory location (pSrc) to a 4 byte aligned
69 ;// r0 - pointer to the new aligned location which will be used as pSrc
79 AND x, pSrc, #3
80 BIC pSrc, pSrc, #3
90 LDM pSrc, {x0, x1, x2}
92 ADD pSrc, pSrc, srcStep
101 LDM pSrc, {x0, x1, x2
    [all...]
armVCM4P10_InterpolateLuma_HalfDiagVerHor4x4_unsafe_s.s 67 pSrc RN 0
143 M_STR pSrc, ppSrc
147 M_LDR ValC, [pSrc], srcStep ;// Load [c3 c2 c1 c0]
148 M_LDR ValD, [pSrc], srcStep ;// Load [d3 d2 d1 d0]
149 M_LDR ValE, [pSrc], srcStep ;// Load [e3 e2 e1 e0]
150 SUB pSrc, pSrc, srcStep, LSL #2
153 LDR ValB, [pSrc] ;// Load [b3 b2 b1 b0]
161 LDR ValD, [pSrc, srcStep, LSL #1] ;// Load [d3 d2 d1 d0]
167 LDR ValF, [pSrc, srcStep, LSL #2] ;// Load [f3 f2 f1 f0
    [all...]
omxVCM4P10_TransformDequantChromaDCFromPair_s.s 49 pSrc RN 9
80 LDR pSrc, [ppSrc] ;// Load pSrc
89 LDRB Flag, [pSrc], #1 ;// Preload <Flag> before <unpackLoop>
95 LDRSBNE Value2,[pSrc,#1]
96 LDRBNE Value, [pSrc], #2 ;// Load byte wise to avoid unaligned access
98 LDRSBEQ Value, [pSrc], #1 ;// Value = (OMX_U8) *pSrc++
99 ORRNE Value,Value,Value2, LSL #8 ;// Value = (OMX_U16) *pSrc++
102 LDRBEQ Flag, [pSrc], #1 ;// Flag = (OMX_U8) *pSrc++, for next iteratio
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_InterpolateLuma_Align_unsafe_s.s 40 pSrc RN 0
55 ;// Implements copy from an arbitrary aligned source memory location (pSrc) to a 4 byte aligned
69 ;// r0 - pointer to the new aligned location which will be used as pSrc
79 AND x, pSrc, #3
80 BIC pSrc, pSrc, #3
90 LDM pSrc, {x0, x1, x2}
92 ADD pSrc, pSrc, srcStep
101 LDM pSrc, {x0, x1, x2
    [all...]
omxVCM4P10_InterpolateLuma_s.s 34 ;// [in] pSrc Pointer to the source reference frame buffer
51 ;// pSrc or pDst is not NULL.
81 pSrc RN 0
206 STM pArgs, {pSrc,srcStep,pDst,dstStep}
233 ADD Temp, pSrc, srcStep, LSL #1
234 VLD1 dSrc0, [pSrc], srcStep
236 VLD1 dSrc1, [pSrc]
250 SUB pSrc, pSrc, #2
267 SUB pSrc, pSrc, #2
    [all...]
armVCM4P10_Interpolate_Chroma_s.s 51 pSrc RN 0
166 VLD1 dRow0a, [pSrc], Step1 ;// 0a
170 VLD1 dRow0b, [pSrc], SrcStepMinus1 ;// 0b
190 VLD1 dRow1a, [pSrc], Step1 ;// 1a
192 VLD1 dRow1b, [pSrc], SrcStepMinus1 ;// 1b
194 VLD1 dRow2a, [pSrc], Step1 ;// 2a
196 VLD1 dRow2b, [pSrc], SrcStepMinus1 ;// 2b
199 VLD1 dRow3a, [pSrc], Step1 ;// 3a
203 VLD1 dRow3b, [pSrc], SrcStepMinus1 ;// 3b
205 VLD1 dRow0a, [pSrc], Step1 ;// 0
    [all...]
omxVCM4P10_TransformDequantChromaDCFromPair_s.s 52 pSrc RN 9
88 LDR pSrc, [ppSrc] ;// Load pSrc
97 LDRB Flag, [pSrc], #1 ;// Preload <Flag> before <unpackLoop>
102 LDRSBNE Value2,[pSrc,#1]
103 LDRBNE Value, [pSrc], #2 ;// Load byte wise to avoid unaligned access
105 LDRSBEQ Value, [pSrc], #1 ;// Value = (OMX_U8) *pSrc++
106 ORRNE Value,Value,Value2, LSL #8 ;// Value = (OMX_U16) *pSrc++
109 LDRBEQ Flag, [pSrc], #1 ;// Flag = (OMX_U8) *pSrc++, for next iteratio
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
OAEPParameterSpecTest.java 41 * mgfSpec, PSource pSrc) method testing. Tests that NullPointerException
50 PSource pSrc = PSource.PSpecified.DEFAULT;
53 new OAEPParameterSpec(null, mgfName, mgfSpec, pSrc);
60 new OAEPParameterSpec(mdName, null, mgfSpec, pSrc);
69 + "null pSrc.");
100 PSource pSrc = PSource.PSpecified.DEFAULT;
103 mgfSpec, pSrc);
116 PSource pSrc = PSource.PSpecified.DEFAULT;
119 mgfSpec, pSrc);
132 PSource pSrc = PSource.PSpecified.DEFAULT
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
OAEPParameterSpecTest.java 41 * mgfSpec, PSource pSrc) method testing. Tests that NullPointerException
50 PSource pSrc = PSource.PSpecified.DEFAULT;
53 new OAEPParameterSpec(null, mgfName, mgfSpec, pSrc);
60 new OAEPParameterSpec(mdName, null, mgfSpec, pSrc);
69 + "null pSrc.");
100 PSource pSrc = PSource.PSpecified.DEFAULT;
103 mgfSpec, pSrc);
116 PSource pSrc = PSource.PSpecified.DEFAULT;
119 mgfSpec, pSrc);
132 PSource pSrc = PSource.PSpecified.DEFAULT
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_DCT8x8blk.c 48 * pSrc - pointer to the start of the linearly arranged input buffer; must
61 * - pSrc or pDst is NULL.
62 * - pSrc or pDst is not 16-byte aligned.
66 OMXResult omxVCM4P2_DCT8x8blk (const OMX_S16 *pSrc, OMX_S16 *pDst)
71 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
72 armRetArgErrIf(!armIs16ByteAligned(pSrc), OMX_Sts_BadArgErr);
86 sum += pSrc[(x * 8) + y] *
omxVCM4P2_IDCT8x8blk.c 50 * pSrc - pointer to the start of the linearly arranged IDCT input buffer;
64 * - pSrc or pDst is NULL.
65 * - pSrc or pDst is not 16-byte aligned.
68 OMXResult omxVCM4P2_IDCT8x8blk (const OMX_S16 *pSrc, OMX_S16 *pDst)
73 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
74 armRetArgErrIf(!armIs16ByteAligned(pSrc), OMX_Sts_BadArgErr);
87 sum += pSrc[(u * 8) + v] *
omxVCM4P2_TransRecBlockCoef_inter.c 49 * pSrc -pointer to the residuals to be encoded; must be aligned on an
69 * - pSrc
77 const OMX_S16 *pSrc,
94 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
97 armRetArgErrIf(!armIs16ByteAligned(pSrc), OMX_Sts_BadArgErr);
102 omxVCM4P2_DCT8x8blk (pSrc, pDst);
  /external/pdfium/xfa/src/fgas/src/crt/
fx_encode.cpp 29 void FX_SwapByteOrderCopy(const FX_WCHAR* pSrc,
32 FXSYS_assert(pSrc != NULL && pDst != NULL);
34 iLength = FXSYS_wcslen(pSrc);
39 wch = (FX_WORD)*pSrc++;
46 wch = (FX_WORD)*pSrc++;
57 FX_WORD* pSrc = (FX_WORD*)pBuffer;
60 pDst[iLength] = (FX_WCHAR)pSrc[iLength];
80 const FX_WCHAR* pSrc = (const FX_WCHAR*)pBuffer;
83 *pDst++ = (FX_WORD)*pSrc++;
105 const FX_CHAR* pSrc,
    [all...]
fx_algorithm.cpp 52 int32_t FX_Base64EncodeA(const uint8_t* pSrc, int32_t iSrcLen, FX_CHAR* pDst) {
53 FXSYS_assert(pSrc != NULL);
69 ((uint8_t*)&srcData)[0] = *pSrc++;
70 ((uint8_t*)&srcData)[1] = *pSrc++;
71 ((uint8_t*)&srcData)[2] = *pSrc++;
75 ((uint8_t*)&srcData)[0] = *pSrc++;
77 ((uint8_t*)&srcData)[1] = *pSrc++;
140 int32_t FX_Base64DecodeA(const FX_CHAR* pSrc, int32_t iSrcLen, uint8_t* pDst) {
141 FXSYS_assert(pSrc != NULL);
145 while (iSrcLen > 0 && pSrc[iSrcLen - 1] == '=') {
    [all...]
  /frameworks/av/media/libeffects/downmix/
EffectDownmix.c 293 int16_t *pSrc, *pDst;
316 pSrc = inBuffer->s16;
329 pDst[0] = clamp16(pDst[0] + pSrc[0]);
330 pDst[1] = clamp16(pDst[1] + pSrc[1]);
331 pSrc += pDownmixer->input_channel_count;
337 pDst[0] = pSrc[0];
338 pDst[1] = pSrc[1];
339 pSrc += pDownmixer->input_channel_count;
350 downmixInputChannelMask, pSrc, pDst, numFrames, accumulate)) {
360 Downmix_foldFromQuad(pSrc, pDst, numFrames, accumulate)
    [all...]

Completed in 741 milliseconds

12 3 4 5 6 7 8 9