Searched refs:allocation (Results 1 - 5 of 5) sorted by relevance

/hardware/qcom/media/mm-video/vidc/venc/src/
H A Dvideo_encoder_device.cpp1278 struct pmem_allocation allocation; local
1287 allocation.size = size;
1288 allocation.align = clip2(alignment);
1290 if (allocation.align != 8192)
1291 allocation.align = 8192;
1293 if (ioctl(pmem_fd, PMEM_ALLOCATE_ALIGNED, &allocation) < 0)
1296 allocation.align, allocation.size);
H A Dvideo_encoder_device_copper.cpp1223 struct pmem_allocation allocation; local
1266 allocation.size = size;
1267 allocation.align = clip2(alignment);
1269 if (allocation.align != 8192)
1270 allocation.align = 8192;
1272 if (ioctl(pmem_fd, PMEM_ALLOCATE_ALIGNED, &allocation) < 0)
1275 allocation.align, allocation.size);
/hardware/qcom/media/mm-video/vidc/vdec/test/
H A Domx_vdec_test.cpp2338 DEBUG_PRINT_ERROR("\n EGL allocation failed");
2348 DEBUG_PRINT_ERROR("\n EGL allocation failed");
2363 DEBUG_PRINT_ERROR("\n allocation size %d pmem fd %d",bufSize,p_eglHeaders[bufCnt]->pmem_fd);
2440 DEBUG_PRINT("\n allocation size %d pmem fd 0x%x",bufSize,pPMEMInfo[bufCnt].pmem_fd);
3841 struct pmem_allocation allocation; local
3842 allocation.size = buffer_size;
3843 allocation.align = clip2(alignment);
3845 if (allocation.align < 4096)
3847 allocation.align = 4096;
3849 if (ioctl(pmem_fd, PMEM_ALLOCATE_ALIGNED, &allocation) <
[all...]
/hardware/qcom/media/mm-video/vidc/vdec/src/
H A Domx_vdec.cpp1536 DEBUG_PRINT_ERROR("ERROR: H264 parser allocation failed!");
4212 OMX Use Buffer Heap allocation method implementation.
7475 struct pmem_allocation allocation; local
7476 allocation.size = buffer_size;
7477 allocation.align = clip2(alignment);
7478 if (allocation.align < 4096)
7480 allocation.align = 4096;
7482 if (ioctl(pmem_fd, PMEM_ALLOCATE_ALIGNED, &allocation) < 0)
7485 allocation.align, allocation
8764 struct pmem_allocation allocation; local
[all...]
H A Domx_vdec_copper.cpp1496 DEBUG_PRINT_ERROR("ERROR: H264 parser allocation failed!");
3973 OMX Use Buffer Heap allocation method implementation.
7139 struct pmem_allocation allocation; local
7140 allocation.size = buffer_size;
7141 allocation.align = clip2(alignment);
7142 if (allocation.align < 4096)
7144 allocation.align = 4096;
7146 if (ioctl(pmem_fd, PMEM_ALLOCATE_ALIGNED, &allocation) < 0)
7149 allocation.align, allocation
[all...]

Completed in 102 milliseconds