Searched refs:pDest (Results 1 - 10 of 10) sorted by relevance

/frameworks/av/media/libeffects/lvm/lib/Bundle/src/
H A DLVM_Buffers.c64 LVM_FLOAT *pDest; local
72 pDest = pBuffer->pScratch;
138 pDest, /* Destination */
142 pDest += NumChannels * pBuffer->InDelaySamples; /* Update the destination pointer */
152 pDest, /* Destination */
209 LVM_INT16 *pDest; local
217 pDest = pBuffer->pScratch;
282 pDest, /* Destination */
285 pDest += NumChannels * pBuffer->InDelaySamples; /* Update the destination pointer */
295 pDest, /* Destinatio
476 LVM_INT16 *pDest; local
752 LVM_FLOAT *pDest; local
901 LVM_INT16 *pDest; local
[all...]
/frameworks/av/media/libstagefright/codecs/common/
H A DcmnMemory.c58 VO_U32 cmnMemCopy (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize) argument
62 memcpy (pDest, pSource, uSize);
82 VO_U32 cmnMemMove (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize) argument
86 memmove (pDest, pSource, uSize);
/frameworks/av/media/libstagefright/codecs/common/include/
H A DcmnMemory.h63 * \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);
H A DvoMem.h46 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/compile/mclinker/lib/Fragment/
H A DFragmentRef.cpp118 void FragmentRef::memcpy(void* pDest, size_t pNBytes, Offset pOffset) const { argument
132 pDest, region_frag->getRegion().begin() + total_offset, pNBytes);
140 std::memcpy(pDest, stub_frag->getContent() + total_offset, pNBytes);
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64LongBranchStub.cpp95 static bool isValidForADRP(uint64_t pSource, uint64_t pDest) { argument
96 int64_t imm = static_cast<int64_t>((helper_get_page_address(pDest) -
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFragmentRef.h57 /// @pDest - the destination address
61 void memcpy(void* pDest, size_t pNBytes, Offset pOffset = 0) const;
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp47 void mx4transform(float x, float y, float z, float w, const float* pM, float* pDest) { argument
48 pDest[0] = pM[0 + 4 * 0] * x + pM[0 + 4 * 1] * y + pM[0 + 4 * 2] * z + pM[0 + 4 * 3] * w;
49 pDest[1] = pM[1 + 4 * 0] * x + pM[1 + 4 * 1] * y + pM[1 + 4 * 2] * z + pM[1 + 4 * 3] * w;
50 pDest[2] = pM[2 + 4 * 0] * x + pM[2 + 4 * 1] * y + pM[2 + 4 * 2] * z + pM[2 + 4 * 3] * w;
51 pDest[3] = pM[3 + 4 * 0] * x + pM[3 + 4 * 1] * y + pM[3 + 4 * 2] * z + pM[3 + 4 * 3] * w;
117 float* pDest = & poly.vert[0].sx; local
120 memcpy(pDest , pTransformed + 4 * (pIndices[i ] - minIndex), 4 * sizeof(float));
121 memcpy(pDest + 4, pTransformed + 4 * (pIndices[i + 1] - minIndex), 4 * sizeof(float));
122 memcpy(pDest + 8, pTransformed + 4 * (pIndices[i + 2] - minIndex), 4 * sizeof(float));
/frameworks/wilhelm/src/android/
H A DAudioRecorder_to_android.cpp336 void *pDest = (char *)oldFront->mBuffer + ar->mBufferQueue.mSizeConsumed;
337 memcpy(pDest, pBuff->raw, bytesToCopy);
H A DAudioPlayer_to_android.cpp166 uint8_t *pDest = (uint8_t *)oldFront->mBuffer + ap->mBufferQueue.mSizeConsumed; local
171 memcpy(pDest, data, size);
187 memcpy(pDest, data, sizeConsumed);

Completed in 265 milliseconds