metaonly module ti.sdo.ce.alg.Settings |
 |
Global OS Abstract Layer Configuration
metaonly module Settings { ...
XDCscript usage |
meta-domain |
var Settings = xdc.useModule('ti.sdo.ce.alg.Settings');
module-wide config parameters
metaonly module Settings {
module-wide config parameters
}
config Settings.useCache // module-wide |
 |
Indicates that algorithm memory should be cacheable
XDCscript usage |
meta-domain |
Settings.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 Settings.useHeap // module-wide |
 |
Indicates that algorithm memory should be allocated from a heap
XDCscript usage |
meta-domain |
Settings.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 Mon, 20 Sep 2010 23:50:24 GMT