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

  /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...]
  /system/wlan/ti/sta_dk_4_0_4_32/pform/common/src/
osClsfr.c 112 NWIF_CLSFR_ENTRY *pSrc, *pDest;
126 pDest = (NWIF_CLSFR_ENTRY *)(pAdapter->qosClassifierTable);
132 pDest[clsfrIndex].ip = pSrc[clsfrIndex].ip;
133 pDest[clsfrIndex].port = pSrc[clsfrIndex].port;
134 pDest[clsfrIndex].pri = pSrc[clsfrIndex].pri;
  /frameworks/base/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/third_party/icu/source/common/
ustrtrns.c 44 UChar *pDest;
63 pDest = dest;
73 if(pDest < destLimit) {
74 *pDest++ = (UChar)ch;
94 if(pDest < destLimit) {
95 *pDest++ = (UChar)ch;
101 if((pDest + 2) <= destLimit) {
102 *pDest++ = U16_LEAD(ch);
103 *pDest++ = U16_TRAIL(ch);
118 reqLength += (int32_t)(pDest - dest)
    [all...]
utext.cpp     [all...]
  /external/icu4c/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...]
  /system/media/opensles/libopensles/
android_AudioRecorder.cpp 224 short *pDest = (short*)((char *)oldFront->mBuffer + ar->mBufferQueue.mSizeConsumed);
231 memcpy (pDest, pBuff->i16, pBuff->size);
248 memcpy (pDest, pBuff->i16, pBuff->size);
  /development/tools/etc1tool/
etc1tool.cpp 375 etc1_byte* pDest = pDiffImage;
378 int diff = *pSrc++ - *pDest;
386 *pDest++ = (png_byte) diff;
  /external/chromium/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/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/chromium/third_party/icu/source/test/cintltst/
custrtrn.c     [all...]
  /external/icu4c/test/cintltst/
custrtrn.c     [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 46 void mx4transform(float x, float y, float z, float w, const float* pM, float* pDest) {
47 pDest[0] = pM[0 + 4 * 0] * x + pM[0 + 4 * 1] * y + pM[0 + 4 * 2] * z + pM[0 + 4 * 3] * w;
48 pDest[1] = pM[1 + 4 * 0] * x + pM[1 + 4 * 1] * y + pM[1 + 4 * 2] * z + pM[1 + 4 * 3] * w;
49 pDest[2] = pM[2 + 4 * 0] * x + pM[2 + 4 * 1] * y + pM[2 + 4 * 2] * z + pM[2 + 4 * 3] * w;
50 pDest[3] = pM[3 + 4 * 0] * x + pM[3 + 4 * 1] * y + pM[3 + 4 * 2] * z + pM[3 + 4 * 3] * w;
139 float* pDest = & poly.vert[0].sx;
142 memcpy(pDest , pTransformed + 4 * (pIndices[i ] - minIndex), 4 * sizeof(float));
143 memcpy(pDest + 4, pTransformed + 4 * (pIndices[i + 1] - minIndex), 4 * sizeof(float));
144 memcpy(pDest + 8, pTransformed + 4 * (pIndices[i + 2] - minIndex), 4 * sizeof(float));
  /external/quake/quake/src/WinQuake/
gl_draw.cpp     [all...]
  /external/sqlite/dist/
shell.c     [all...]
sqlite3.c     [all...]

Completed in 1220 milliseconds