/external/chromium_org/third_party/sqlite/src/src/ |
vdbemem.c | 28 ** If pMem is an object with a valid string representation, this routine 32 ** If pMem is not a string object, or the encoding of the string 40 int sqlite3VdbeChangeEncoding(Mem *pMem, int desiredEnc){ 42 assert( (pMem->flags&MEM_RowSet)==0 ); 45 if( !(pMem->flags&MEM_Str) || pMem->enc==desiredEnc ){ 48 assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); 56 rc = sqlite3VdbeMemTranslate(pMem, (u8)desiredEnc); 58 assert(rc==SQLITE_OK || pMem->enc!=desiredEnc) [all...] |
utf.c | 200 ** This routine transforms the internal text encoding used by pMem to 202 ** encoding, or if *pMem does not contain a string value. 204 int sqlite3VdbeMemTranslate(Mem *pMem, u8 desiredEnc){ 212 assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); 213 assert( pMem->flags&MEM_Str ); 214 assert( pMem->enc!=desiredEnc ); 215 assert( pMem->enc!=0 ); 216 assert( pMem->n>=0 ); 221 sqlite3VdbeMemPrettyPrint(pMem, zBuf) [all...] |
vdbeaux.c | 909 Mem *pMem = pOp->p4.pMem; 910 assert( (pMem->flags & MEM_Null)==0 ); 911 if( pMem->flags & MEM_Str ){ 912 zP4 = pMem->z; 913 }else if( pMem->flags & MEM_Int ){ 914 sqlite3_snprintf(nTemp, zTemp, "%lld", pMem->u.i); 915 }else if( pMem->flags & MEM_Real ){ 916 sqlite3_snprintf(nTemp, zTemp, "%.16g", pMem->r); 918 assert( pMem->flags & MEM_Blob ) [all...] |
vdbeapi.c | 561 Mem *pMem; 564 pMem = p->pMem; 566 if( (pMem->flags & MEM_Agg)==0 ){ 568 sqlite3VdbeMemReleaseExternal(pMem); 569 pMem->flags = MEM_Null; 570 pMem->z = 0; 572 sqlite3VdbeMemGrow(pMem, nByte, 0); 573 pMem->flags = MEM_Agg; 574 pMem->u.pDef = p->pFunc [all...] |
/frameworks/av/media/libeffects/testlibs/ |
AudioEqualizer.cpp | 38 AudioEqualizer * AudioEqualizer::CreateInstance(void * pMem, int nBands, 42 ALOGV("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/av/media/libstagefright/codecs/common/ |
cmnMemory.c | 38 VO_U32 cmnMemFree (VO_S32 uID, VO_PTR pMem) 40 free (pMem);
|
/external/libnfc-nxp/Linux_x86/ |
phOsalNfc.c | 63 void *pMem = (void *)malloc(size); 64 return pMem; 69 * This function deallocates memory region pointed to by \a pMem. 71 * \param pMem pointer to memory block to be freed. 73 void phOsalNfc_FreeMemory(void *pMem) 75 if(NULL != pMem) 76 free(pMem);
|
/external/kernel-headers/original/linux/ |
android_pmem.h | 24 /* This ioctl will allocate pmem space, backing the file, it will fail 28 /* This will connect a one pmem file to another, pass the file that is already 32 /* Returns the total size of the pmem region it is sent to as a pmem_region
|
/device/lge/mako/camera/QCamera/HAL/core/inc/ |
QCameraHWI_Mem.h | 42 // buffers. The heap may be backed by pmem (when pmem_pool contains 43 // the name of a /dev/pmem* file), or by ashmem (when pmem_pool == NULL).
|
/device/lge/mako/camera/ |
QCameraHWI_Mem.h | 41 // buffers. The heap may be backed by pmem (when pmem_pool contains 42 // the name of a /dev/pmem* file), or by ashmem (when pmem_pool == NULL).
|
QCameraHWI_Mem.cpp | 244 ALOGI("constructing MemPool %s backed by pmem pool %s: " 261 ALOGE("failed to construct master heap for pmem pool %s", pmem_pool); 275 ALOGE("pmem pool %s ioctl(PMEM_GET_SIZE) error %s (%d)", 282 ALOGE("pmem pool %s ioctl(fd = %d, PMEM_GET_SIZE) is %ld", 301 //buffer as active and pmem type as PMEM_VIDEO_VPE 303 //No need to set this pmem type to VIDEO_VPE while unregistering, 334 else ALOGE("pmem pool %s error: could not create master heap!",
|
/frameworks/compile/libbcc/lib/ExecutionEngine/ |
ELFObjectLoaderImpl.h | 40 virtual bool load(const void *pMem, size_t pMemSize);
|
ObjectLoaderImpl.h | 35 virtual bool load(const void *pMem, size_t pMemSize) = 0;
|
ELFObjectLoaderImpl.cpp | 32 bool ELFObjectLoaderImpl::load(const void *pMem, size_t pMemSize) { 33 ArchiveReaderLE reader(reinterpret_cast<const unsigned char *>(pMem),
|
/device/lge/mako/camera/QCamera/HAL/core/src/ |
QCameraHWI_Mem.cpp | 242 LOGI("constructing MemPool %s backed by pmem pool %s: " 259 LOGE("failed to construct master heap for pmem pool %s", pmem_pool); 273 LOGE("pmem pool %s ioctl(PMEM_GET_SIZE) error %s (%d)", 280 LOGE("pmem pool %s ioctl(fd = %d, PMEM_GET_SIZE) is %ld", 299 //buffer as active and pmem type as PMEM_VIDEO_VPE 301 //No need to set this pmem type to VIDEO_VPE while unregistering, 332 else LOGE("pmem pool %s error: could not create master heap!",
|
/external/srec/portable/src/ |
pmemory.c | 194 pfprintf(gFile, L("pmem|newtag|%s|%d|\n"), key, idx); 442 pfprintf(gFile, L("pmem|free|%s|%s|%d|0x%x|%s|\n"), e->tag, data->stackTrace, data->size, ptr, stackTrace); 444 pfprintf(gFile, L("pmem|free|%s|%d|0x%x\n"), e->tag, data->size, ptr); 496 pfprintf(gFile, L("pmem|-|0|corrupt|%d|\n"), i); 688 pfprintf(gFile, L("pmem|alloc|%s|%d|0x%x|%s|\n"), tag, actualSize, result, data->stackTrace); 690 pfprintf(gFile, L("pmem|alloc|%s|%d|0x%x|\n"), tag, actualSize, result); 869 pfprintf(gFile, L("pmem|%s|%d|realloc|%d|0x%x|%s|\n"), e->tag, oldSize, actualSize, ptr, stackTrace); 871 pfprintf(gFile, L("pmem|%s|%d|realloc|%d|0x%x|\n"), e->tag, oldSize, actualSize, ptr); 940 pfprintf(gFile, L("pmem|free|%s|%s|%d|0x%x|%s|\n"), e->tag, data->stackTrace, data->size, ptr, stackTrace); 942 pfprintf(gFile, L("pmem|free|%s|%d|0x%x\n"), e->tag, data->size, ptr) [all...] |
/external/srec/portable/include/ |
pmemory.h | 252 * @return ESR_INVALID_STATE if the PMem module is already initialized or an internal error occurs 260 * @return ESR_INVALID_STATE if the PMem module is not initialized 270 * @return ESR_INVALID_STATE if the PMem module is not initialized 277 * @return ESR_INVALID_STATE if the PMem module is not initialized or an internal error occurs
|
/frameworks/av/media/libstagefright/codecs/common/include/ |
cmnMemory.h | 45 * \param pMem [in] address of memory
|
/system/core/rootdir/ |
ueventd.rc | 39 /dev/pmem 0660 system graphics
|
/hardware/qcom/media/mm-video-legacy/vidc/venc/test/ |
venc_test.cpp | 357 void* PmemMalloc(OMX_QCOM_PLATFORM_PRIVATE_PMEM_INFO* pMem, int nSize) 362 if (!pMem) 393 pMem->pmem_fd = ion_data.ion_alloc_fd.fd; 395 pMem->pmem_fd = open(PMEM_DEVICE, O_RDWR); 396 if ((int)(pMem->pmem_fd) < 0) 400 pMem->offset = 0; 403 MAP_SHARED, pMem->pmem_fd, pMem->offset); 406 close(pMem->pmem_fd); 407 pMem->pmem_fd = -1 [all...] |
/hardware/qcom/media/mm-video-v4l2/vidc/venc/test/ |
venc_test.cpp | 386 void* PmemMalloc(OMX_QCOM_PLATFORM_PRIVATE_PMEM_INFO* pMem, int nSize) 391 if (!pMem) 426 pMem->pmem_fd = ion_data.ion_alloc_fd.fd; 428 pMem->pmem_fd = open(PMEM_DEVICE, O_RDWR); 430 if ((int)(pMem->pmem_fd) < 0) 435 pMem->offset = 0; 438 MAP_SHARED, pMem->pmem_fd, pMem->offset); 441 close(pMem->pmem_fd); 442 pMem->pmem_fd = -1 [all...] |
/external/aac/libFDK/src/ |
FDK_hybrid.cpp | 213 FIXP_DBL *pMem = NULL; 240 pMem = hAnalysisHybFilter->pLFmemory; 242 hAnalysisHybFilter->bufferLFReal[k] = pMem; pMem += setup->protoLen; 243 hAnalysisHybFilter->bufferLFImag[k] = pMem; pMem += setup->protoLen; 247 pMem = hAnalysisHybFilter->pHFmemory; 249 hAnalysisHybFilter->bufferHFReal[k] = pMem; pMem += (qmfBands-setup->nrQmfBands); 250 hAnalysisHybFilter->bufferHFImag[k] = pMem; pMem += (cplxBands-setup->nrQmfBands) [all...] |
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
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...] |
/external/libnfc-nxp/src/ |
phOsalNfc.h | 188 * \param[in] pMem Pointer to the memory block to deallocated 191 void phOsalNfc_FreeMemory(void * pMem);
|