/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/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...] |
/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...] |
utext.cpp | [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/chromium_org/third_party/icu/source/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/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/chromium_org/third_party/sqlite/src/src/ |
backup.c | 29 Btree *pDest; /* Destination b-tree file */ 31 int bDestLocked; /* True once a write-transaction is open on pDest */ 126 rc = sqlite3BtreeSetPageSize(p->pDest,sqlite3BtreeGetPageSize(p->pSrc),-1,0); 177 p->pDest = findBtree(pDestDb, pDestDb, zDestDb); 183 if( 0==p->pSrc || 0==p->pDest || setDestPgsz(p)==SQLITE_NOMEM ){ 217 Pager * const pDestPager = sqlite3BtreePager(p->pDest); 219 int nDestPgsz = sqlite3BtreeGetPageSize(p->pDest); 224 int nDestReserve = sqlite3BtreeGetReserve(p->pDest); 269 if( iDest==PENDING_BYTE_PAGE(p->pDest->pBt) ) continue; 341 Pager * const pDestPager = sqlite3BtreePager(p->pDest); /* Dest pager * [all...] |
shell.c | [all...] |
vdbe.c | [all...] |
tclsqlite.c | [all...] |
/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/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...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
custrtrn.c | [all...] |
/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/sqlite/dist/orig/ |
shell.c | [all...] |
/external/sqlite/dist/ |
shell.c | [all...] |