HomeSort by relevance Sort by last modified time
    Searched refs:pSrc (Results 1 - 25 of 276) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_InvTransformDequant_ChromaDC.c 48 * pSrc - Pointer to the 2x2 array of the 2x2 Hadamard-transformed and
62 * - at least one of the following pointers is NULL: pSrc
63 * - pSrc or pDst is not aligned on an 8-byte boundary
67 const OMX_S16* pSrc,
77 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
78 armRetArgErrIf(armNot8ByteAligned(pSrc), OMX_Sts_BadArgErr);
84 m[0][0] = pSrc[0] + pSrc[1] + pSrc[2] + pSrc[3]
    [all...]
armVCM4P10_UnpackBlock2x2.c 54 const OMX_U8 *pSrc = *ppSrc;
65 Flag = *pSrc++;
69 Value = *pSrc++;
70 Value = Value | ((*pSrc++)<<8);
79 Value = *pSrc++;
90 *ppSrc = pSrc;
armVCM4P10_UnpackBlock4x4.c 54 const OMX_U8 *pSrc = *ppSrc;
65 Flag = *pSrc++;
69 Value = *pSrc++;
70 Value = Value | ((*pSrc++)<<8);
79 Value = *pSrc++;
90 *ppSrc = pSrc;
armVCM4P10_InterpolateHalfHor_Luma.c 46 * [in] pSrc Pointer to top-left corner of block used to interpolate
60 const OMX_U8* pSrc,
72 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
81 pSrc [pos - 2] -
82 5 * pSrc [pos - 1] +
83 20 * pSrc [pos] +
84 20 * pSrc [pos + 1] -
85 5 * pSrc [pos + 2] +
86 pSrc [pos + 3];
armVCM4P10_InterpolateHalfVer_Luma.c 47 * [in] pSrc Pointer to top-left corner of block used to interpolate
61 const OMX_U8* pSrc,
73 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
83 pSrc [pos - 2 * iSrcStep] -
84 5 * pSrc [pos - 1 * iSrcStep] +
85 20 * pSrc [pos] +
86 20 * pSrc [pos + 1 * iSrcStep] -
87 5 * pSrc [pos + 2 * iSrcStep] +
88 pSrc [pos + 3 * iSrcStep];
omxVCM4P10_SADQuar_16x.c 27 * This function will calculate SAD of pSrc with average of two Ref blocks
43 * This function calculates the SAD between one block (pSrc) and the average
49 * pSrc - Pointer to the original block; must be aligned on a 16-byte
66 * - One of more of the following pointers is NULL: pSrc, pSrcRef0,
73 const OMX_U8* pSrc,
84 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
89 armRetArgErrIf(armNot16ByteAligned(pSrc), OMX_Sts_BadArgErr)
94 (pSrc, pSrcRef0, pSrcRef1, iSrcStep,
omxVCM4P10_SADQuar_4x.c 27 * This function will calculate SAD of pSrc with average of two Ref blocks
43 * This function calculates the SAD between one block (pSrc) and the average
49 * pSrc - Pointer to the original block; must be aligned on a 4-byte
66 * - One of more of the following pointers is NULL: pSrc, pSrcRef0,
73 const OMX_U8* pSrc,
84 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
89 armRetArgErrIf(armNot4ByteAligned(pSrc), OMX_Sts_BadArgErr);
93 (pSrc, pSrcRef0, pSrcRef1, iSrcStep,
omxVCM4P10_SADQuar_8x.c 27 * This function will calculate SAD of pSrc with average of two Ref blocks
43 * This function calculates the SAD between one block (pSrc) and the average
49 * pSrc - Pointer to the original block; must be aligned on an 8-byte
66 * - One of more of the following pointers is NULL: pSrc, pSrcRef0,
73 const OMX_U8* pSrc,
84 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
90 armRetArgErrIf(armNot8ByteAligned(pSrc), OMX_Sts_BadArgErr)
95 (pSrc, pSrcRef0, pSrcRef1, iSrcStep,
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/mips/
omxSP_FFTFwd_RToCCS_F32_Sfs.c 19 const OMX_F32* pSrc,
24 const OMX_F32* pSrc,
28 OMXResult omxSP_FFTFwd_RToCCS_F32_Sfs(const OMX_F32* pSrc,
34 if (!pSrc || !pDst || ((uintptr_t)pSrc & 31) || ((uintptr_t)pDst & 31) ||
46 return mips_FFTFwd_RToCCS_F32_complex(pSrc, pDst, pFFTStruct);
50 pDst[0] = (pSrc[0] + pSrc[1]);
52 pDst[2] = (pSrc[0] - pSrc[1])
    [all...]
omxSP_FFTInv_CCSToR_F32_Sfs.c 19 const OMX_F32* pSrc,
24 const OMX_F32* pSrc,
28 OMXResult omxSP_FFTInv_CCSToR_F32_Sfs(const OMX_F32* pSrc,
34 if (!pSrc || !pDst || (uintptr_t)pSrc & 31 || (uintptr_t)pDst & 31 ||
49 return mips_FFTInv_CCSToR_F32_complex(pSrc, pDst, pFFTStruct);
53 pDst[0] = (pSrc[0] + pSrc[2]) / 2;
54 pDst[1] = (pSrc[0] - pSrc[2]) / 2
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
ssse3.c 7 static void test_pabsb_c(char *pDst, char *pSrc, int xmm)
12 pDst[ i ] = pSrc[ i ] > 0 ? pSrc[i ] : -pSrc[ i ];
15 static void test_pabsw_c(short *pDst, short *pSrc, int xmm)
20 pDst[ i ] = pSrc[ i ] > 0 ? pSrc[i ] : -pSrc[ i ];
23 static void test_pabsd_c(int *pDst, int *pSrc, int xmm)
28 pDst[ i ] = pSrc[ i ] > 0 ? pSrc[i ] : -pSrc[ i ]
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 7 ; * [in] pSrc - pointer to the reference block in the source frame; must be aligned on an 16-byte boundary.
14 ; * - one or more of the following pointers is NULL: pSrc, pDst
15 ; * - one or more of the following pointers is not aligned on an 16-byte boundary: pSrc, pDst
30 pSrc RN 0
46 LDRD X0,[pSrc],#8 ;//pSrc after loading pSrc=pSrc+8
47 LDRD X1,[pSrc],Count ;//pSrc after loading pSrc=pSrc+ste
    [all...]
omxVCCOMM_Copy8x8_s.s 7 ; * [in] pSrc - pointer to the reference block in the source frame; must be aligned on an 8-byte boundary.
14 ; * - one or more of the following pointers is NULL: pSrc, pDst
15 ; * - one or more of the following pointers is not aligned on an 8-byte boundary: pSrc, pDst
30 pSrc RN 0
45 LDRD X0,[pSrc],Count ;//pSrc after loading : pSrc=pSrc+step
46 LDRD X1,[pSrc],Count
49 LDRD X0,[pSrc],Count
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_InterpolateLuma_s.s 34 ;// [in] pSrc Pointer to the source reference frame buffer
51 ;// pSrc or pDst is not NULL.
91 pSrc RN 0
162 STM pArgs, {pSrc,srcStep,pDst,dstStep}
196 SUB pSrc, pSrc, #2
206 SUB pSrc, pSrc, #2
215 SUB pSrc, pSrc, #
    [all...]
armVCM4P10_InterpolateLuma_Copy_unsafe_s.s 30 ;// Implements copy from an arbitrary aligned source memory location (pSrc) to an aligned
47 pSrc RN 0
65 AND Temp, pSrc, #3
66 BIC pSrc, pSrc, #3
76 M_LDR x0, [pSrc], srcStep
77 M_LDR x1, [pSrc], srcStep
79 M_LDR x2, [pSrc], srcStep
81 M_LDR x3, [pSrc], srcStep
87 LDR x1, [pSrc, #4
    [all...]
  /libcore/luni/src/main/java/javax/crypto/spec/
OAEPParameterSpec.java 34 private final PSource pSrc;
52 this.pSrc = PSource.PSpecified.DEFAULT;
68 * @param pSrc
72 * <code>pSrc</code> is null.
75 AlgorithmParameterSpec mgfSpec, PSource pSrc) {
80 } else if (pSrc == null) {
81 throw new NullPointerException("pSrc == null");
86 this.pSrc = pSrc;
124 return pSrc;
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 7 ; * [in] pSrc - pointer to the reference block in the source frame; must be aligned on an 16-byte boundary.
14 ; * - one or more of the following pointers is NULL: pSrc, pDst
15 ; * - one or more of the following pointers is not aligned on an 16-byte boundary: pSrc, pDst
28 pSrc RN 0
48 VLD1 {X0,X1},[pSrc@128],step ;// Load 16 bytes from 16 byte aligned pSrc and pSrc=pSrc + step after loading
49 VLD1 {X2,X3},[pSrc@128],step
50 VLD1 {X4,X5},[pSrc@128],ste
    [all...]
omxVCCOMM_Copy8x8_s.s 7 ; * [in] pSrc - pointer to the reference block in the source frame; must be aligned on an 8-byte boundary.
14 ; * - one or more of the following pointers is NULL: pSrc, pDst
15 ; * - one or more of the following pointers is not aligned on an 8-byte boundary: pSrc, pDst
28 pSrc RN 0
45 VLD1 {X0},[pSrc],step ;// Load 8 bytes from 8 byte aligned pSrc, pSrc=pSrc+step after load
46 VLD1 {X1},[pSrc],step
47 VLD1 {X2},[pSrc],ste
    [all...]
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/
detect.c 52 const OMX_F32* pSrc,
56 return omxSP_FFTFwd_RToCCS_F32(pSrc, pDst, pFFTSpec);
65 const OMX_F32* pSrc,
69 return omxSP_FFTInv_CCSToR_F32(pSrc, pDst, pFFTSpec);
78 const OMX_F32* pSrc,
83 const OMX_F32* pSrc,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
omxVCCOMM_Copy16x16.c 45 * pSrc - pointer to the reference macroblock in the source frame; must be
61 * - one or more of the following pointers is NULL: pSrc, pDst
63 * boundary: pSrc, pDst
69 const OMX_U8 *pSrc,
78 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
80 armRetArgErrIf(!armIs16ByteAligned(pSrc), OMX_Sts_BadArgErr);
90 pDst[index] = pSrc[count];
omxVCCOMM_Copy8x8.c 45 * pSrc - pointer to the reference block in the source frame; must be
61 * - one or more of the following pointers is NULL: pSrc, pDst
63 * boundary: pSrc, pDst
69 const OMX_U8 *pSrc,
78 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
80 armRetArgErrIf(!armIs8ByteAligned(pSrc), OMX_Sts_BadArgErr);
90 pDst[index] = pSrc[count];
  /bootable/recovery/minzip/
Bits.h 17 INLINE unsigned char get1(unsigned const char* pSrc)
19 return *pSrc;
25 INLINE unsigned short get2BE(unsigned char const* pSrc)
29 result = *pSrc++ << 8;
30 result |= *pSrc++;
38 INLINE unsigned int get4BE(unsigned char const* pSrc)
42 result = *pSrc++ << 24;
43 result |= *pSrc++ << 16;
44 result |= *pSrc++ << 8;
45 result |= *pSrc++
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ustrtrns.cpp 413 const uint8_t* pSrc = (const uint8_t*) src;
454 while(((ch = *pSrc) != 0) && (pDest < pDestLimit)) {
457 ++pSrc;
462 (t1 = (uint8_t)(pSrc[1] - 0x80)) <= 0x3f &&
463 (t2 = (uint8_t)(pSrc[2] - 0x80)) <= 0x3f
467 pSrc += 3;
473 (t1 = (uint8_t)(pSrc[1] - 0x80)) <= 0x3f
476 pSrc += 2;
482 ++pSrc; /* continue after the lead byte */
483 ch=utf8_nextCharSafeBodyTerminated(&pSrc, ch)
    [all...]
  /external/icu/icu4c/source/common/
ustrtrns.cpp 413 const uint8_t* pSrc = (const uint8_t*) src;
454 while(((ch = *pSrc) != 0) && (pDest < pDestLimit)) {
457 ++pSrc;
462 (t1 = (uint8_t)(pSrc[1] - 0x80)) <= 0x3f &&
463 (t2 = (uint8_t)(pSrc[2] - 0x80)) <= 0x3f
467 pSrc += 3;
473 (t1 = (uint8_t)(pSrc[1] - 0x80)) <= 0x3f
476 pSrc += 2;
482 ++pSrc; /* continue after the lead byte */
483 ch=utf8_nextCharSafeBodyTerminated(&pSrc, ch)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_MCReconBlock.c 48 * [in] pSrc pointer to the block in the reference plane.
57 const OMX_U8 *pSrc,
66 pTempSrc1 = pSrc;
67 pTempSrc2 = pSrc + srcStep;
90 * [in] pSrc pointer to the block in the reference plane.
99 const OMX_U8 *pSrc,
108 pTempSrc1 = pSrc;
135 * [in] pSrc pointer to the block in the reference plane.
144 const OMX_U8 *pSrc,
155 pTempSrc1 = pSrc;
    [all...]

Completed in 880 milliseconds

1 2 3 4 5 6 7 8 91011>>