metaonly module ti.sdo.ce.alg.Algorithm
XDCscript usage meta-domain sourced in ti/sdo/ce/alg/Algorithm.xdc
var Algorithm = xdc.useModule('ti.sdo.ce.alg.Algorithm');
module-wide config parameters
 
 
config Algorithm.useCache  // module-wide

Indicates that algorithm memory should be cacheable

XDCscript usage meta-domain
Algorithm.useCache = Bool false;
 
DETAILS
This flag indicates whether algorithm memory should be allocated from cache-enabled buffers.
This flag is currently only used when CMEM is used to allocate memory (e.g. ARM-side 'local' codecs).
Note that when cache-enabled buffers are used, it is the application's responsibility to manage this cache. See the various Memory_ APIs for cache services.
 
config Algorithm.useHeap  // module-wide

Indicates that algorithm memory should be allocated from a heap

XDCscript usage meta-domain
Algorithm.useHeap = Bool false;
 
DETAILS
Flag indicating whether algorithm memory should be allocated from a heap or from a pool.
This flag is currently only used when CMEM is used to allocate memory (e.g. ARM-side 'local' codecs).
generated on Tue, 14 Aug 2012 20:09:27 GMT