/dalvik/vm/ |
Bits.h | 33 INLINE u1 get1(unsigned const char* pSrc) 35 return *pSrc; 41 INLINE u2 get2BE(unsigned char const* pSrc) 43 return (pSrc[0] << 8) | pSrc[1]; 49 INLINE u4 get4BE(unsigned char const* pSrc) 51 return (pSrc[0] << 24) | (pSrc[1] << 16) | (pSrc[2] << 8) | pSrc[3] [all...] |
/development/tools/jdwpspy/ |
Common.h | 28 INLINE u1 get1(unsigned const char* pSrc) 30 return *pSrc; 36 INLINE u2 get2BE(unsigned char const* pSrc) 40 result = *pSrc++ << 8; 41 result |= *pSrc++; 49 INLINE u4 get4BE(unsigned char const* pSrc) 53 result = *pSrc++ << 24; 54 result |= *pSrc++ << 16; 55 result |= *pSrc++ << 8; 56 result |= *pSrc++ [all...] |
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
omxVCM4P10_InvTransformDequant_ChromaDC.c | 33 * pSrc - Pointer to the 2x2 array of the 2x2 Hadamard-transformed and 47 * - at least one of the following pointers is NULL: pSrc 48 * - pSrc or pDst is not aligned on an 8-byte boundary 52 const OMX_S16* pSrc, 62 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr) 63 armRetArgErrIf(armNot8ByteAligned(pSrc), OMX_Sts_BadArgErr); 69 m[0][0] = pSrc[0] + pSrc[1] + pSrc[2] + pSrc[3] [all...] |
armVCM4P10_UnpackBlock2x2.c | 39 const OMX_U8 *pSrc = *ppSrc; 50 Flag = *pSrc++; 54 Value = *pSrc++; 55 Value = Value | ((*pSrc++)<<8); 64 Value = *pSrc++; 75 *ppSrc = pSrc;
|
armVCM4P10_UnpackBlock4x4.c | 39 const OMX_U8 *pSrc = *ppSrc; 50 Flag = *pSrc++; 54 Value = *pSrc++; 55 Value = Value | ((*pSrc++)<<8); 64 Value = *pSrc++; 75 *ppSrc = pSrc;
|
armVCM4P10_InterpolateHalfHor_Luma.c | 31 * [in] pSrc Pointer to top-left corner of block used to interpolate 45 const OMX_U8* pSrc, 57 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr) 66 pSrc [pos - 2] - 67 5 * pSrc [pos - 1] + 68 20 * pSrc [pos] + 69 20 * pSrc [pos + 1] - 70 5 * pSrc [pos + 2] + 71 pSrc [pos + 3];
|
armVCM4P10_InterpolateHalfVer_Luma.c | 32 * [in] pSrc Pointer to top-left corner of block used to interpolate 46 const OMX_U8* pSrc, 58 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr) 68 pSrc [pos - 2 * iSrcStep] - 69 5 * pSrc [pos - 1 * iSrcStep] + 70 20 * pSrc [pos] + 71 20 * pSrc [pos + 1 * iSrcStep] - 72 5 * pSrc [pos + 2 * iSrcStep] + 73 pSrc [pos + 3 * iSrcStep];
|
omxVCM4P10_SADQuar_16x.c | 12 * This function will calculate SAD of pSrc with average of two Ref blocks 28 * This function calculates the SAD between one block (pSrc) and the average 34 * pSrc - Pointer to the original block; must be aligned on a 16-byte 51 * - One of more of the following pointers is NULL: pSrc, pSrcRef0, 58 const OMX_U8* pSrc, 69 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr) 74 armRetArgErrIf(armNot16ByteAligned(pSrc), OMX_Sts_BadArgErr) 79 (pSrc, pSrcRef0, pSrcRef1, iSrcStep,
|
omxVCM4P10_SADQuar_4x.c | 12 * This function will calculate SAD of pSrc with average of two Ref blocks 28 * This function calculates the SAD between one block (pSrc) and the average 34 * pSrc - Pointer to the original block; must be aligned on a 4-byte 51 * - One of more of the following pointers is NULL: pSrc, pSrcRef0, 58 const OMX_U8* pSrc, 69 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr); 74 armRetArgErrIf(armNot4ByteAligned(pSrc), OMX_Sts_BadArgErr); 78 (pSrc, pSrcRef0, pSrcRef1, iSrcStep,
|
omxVCM4P10_SADQuar_8x.c | 12 * This function will calculate SAD of pSrc with average of two Ref blocks 28 * This function calculates the SAD between one block (pSrc) and the average 34 * pSrc - Pointer to the original block; must be aligned on an 8-byte 51 * - One of more of the following pointers is NULL: pSrc, pSrcRef0, 58 const OMX_U8* pSrc, 69 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr) 75 armRetArgErrIf(armNot8ByteAligned(pSrc), OMX_Sts_BadArgErr) 80 (pSrc, pSrcRef0, pSrcRef1, iSrcStep,
|
/frameworks/base/media/libdrm/mobile1/src/objmng/ |
drm_decoder.c | 43 uint8_t *pDest, *pSrc; 58 pSrc = src; 59 for (i = 0; i < maxGroup && *srcLen - (pSrc - src) >= 4; i++) { 60 SKIP_CRLF(pSrc); 61 if (pSrc - src >= *srcLen) 63 tpChar = get_alphabet_index(*pSrc); /* to first byte */ 67 pSrc++; 68 SKIP_CRLF(pSrc); 69 tpChar = get_alphabet_index(*pSrc); 74 pSrc++ [all...] |
/frameworks/base/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/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
omxVCM4P10_InterpolateLuma_s.s | 20 ;// [in] pSrc Pointer to the source reference frame buffer 37 ;// pSrc or pDst is not NULL. 77 pSrc RN 0 148 STM pArgs, {pSrc,srcStep,pDst,dstStep} 182 SUB pSrc, pSrc, #2 192 SUB pSrc, pSrc, #2 201 SUB pSrc, pSrc, # [all...] |
armVCM4P10_InterpolateLuma_Copy_unsafe_s.s | 16 ;// Implements copy from an arbitrary aligned source memory location (pSrc) to an aligned 33 pSrc RN 0 51 AND Temp, pSrc, #3 52 BIC pSrc, pSrc, #3 62 M_LDR x0, [pSrc], srcStep 63 M_LDR x1, [pSrc], srcStep 65 M_LDR x2, [pSrc], srcStep 67 M_LDR x3, [pSrc], srcStep 73 LDR x1, [pSrc, #4 [all...] |
armVCM4P10_UnpackBlock4x4_s.s | 33 pSrc RN 2 ;// Persistent variables 43 LDR pSrc, [ppSrc] ;// Load pSrc 52 LDRB Flag, [pSrc], #1 ;// Preload <Flag> before <unpackLoop> 62 ;// that can be easily taken care by loading the data from <pSrc> stream as 73 LDRSBNE Value2,[pSrc,#1] ;// Load byte wise to avoid unaligned access 74 LDRBNE Value, [pSrc], #2 76 LDRSBEQ Value, [pSrc], #1 ;// Value = (OMX_U8) *pSrc++ 77 ORRNE Value,Value,Value2, LSL #8 ;// Value = (OMX_U16) *pSrc+ [all...] |
omxVCM4P10_InterpolateChroma.c | 33 * [in] pSrc Pointer to the source reference frame buffer 50 * pSrc or pDst is NULL. 62 const OMX_U8* pSrc, 72 ((OMX_U8*)pSrc, srcStep, pDst, dstStep, roi.width, roi.height, dx, dy);
|
/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) { 76 if ((mdName == null) || (mgfName == null) || (pSrc == null)) { 82 this.pSrc = pSrc; 120 return pSrc;
|
/frameworks/base/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...] |
/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...] |
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/ |
omxVCCOMM_Copy16x16.c | 30 * pSrc - pointer to the reference macroblock in the source frame; must be 46 * - one or more of the following pointers is NULL: pSrc, pDst 48 * boundary: pSrc, pDst 54 const OMX_U8 *pSrc, 63 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr); 65 armRetArgErrIf(!armIs16ByteAligned(pSrc), OMX_Sts_BadArgErr); 75 pDst[index] = pSrc[count];
|
omxVCCOMM_Copy8x8.c | 30 * pSrc - pointer to the reference block in the source frame; must be 46 * - one or more of the following pointers is NULL: pSrc, pDst 48 * boundary: pSrc, pDst 54 const OMX_U8 *pSrc, 63 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr); 65 armRetArgErrIf(!armIs8ByteAligned(pSrc), OMX_Sts_BadArgErr); 75 pDst[index] = pSrc[count];
|
/external/icu4c/common/ |
ustrtrns.c | 405 const uint8_t* pSrc = (const uint8_t*) src; 446 while(((ch = *pSrc) != 0) && (pDest < pDestLimit)) { 449 ++pSrc; 454 (t1 = (uint8_t)(pSrc[1] - 0x80)) <= 0x3f && 455 (t2 = (uint8_t)(pSrc[2] - 0x80)) <= 0x3f 459 pSrc += 3; 465 (t1 = (uint8_t)(pSrc[1] - 0x80)) <= 0x3f 468 pSrc += 2; 474 ++pSrc; /* continue after the lead byte */ 475 ch=utf8_nextCharSafeBodyTerminated(&pSrc, ch) [all...] |
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
omxVCM4P2_MCReconBlock.c | 33 * [in] pSrc pointer to the block in the reference plane. 42 const OMX_U8 *pSrc, 51 pTempSrc1 = pSrc; 52 pTempSrc2 = pSrc + srcStep; 75 * [in] pSrc pointer to the block in the reference plane. 84 const OMX_U8 *pSrc, 93 pTempSrc1 = pSrc; 120 * [in] pSrc pointer to the block in the reference plane. 129 const OMX_U8 *pSrc, 140 pTempSrc1 = pSrc; [all...] |