Searched refs:alignSize (Results 1 – 5 of 5) sorted by relevance
312 UINT64 alignSize = LOS_GetAlignsize(); in CheckValidation() local313 if (alignSize == 0) { in CheckValidation()317 if ((rootAddr & (alignSize - 1)) || (rootSize & (alignSize - 1)) || in CheckValidation()318 (userAddr & (alignSize - 1)) || (userSize & (alignSize - 1))) { in CheckValidation()319 PRINT_ERR("The address or size value should be 0x%llx aligned!\n", alignSize); in CheckValidation()
58 #define IS_ALIGNED_SIZE(value, alignSize) (0 == ((UINT32)(value) & (UINT32)((alignSize) - 1))) argument
202 #define OS_MEM_ALIGN(p, alignSize) (((UINTPTR)(p) + (alignSize) - 1) & ~((UINTPTR)((alignSize) - 1… argument
196 #define OS_MEM_ALIGN(p, alignSize) (((UINTPTR)(p) + (alignSize) - 1) & ~((UINTPTR)((alignSize) - 1… argument
149395 + gctUINT64 alignSize = PAGE_ALIGN(args->size);149423 + iface.u.AllocateLinearVideoMemory.bytes = alignSize;149436 + drm_gem_private_object_init(drm, gem_obj, (size_t)alignSize);