Home
last modified time | relevance | path

Searched refs:LOS_Align (Results 1 - 19 of 19) sorted by relevance

/kernel/liteos_a/kernel/base/vm/
H A Dlos_vm_boot.c54 ptr = LOS_Align(g_vmBootMemBase, sizeof(UINTPTR)); in OsVmBootMemAlloc()
55 g_vmBootMemBase = ptr + LOS_Align(len, sizeof(UINTPTR)); in OsVmBootMemAlloc()
H A Dlos_vm_syscall.c194 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 Dlos_vm_map.c832 size = LOS_Align(size, PAGE_SIZE);
833 addr = LOS_Align(addr, PAGE_SIZE);
1028 size = LOS_Align(size, PAGE_SIZE);
H A Dshm.c204 *size = LOS_Align(*size, PAGE_SIZE); in ShmAllocSegCheck()
/kernel/liteos_a/kernel/include/
H A Dlos_base.h83 #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 Dlos_misc.c35 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 Dlos_trustzone.c75 secureStackSize = LOS_Align(secureStackSize, sizeof(UINTPTR)); in LOS_SecureContextAlloc()
/kernel/liteos_m/arch/arm/cortex-m33/iar/TZ/non_secure/
H A Dlos_trustzone.c75 secureStackSize = LOS_Align(secureStackSize, sizeof(UINTPTR)); in LOS_SecureContextAlloc()
/kernel/liteos_m/arch/arm/cortex-m55/gcc/TZ/non_secure/
H A Dlos_trustzone.c75 secureStackSize = LOS_Align(secureStackSize, sizeof(UINTPTR)); in LOS_SecureContextAlloc()
/kernel/liteos_m/arch/arm/cortex-m55/iar/TZ/non_secure/
H A Dlos_trustzone.c75 secureStackSize = LOS_Align(secureStackSize, sizeof(UINTPTR)); in LOS_SecureContextAlloc()
/kernel/liteos_m/utils/
H A Dlos_compiler.h384 #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 Dlos_secure_heap.c167 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 Dlos_secure_heap.c168 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 Dlos_secure_heap.c167 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 Dlos_secure_heap.c168 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 Dlos_process.c1762 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 Dlos_task.c759 taskCB->topOfStack = LOS_Align(taskInitParam->stackAddr, LOSCFG_STACK_POINT_ALIGN_SIZE); in OsNewTaskInit()
/kernel/liteos_a/kernel/base/mem/tlsf/
H A Dlos_memory.c691 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 Dlos_memory.c715 for (index = LOS_Align(index + 1, 32); index < OS_MEM_FREE_LIST_COUNT; index += 32) {

Completed in 19 milliseconds