| 3886 | } |
| 3887 | |
| 3888 | bool CeContext::CeFree(addr_ce addr) |
| 3889 | { |
| 3890 | #ifdef CE_ENABLE_HEAP |
| 3891 | ContiguousHeap::AllocRef heapRef = addr - mStackSize; |
| 3892 | return mHeap->Free(heapRef); |
| 3893 | #else |
| 3894 | return true; |
| 3895 | #endif |
| 3896 | } |
| 3897 | |
| 3898 | addr_ce CeContext::CeAllocArray(BfArrayType* arrayType, int count, addr_ce& elemsAddr) |
| 3899 | { |
no test coverage detected