Home
last modified time | relevance | path

Searched refs:sizeIn (Results 1 – 2 of 2) sorted by relevance

/external/opencore/oscl/oscl/osclmemory/src/
Doscl_mem_audit.cpp130 uint32 sizeIn, in MM_allocate() argument
140 …printf("In MM_allocate, nBytes %d, file_name is %s, line_num is %d\n", sizeIn, pFileName, lineNumb… in MM_allocate()
144 printf("In MM_allocate with tag %s operator, nBytes %d\n", sizeIn); in MM_allocate()
169 uint32 full_size = sizeIn + BLOCK_OVERHEAD_SIZE; in MM_allocate()
177 if (full_size > sizeIn) in MM_allocate()
194 (sizeIn & MM_AllocBlockHdr::ALLOC_NODE_FLAG)) in MM_allocate()
196 …if ((pAllocNode = addAllocNode((void *)pMem.get(), sizeIn, pStatsNode, pFileName, lineNumber)) == … in MM_allocate()
207 block_hdr->size = sizeIn; in MM_allocate()
229 oscl_memset(pMem.get() + BLOCK_HDR_SIZE, prefill_pattern, sizeIn); in MM_allocate()
242 uint32 post_fence_offset = sizeIn + BLOCK_HDR_SIZE; in MM_allocate()
[all …]
Doscl_mem_audit.h77 MM_Stats_t(uint32 sizeIn) in MM_Stats_t()
79 numBytes = peakNumBytes = sizeIn; in MM_Stats_t()
83 totalNumBytes = sizeIn; in MM_Stats_t()
465 uint32 sizeIn,
651 …MM_AllocNode* addAllocNode(void *pMem, uint32 sizeIn, OsclMemStatsNode* pStatsNode, const char *pF…
808 uint32 sizeIn,
816 …void* result = _pMM_Audit_Imp->MM_allocate(statsNode, sizeIn, pFileName, lineNumber, allocNodeTrac…
1144 MM_AllocNode* addAllocNode(void *pMem, uint32 sizeIn, OsclMemStatsNode* pStatsNode, in addAllocNode() argument
1147 return (_pMM_Audit_Imp->addAllocNode(pMem, sizeIn, pStatsNode, pFileName, lineNumber)); in addAllocNode()