Home
last modified time | relevance | path

Searched refs:freeListBitmap (Results 1 – 4 of 4) sorted by relevance

/kernel/liteos_m/kernel/include/
Dlos_memory.h552 UINT32 freeListBitmap[OS_MEM_BITMAP_WORDS]; member
/kernel/liteos_m/testsuites/sample/kernel/mem/
DIt_los_mem.h126 UINT32 freeListBitmap[OS_MEM_BITMAP_WORDS]; member
/kernel/liteos_a/kernel/base/mem/tlsf/
Dlos_memory.c158 UINT32 freeListBitmap[OS_MEM_BITMAP_WORDS]; member
657 mask = poolHead->freeListBitmap[BITMAP_INDEX(index)]; in OsMemNotEmptyIndexGet()
692 mask = poolHead->freeListBitmap[BITMAP_INDEX(index)]; in OsMemFindNextSuitableBlock()
713 head->freeListBitmap[BITMAP_INDEX(index)] |= 1U << (index & 0x1f); in OsMemSetFreeListBit()
718 head->freeListBitmap[BITMAP_INDEX(index)] &= ~(1U << (index & 0x1f)); in OsMemClearFreeListBit()
/kernel/liteos_m/kernel/src/mm/
Dlos_memory.c681 UINT32 mask = poolHead->freeListBitmap[index >> 5];
717 mask = poolHead->freeListBitmap[index >> 5];
739 head->freeListBitmap[index >> 5] |= 1U << (index & 0x1f);
745 head->freeListBitmap[index >> 5] &= ~(1U << (index & 0x1f));