HomeSort by relevance Sort by last modified time
    Searched refs:pMem (Results 1 - 23 of 23) sorted by null

  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_framedecoder.h 91 void *pMem);
98 void *pMem);
101 void pvmp3_resetDecoder(void *pMem);
104 void fillMainDataBuf(void *pMem, int32 temp);
pvmp3_seek_synch.h 92 void *pMem);
pvmp3_seek_synch.cpp 50 pMem = void pointer to hide the internal implementation of the library
131 void *pMem) /* bit stream structure */
138 pVars = (tmp3dec_file *)pMem;
pvmp3_framedecoder.cpp 48 pMem = void pointer to hide the internal implementation of the library
61 pMem contents are modified.
158 void *pMem)
168 tmp3dec_file *pVars = (tmp3dec_file *)pMem;
566 void fillMainDataBuf(void *pMem, int32 temp)
568 tmp3dec_file *pVars = (tmp3dec_file *)pMem;
651 void *pMem)
657 pVars = (tmp3dec_file *)pMem;
753 pvmp3_resetDecoder(pMem);
763 void pvmp3_resetDecoder(void *pMem)
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
pvmp4audiodecoder_api.h 340 void *pMem);
344 void *pMem);
348 void *pMem);
351 void *pMem);
355 void *pMem);
359 void *pMem,
pvmp4audiodecoderinitlibrary.cpp 69 pMem = pointer to allocated memory, of the size returned by the function
131 pVars = pMem;
164 MODIFY(pMem)
243 void *pMem)
247 pVars = (tDec_Int_File *)pMem;
352 pMem = pointer to allocated memory, of the size returned by the function
390 void *pMem)
394 pVars = (tDec_Int_File *)pMem;
pvmp4audiodecoderconfig.cpp 56 pMem = void pointer to hide the internal implementation of the library
65 (The memory set aside in pMem performs this task)
78 pMem contents are modified.
180 void *pMem)
191 pVars = (tDec_Int_File *)pMem;
pvmp4setaudioconfig.cpp 48 pMem = void pointer to hide the internal implementation of the library
57 (The memory set aside in pMem performs this task)
70 pMem contents are modified.
172 void *pMem,
187 pVars = (tDec_Int_File *)pMem;
pvmp4audiodecoderresetbuffer.cpp 38 pMem = void pointer to hide the internal implementation of the library
46 (The memory set aside in pMem performs this task)
53 pMem contents are modified.
54 pMem->perChan[0].time_quant[0-1023]: contents are set to zero
55 pMem->perChan[1].time_quant[0-1023]: contents are set to zero
56 pMem->bno = 1
160 OSCL_EXPORT_REF void PVMP4AudioDecoderResetBuffer(void *pMem)
178 pVars = (tDec_Int_File *)pMem;
pvmp4audiodecoderframe.cpp 181 pMem = void pointer to hide the internal implementation of the library
190 (The memory set aside in pMem performs this task)
203 pMem contents are modified.
507 void *pMem)
539 pVars = (tDec_Int_File *)pMem;
787 PVMP4AudioDecoderDisableAacPlus(pExt, pMem);
    [all...]
  /external/libnfc-nxp/Linux_x86/
phOsalNfc.c 61 void *pMem = (void *)malloc(size);
62 return pMem;
67 * This function deallocates memory region pointed to by \a pMem.
69 * \param pMem pointer to memory block to be freed.
71 void phOsalNfc_FreeMemory(void *pMem)
73 if(NULL != pMem)
74 free(pMem);
  /frameworks/base/media/libstagefright/codecs/mp3dec/include/
pvmp3decoder_api.h 242 void *pMem);
244 void pvmp3_resetDecoder(void *pMem);
247 void *pMem);
  /frameworks/base/media/libeffects/testlibs/
AudioEqualizer.cpp 38 AudioEqualizer * AudioEqualizer::CreateInstance(void * pMem, int nBands,
42 LOGV("AudioEqualizer::CreateInstance(pMem=%p, nBands=%d, nChannels=%d, "
44 pMem, nBands, nChannels, sampleRate, nPresets);
47 if (pMem == NULL) {
48 pMem = malloc(GetInstanceSize(nBands));
49 if (pMem == NULL) {
54 return new (pMem) AudioEqualizer(pMem, nBands, nChannels, sampleRate,
287 AudioEqualizer::AudioEqualizer(void * pMem, int nBands, int nChannels,
293 assert(pMem != NULL)
    [all...]
AudioEqualizer.h 64 // pMem A memory buffer of at least the size returned by
77 // returns The instance if success. NULL if pMem is NULL and allocation
79 static AudioEqualizer * CreateInstance(void * pMem, int nBands,
102 // a NULL pointer was passed to CreateInstance as pMem.
230 // pMem Memory buffer for bands.
233 // ownMem Whether pMem is owned by me.
240 AudioEqualizer(void * pMem, int nBands, int nChannels, int sampleRate,
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
cmnMemory.c 40 VO_U32 cmnMemFree (VO_S32 uID, VO_PTR pMem)
42 free (pMem);
  /frameworks/base/media/libstagefright/codecs/common/
cmnMemory.c 40 VO_U32 cmnMemFree (VO_S32 uID, VO_PTR pMem)
42 free (pMem);
  /external/libnfc-nxp/src/
phOsalNfc.h 174 * \param[in] pMem Pointer to the memory block to deallocated
177 void phOsalNfc_FreeMemory(void * pMem);
  /hardware/qcom/media/mm-video/vidc/venc/test/
venc_test.cpp 273 void* PmemMalloc(OMX_QCOM_PLATFORM_PRIVATE_PMEM_INFO* pMem, int nSize)
277 if (!pMem)
280 pMem->pmem_fd = open("/dev/pmem_adsp", O_RDWR | O_SYNC);
281 if ((int)(pMem->pmem_fd) < 0)
284 pMem->offset = 0;
287 MAP_SHARED, pMem->pmem_fd, pMem->offset);
290 close(pMem->pmem_fd);
291 pMem->pmem_fd = -1;
294 D("allocated pMem->fd = %d pvirt=0x%x, pMem->phys=0x%x, size = %d", pMem->pmem_fd
    [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
sqlite3.c.orig     [all...]
  /external/srec/portable/src/
pmemfixed.c 588 void PortFree(void* pMem)
598 tmpVal = ((unsigned int*)pMem)[-MEM_BLOCK_HDR_OFFSET+MEM_POOL_ID_OFFSET];
603 ((unsigned int*)pMem)[-MEM_BLOCK_HDR_OFFSET+NEXT_BLOCK_PTR_OFFSET] = (unsigned int)pCurrentHead;
604 pMemPools[poolId] = (char*) & (((unsigned int*)pMem)[-MEM_BLOCK_HDR_OFFSET]);
  /hardware/ti/omap3/dspbridge/inc/
wcdioctl.h 409 PVOID pMem;
415 PVOID pMem;
419 PVOID pMem;
  /hardware/ti/omap3/dspbridge/libbridge/inc/
wcdioctl.h 409 PVOID pMem;
415 PVOID pMem;
419 PVOID pMem;

Completed in 644 milliseconds