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

  /external/chromium_org/third_party/icu/source/common/
udatamem.h 35 void *mapAddr; /* For mapped or allocated memory, the start addr. */
41 /* beyond the mapAddr is needed to do that. */
umapfile.c 195 pData->mapAddr = data;
205 size_t dataLen = (char *)pData->map - (char *)pData->mapAddr;
206 if(munmap(pData->mapAddr, dataLen)==-1) {
210 pData->mapAddr=NULL;
268 pData->mapAddr=p;
277 pData->mapAddr = NULL;
403 pData->mapAddr = data;
457 pData->mapAddr = NULL;
udata.cpp 812 copyPData.mapAddr = 0; /* which will unmap it when ICU is shut down. */
    [all...]
  /external/icu/icu4c/source/common/
udatamem.h 35 void *mapAddr; /* For mapped or allocated memory, the start addr. */
41 /* beyond the mapAddr is needed to do that. */
umapfile.c 195 pData->mapAddr = data;
205 size_t dataLen = (char *)pData->map - (char *)pData->mapAddr;
206 if(munmap(pData->mapAddr, dataLen)==-1) {
210 pData->mapAddr=NULL;
268 pData->mapAddr=p;
277 pData->mapAddr = NULL;
403 pData->mapAddr = data;
457 pData->mapAddr = NULL;
udata.cpp 804 copyPData.mapAddr = 0; /* which will unmap it when ICU is shut down. */
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_SharedMemory.c 51 OMX_PTR mapAddr;
108 if (ion_unmap(pDeleteElement->mapAddr, pDeleteElement->allocSize))
111 pDeleteElement->mapAddr = NULL;
193 pElement->mapAddr = pBuffer;
235 if (pSMList->mapAddr == pBuffer) {
240 (((EXYNOS_SHAREDMEM_LIST *)(pCurrentElement->pNextMemory))->mapAddr != pBuffer))
244 (((EXYNOS_SHAREDMEM_LIST *)(pCurrentElement->pNextMemory))->mapAddr == pBuffer)) {
255 if (ion_unmap(pDeleteElement->mapAddr, pDeleteElement->allocSize)) {
259 pDeleteElement->mapAddr = NULL;
307 pElement->mapAddr = pBuffer
    [all...]
  /system/core/liblog/
event_tag_map.c 42 void* mapAddr;
88 newTagMap->mapAddr = mmap(NULL, end, PROT_READ | PROT_WRITE, MAP_PRIVATE,
90 if (newTagMap->mapAddr == MAP_FAILED) {
117 munmap(map->mapAddr, map->mapLen);
229 cp = (const char*) map->mapAddr;
266 cp = (char*) map->mapAddr;
  /external/fio/os/windows/
posix.c 564 void* mapAddr;
566 mapAddr = MapViewOfFile(fileMappings[shmid], FILE_MAP_ALL_ACCESS, 0, 0, 0);
567 if (mapAddr == NULL) {
572 if (VirtualQuery(mapAddr, &memInfo, sizeof(memInfo)) == 0) {
577 mapAddr = VirtualAlloc(mapAddr, memInfo.RegionSize, MEM_COMMIT, PAGE_READWRITE);
578 if (mapAddr == NULL) {
583 return mapAddr;

Completed in 1090 milliseconds