Home | History | Annotate | Download | only in driver

Lines Matching defs:allocSize

342     size_t allocSize = alloc->mHal.drvState.faceOffset;
344 allocSize *= 6;
347 return allocSize;
350 static uint8_t* allocAlignedMemory(size_t allocSize, bool forceZero) {
352 uint8_t* ptr = (uint8_t *)memalign(16, allocSize);
357 memset(ptr, 0, allocSize);
370 size_t allocSize = AllocationBuildPointerTable(rsc, alloc, alloc->getType(), NULL);
397 ptr = allocAlignedMemory(allocSize, forceZero);
409 ptr = allocAlignedMemory(allocSize, forceZero);
418 if(allocSize != verifySize) {
454 rsdAllocationData2D(rsc, alloc, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X, alloc->getType()->getDimX(), alloc->getType()->getDimY(), alloc->mHal.state.userProvidedPtr, allocSize, 0);