HomeSort by relevance Sort by last modified time
    Searched defs:pDest (Results 1 - 21 of 21) sorted by null

  /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
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_decoder.c 43 uint8_t *pDest, *pSrc;
57 pDest = dest; /* start to decode src to dest */
66 pDest[0] = tpChar << 2;
72 pDest[0] |= (tpChar >> 4);
73 pDest[1] = tpChar << 4; /* to second byte */
80 return pDest - dest + 1;
81 pDest[1] |= (tpChar >> 2);
82 pDest[2] = tpChar << 6; /* to third byte */
89 return pDest - dest + 2;
90 pDest[2] |= tpChar
    [all...]
  /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...]
utext.cpp     [all...]
  /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/wilhelm/src/android/
AudioRecorder_to_android.cpp 232 short *pDest = (short*)((char *)oldFront->mBuffer + ar->mBufferQueue.mSizeConsumed);
239 memcpy (pDest, pBuff->i16, pBuff->size);
256 memcpy (pDest, pBuff->i16, pBuff->size);
AudioPlayer_to_android.cpp 122 uint8_t *pDest = (uint8_t *)oldFront->mBuffer + ap->mBufferQueue.mSizeConsumed;
127 memcpy (pDest, data, size);
143 memcpy (pDest, data, sizeConsumed);
    [all...]
  /development/tools/etc1tool/
etc1tool.cpp 375 etc1_byte* pDest = pDiffImage;
378 int diff = *pSrc++ - *pDest;
386 *pDest++ = (png_byte) diff;
  /external/icu4c/test/perf/normperf/
normperf.h 105 UChar* pDest;
120 retVal = (*fn)(lines[i].name,lines[i].len,pDest,destLen, options, status);
124 retVal = (*fn)(lines[i].name,-1,pDest,destLen, options, status);
129 retVal = (*fn)(src,srcLen,pDest,destLen, options, status);
131 retVal = (*fn)(src,-1,pDest,destLen, options, status);
152 pDest = dest;
163 pDest = (UChar*) malloc(destLen * U_SIZEOF_UCHAR);
169 if(dest != pDest){
170 free(pDest);
  /external/icu4c/test/cintltst/
custrtrn.c     [all...]
  /external/libnfc-nxp/src/
phFriNfc_Llcp.c 98 phNfc_sData_t * pDest = NULL;
105 pDest = phOsalNfc_GetMemory(sizeof(phNfc_sData_t));
106 if (pDest == NULL)
111 pDest->buffer = phOsalNfc_GetMemory(pOrig->length);
112 if (pDest->buffer == NULL)
117 memcpy(pDest->buffer, pOrig->buffer, pOrig->length);
118 pDest->length = pOrig->length;
120 return pDest;
123 if (pDest != NULL)
125 if (pDest->buffer != NULL
    [all...]
  /external/aac/libAACdec/src/
aacdec_hcr.cpp 754 UCHAR *pDest;
    [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 44 void mx4transform(float x, float y, float z, float w, const float* pM, float* pDest) {
45 pDest[0] = pM[0 + 4 * 0] * x + pM[0 + 4 * 1] * y + pM[0 + 4 * 2] * z + pM[0 + 4 * 3] * w;
46 pDest[1] = pM[1 + 4 * 0] * x + pM[1 + 4 * 1] * y + pM[1 + 4 * 2] * z + pM[1 + 4 * 3] * w;
47 pDest[2] = pM[2 + 4 * 0] * x + pM[2 + 4 * 1] * y + pM[2 + 4 * 2] * z + pM[2 + 4 * 3] * w;
48 pDest[3] = pM[3 + 4 * 0] * x + pM[3 + 4 * 1] * y + pM[3 + 4 * 2] * z + pM[3 + 4 * 3] * w;
137 float* pDest = & poly.vert[0].sx;
140 memcpy(pDest , pTransformed + 4 * (pIndices[i ] - minIndex), 4 * sizeof(float));
141 memcpy(pDest + 4, pTransformed + 4 * (pIndices[i + 1] - minIndex), 4 * sizeof(float));
142 memcpy(pDest + 8, pTransformed + 4 * (pIndices[i + 2] - minIndex), 4 * sizeof(float));
  /external/quake/quake/src/WinQuake/
gl_draw.cpp     [all...]
  /external/sqlite/dist/orig/
shell.c     [all...]
sqlite3.c     [all...]
  /external/sqlite/dist/
shell.c     [all...]
sqlite3.c     [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_IDCT_s.h 118 pDest RN 2 ;// destination data buffer
135 ;// pDest = r2 = Pointer to output data
216 M_STR pDest, ppDest
220 M_ADR pDest, pBlk
301 STMIA pDest, {xi4, xi5, xi6, xi7}
381 LDRD xi0, [pDest, #8] ;// j2,j6 scaled
399 LDRD xi0, [pDest] ;// j0, j4 scaled
433 STMIA pDest!, {ra01, ra23, ra45, ra67}
435 STMIA pDest!, {rb01, rb23, rb45, rb67}
438 SUB pSrc, pDest, #(64*2
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
armCOMM_IDCT_s.h 118 pDest RN 2 ;// destination data buffer
135 ;// pDest = r2 = Pointer to output data
216 M_STR pDest, ppDest
220 M_ADR pDest, pBlk
301 STMIA pDest, {xi4, xi5, xi6, xi7}
386 LDRD xi0, [pDest, #8] ;// j2,j6 scaled
405 LDRD xi0, [pDest] ;// j0, j4 scaled
439 STMIA pDest!, {ra01, ra23, ra45, ra67}
441 STMIA pDest!, {rb01, rb23, rb45, rb67}
444 SUB pSrc, pDest, #(64*2
    [all...]

Completed in 839 milliseconds