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

1 2

  /external/icu4c/common/
ustrtrns.cpp 48 UChar *pDest;
68 pDest = dest;
78 if(pDest < destLimit) {
79 *pDest++ = (UChar)ch;
99 if(pDest < destLimit) {
100 *pDest++ = (UChar)ch;
106 if(pDest!=NULL && ((pDest + 2) <= destLimit)) {
107 *pDest++ = U16_LEAD(ch);
108 *pDest++ = U16_TRAIL(ch)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ustrtrns.c 44 UChar *pDest;
64 pDest = dest;
74 if(pDest < destLimit) {
75 *pDest++ = (UChar)ch;
95 if(pDest < destLimit) {
96 *pDest++ = (UChar)ch;
102 if((pDest + 2) <= destLimit) {
103 *pDest++ = U16_LEAD(ch);
104 *pDest++ = U16_TRAIL(ch);
119 reqLength += (int32_t)(pDest - dest)
    [all...]
  /frameworks/av/media/libstagefright/codecs/common/
cmnMemory.c 50 VO_U32 cmnMemCopy (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize)
52 memcpy (pDest, pSource, uSize);
66 VO_U32 cmnMemMove (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize)
68 memmove (pDest, pSource, uSize);
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Buffers.c 64 LVM_INT16 *pDest;
72 pDest = pBuffer->pScratch;
137 pDest, /* Destination */
140 pDest += NumChannels * pBuffer->InDelaySamples; /* Update the destination pointer */
150 pDest, /* Destination */
290 LVM_INT16 *pDest;
307 pDest = *pProcessed; /* The start of the output buffer */
316 pDest, /* Detsination */
318 pDest += 2 * pBuffer->OutDelaySamples; /* Update the output pointer */
321 *pToProcess = pDest; /* Set the address to start processing *
    [all...]
  /frameworks/av/media/libstagefright/codecs/common/include/
cmnMemory.h 63 * \param pDest [in/out] address of destination memory
68 VO_U32 cmnMemCopy (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
92 * \param pDest [in/out] address of destination memory
97 VO_U32 cmnMemMove (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
voMem.h 46 VO_U32 (VO_API * Copy) (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
49 VO_U32 (VO_API * Move) (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_IDCT8x8blk_s.s 57 ;// pDest RN 2 ;// destination data buffer
62 pDest RN 2
65 MOV pDest, pDst
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_IDCT8x8blk_s.s 57 ;// pDest RN 2 ;// destination data buffer
62 pDest RN 2
65 MOV pDest, pDst
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_tile.c 613 uint *pDest = z;
632 memcpy(pDest, ptrc, 4 * w);
633 pDest += dstStride;
646 pDest[j] = (ptrc[j] << 8) | ((ptrc[j] >> 16) & 0xff);
648 pDest += dstStride;
661 pDest[j] = (ptrc[j] & 0xffffff00) | ((ptrc[j] >> 24) & 0xff);
663 pDest += dstStride;
675 pDest[j] = (ptrc[j] << 16) | ptrc[j];
677 pDest += dstStride;
689 pDest[j] = 0
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_tile.c 613 uint *pDest = z;
632 memcpy(pDest, ptrc, 4 * w);
633 pDest += dstStride;
646 pDest[j] = (ptrc[j] << 8) | ((ptrc[j] >> 16) & 0xff);
648 pDest += dstStride;
661 pDest[j] = (ptrc[j] & 0xffffff00) | ((ptrc[j] >> 24) & 0xff);
663 pDest += dstStride;
675 pDest[j] = (ptrc[j] << 16) | ptrc[j];
677 pDest += dstStride;
689 pDest[j] = 0
    [all...]