Home | History | Annotate | Download | only in driver

Lines Matching defs:allocSize

351     size_t allocSize = alloc->mHal.drvState.faceOffset;
353 allocSize *= 6;
356 return allocSize;
359 static uint8_t* allocAlignedMemory(size_t allocSize, bool forceZero) {
361 uint8_t* ptr = (uint8_t *)memalign(16, allocSize);
366 memset(ptr, 0, allocSize);
379 size_t allocSize = AllocationBuildPointerTable(rsc, alloc, alloc->getType(), NULL);
406 ptr = allocAlignedMemory(allocSize, forceZero);
418 ptr = allocAlignedMemory(allocSize, forceZero);
427 if(allocSize != verifySize) {
463 allocSize, 0);