Lines Matching refs:size
183 inline void MI_CpuFill32(void* dest, u32 data, u32 size) in MI_CpuFill32() argument
187 NN_TASSERT_((size & 0xfffffffc) == size); // size should be 4-byte aligned in MI_CpuFill32()
188 for(int i = 0; i < size / 4; ++i) in MI_CpuFill32()
198 u32 size in FillAllocMemory() argument
204 MI_CpuFill32(address, 0, size); in FillAllocMemory()
211 MI_CpuFill32(address, GetFillValForHeap(NN_OS_HEAP_FILL_ALLOC), size); in FillAllocMemory()
218 #define FillFreeMemory(pHeapHd, address, size) ((void) 0) argument
224 u32 size in FillFreeMemory() argument
229 MI_CpuFill32(address, GetFillValForHeap(NN_OS_HEAP_FILL_FREE), size); in FillFreeMemory()
235 #define FillNoUseMemory(pHeapHd, address, size) ((void) 0) argument
241 u32 size in FillNoUseMemory() argument
246 MI_CpuFill32(address, GetFillValForHeap(NN_OS_HEAP_FILL_NOUSE), size); in FillNoUseMemory()