Lines Matching full:memory

57 <a name="l00037"></a>00037 <span class="comment"> * \defgroup memb Memory block management function…
59 <a name="l00039"></a>00039 <span class="comment"> * The memory block allocation routines provide a …
60 <a name="l00040"></a>00040 <span class="comment"> * set of functions for managing a set of memory b…
61 <a name="l00041"></a>00041 <span class="comment"> * size. A set of memory blocks is statically decl…
62 <a name="l00042"></a>00042 <span class="comment"> * MEMB() macro. Memory blocks are allocated from …
63 <a name="l00043"></a>00043 <span class="comment"> * memory by the memb_alloc() function, and are de…
67 …>00047 <span class="comment"> * declared per C module, and the name scope of a MEMB() memory</span>
70 …0 <span class="comment"> * The following example shows how to declare and use a memory block</span>
71 …051 <span class="comment"> * called "cmem" which has 8 chunks of memory with each memory chunk</sp…
80 <a name="l00060"></a>00060 <span class="comment"> * Memory block allocation routines.</span>
98 <a name="l00078"></a>00078 <span class="comment"> * Declare a memory block.</span>
100 … <span class="comment"> * This macro is used to staticall declare a block of memory that can</span>
110 <a name="l00090"></a>00090 <span class="comment"> * \param name The name of the memory block (later…
113 <a name="l00093"></a>00093 <span class="comment"> * \param size The size of each memory chunk, in b…
115 <a name="l00095"></a>00095 <span class="comment"> * \param num The total number of memory chunks in…
133 <a name="l00113"></a>00113 <span class="comment"> * Initialize a memory block that was declared wit…
135 <a name="l00115"></a>00115 <span class="comment"> * \param m A memory block previosly declared with…
140 <a name="l00120"></a>00120 <span class="comment"> * Allocate a memory block from a block of memory
142 <a name="l00122"></a>00122 <span class="comment"> * \param m A memory block previosly declared with…
147 <a name="l00127"></a>00127 <span class="comment"> * Deallocate a memory block from a memory block p…
150 <a name="l00130"></a>00130 <span class="comment"> * \param m m A memory block previosly declared wi…
152 <a name="l00132"></a>00132 <span class="comment"> * \param ptr A pointer to the memory block that i…
154 <a name="l00134"></a>00134 <span class="comment"> * \return The new reference count for the memory
156 <a name="l00136"></a>00136 <span class="comment"> * point to a legal memory block.</span>