Home
last modified time | relevance | path

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

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