on calling the functions free and delete how to calculate total amount of memory freed at that call
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I believe you mean these functions: free() for C and delete() for C++. Both are defined by the RTS library (runt-time support library). Because both are implemented according to the current C standards, TI does not have its APIs explicitly defined in our documentation. In other words, such information is widely available on the internet. What I mean is that this is more a C programming question than a TI-related question. As a hint, one link that can help you understand it better is this one:
http://www.codersource.net/c++_dynamic_memory_allocation.aspx
There is a similar function defined for DSP/BIOS programs called MEM_free (you can look at document http://focus.ti.com/general/docs/techdocsabstract.tsp?abstractName=spru403o).