Lines Matching refs:allocSize
347 size_t allocSize = alloc->mHal.drvState.faceOffset; in AllocationBuildPointerTable() local
349 allocSize *= 6; in AllocationBuildPointerTable()
352 return allocSize; in AllocationBuildPointerTable()
360 static uint8_t* allocAlignedMemory(size_t allocSize, bool forceZero, size_t requiredAlignment) { in allocAlignedMemory() argument
362 uint8_t* ptr = (uint8_t *)memalign(requiredAlignment, allocSize); in allocAlignedMemory()
367 memset(ptr, 0, allocSize); in allocAlignedMemory()
385 …size_t allocSize = AllocationBuildPointerTable(rsc, alloc, alloc->getType(), nullptr, requiredAlig… in rsdAllocationInitStrided() local
426 ptr = allocAlignedMemory(allocSize, forceZero, requiredAlignment); in rsdAllocationInitStrided()
438 ptr = allocAlignedMemory(allocSize, forceZero, requiredAlignment); in rsdAllocationInitStrided()
447 if(allocSize != verifySize) { in rsdAllocationInitStrided()
482 …etType()->getDimX(), alloc->getType()->getDimY(), alloc->mHal.state.userProvidedPtr, allocSize, 0); in rsdAllocationInitStrided()