/kernel/liteos_a/kernel/base/vm/ |
H A D | los_vm_boot.c | 54 ptr = LOS_Align(g_vmBootMemBase, sizeof(UINTPTR)); in OsVmBootMemAlloc() 55 g_vmBootMemBase = ptr + LOS_Align(len, sizeof(UINTPTR)); in OsVmBootMemAlloc()
|
H A D | los_vm_syscall.c | 194 newBrk = LOS_Align((VADDR_T)(UINTPTR)addr, PAGE_SIZE); in OsShrinkHeap() 195 oldBrk = LOS_Align(space->heapNow, PAGE_SIZE); in OsShrinkHeap() 317 len = LOS_Align(len, PAGE_SIZE); in LOS_DoMprotect() 417 oldSize = LOS_Align(oldSize, PAGE_SIZE); in LOS_DoMremap() 418 newSize = LOS_Align(newSize, PAGE_SIZE); in LOS_DoMremap()
|
H A D | los_vm_map.c | 832 size = LOS_Align(size, PAGE_SIZE); 833 addr = LOS_Align(addr, PAGE_SIZE); 1028 size = LOS_Align(size, PAGE_SIZE);
|
H A D | shm.c | 204 *size = LOS_Align(*size, PAGE_SIZE); in ShmAllocSegCheck()
|
/kernel/liteos_a/kernel/include/ |
H A D | los_base.h | 83 #define ALIGN(addr, boundary) LOS_Align(addr, boundary) 211 extern UINTPTR LOS_Align(UINTPTR addr, UINT32 boundary);
|
/kernel/liteos_a/kernel/base/misc/ |
H A D | los_misc.c | 35 LITE_OS_SEC_TEXT UINTPTR LOS_Align(UINTPTR addr, UINT32 boundary) in LOS_Align() function
|
/kernel/liteos_m/arch/arm/cortex-m33/gcc/TZ/non_secure/ |
H A D | los_trustzone.c | 75 secureStackSize = LOS_Align(secureStackSize, sizeof(UINTPTR));
in LOS_SecureContextAlloc()
|
/kernel/liteos_m/arch/arm/cortex-m33/iar/TZ/non_secure/ |
H A D | los_trustzone.c | 75 secureStackSize = LOS_Align(secureStackSize, sizeof(UINTPTR));
in LOS_SecureContextAlloc()
|
/kernel/liteos_m/arch/arm/cortex-m55/gcc/TZ/non_secure/ |
H A D | los_trustzone.c | 75 secureStackSize = LOS_Align(secureStackSize, sizeof(UINTPTR));
in LOS_SecureContextAlloc()
|
/kernel/liteos_m/arch/arm/cortex-m55/iar/TZ/non_secure/ |
H A D | los_trustzone.c | 75 secureStackSize = LOS_Align(secureStackSize, sizeof(UINTPTR));
in LOS_SecureContextAlloc()
|
/kernel/liteos_m/utils/ |
H A D | los_compiler.h | 384 #define ALIGN(addr, boundary) LOS_Align(addr, boundary)
413 static inline UINT32 LOS_Align(UINT32 addr, UINT32 boundary)
in LOS_Align() function
|
/kernel/liteos_m/arch/arm/cortex-m33/gcc/TZ/secure/ |
H A D | los_secure_heap.c | 167 allocSize = LOS_Align(size + OS_SECURE_HEAP_NODE_HEAD_SIZE, OS_SECURE_HEAP_ALIGN_SIZE);
in OsSecureHeapAllocNode()
|
/kernel/liteos_m/arch/arm/cortex-m33/iar/TZ/secure/ |
H A D | los_secure_heap.c | 168 allocSize = LOS_Align(size + OS_SECURE_HEAP_NODE_HEAD_SIZE, OS_SECURE_HEAP_ALIGN_SIZE);
in OsSecureHeapAllocNode()
|
/kernel/liteos_m/arch/arm/cortex-m55/gcc/TZ/secure/ |
H A D | los_secure_heap.c | 167 allocSize = LOS_Align(size + OS_SECURE_HEAP_NODE_HEAD_SIZE, OS_SECURE_HEAP_ALIGN_SIZE);
in OsSecureHeapAllocNode()
|
/kernel/liteos_m/arch/arm/cortex-m55/iar/TZ/secure/ |
H A D | los_secure_heap.c | 168 allocSize = LOS_Align(size + OS_SECURE_HEAP_NODE_HEAD_SIZE, OS_SECURE_HEAP_ALIGN_SIZE);
in OsSecureHeapAllocNode()
|
/kernel/liteos_a/kernel/base/core/ |
H A D | los_process.c | 1762 if ((sp == 0) || (LOS_Align(sp, LOSCFG_STACK_POINT_ALIGN_SIZE) != sp)) { in OsExecStart() 1838 if ((LOS_Align((UINTPTR)userInitTextStart, PAGE_SIZE) != (UINTPTR)userInitTextStart) || in OsLoadUserInit() 1839 (LOS_Align((UINTPTR)userInitEnd, PAGE_SIZE) != (UINTPTR)userInitEnd)) { in OsLoadUserInit()
|
/kernel/liteos_m/kernel/src/ |
H A D | los_task.c | 759 taskCB->topOfStack = LOS_Align(taskInitParam->stackAddr, LOSCFG_STACK_POINT_ALIGN_SIZE);
in OsNewTaskInit()
|
/kernel/liteos_a/kernel/base/mem/tlsf/ |
H A D | los_memory.c | 691 for (index = LOS_Align(index + 1, 32); index < OS_MEM_FREE_LIST_COUNT; index += 32) { /* 32: align size */ in OsMemFindNextSuitableBlock()
|
/kernel/liteos_m/kernel/src/mm/ |
H A D | los_memory.c | 715 for (index = LOS_Align(index + 1, 32); index < OS_MEM_FREE_LIST_COUNT; index += 32) {
|