/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
cache.h | 34 size_t gc_limit; // # of bytes allowed before GC member in struct:fst::CacheOptions 37 CacheOptions(bool g, size_t l) : gc(g), gc_limit(l) {} 40 gc_limit(FLAGS_fst_default_cache_gc_limit) {} 54 // performed, in a rough approximation of LRU order, when 'gc_limit' 55 // bytes is reached - controlling memory use. When 'gc_limit' is 0, 82 cache_limit_(opts.gc_limit > kMinCacheLimit || opts.gc_limit == 0 ? 83 opts.gc_limit : kMinCacheLimit) {}
|
/external/openfst/src/include/fst/ |
cache.h | 39 size_t gc_limit; // # of bytes allowed before GC member in struct:fst::CacheOptions 41 CacheOptions(bool g, size_t l) : gc(g), gc_limit(l) {} 44 gc_limit(FLAGS_fst_default_cache_gc_limit) {} 98 // approximation of LRU order, when 'gc_limit' bytes is reached - 99 // controlling memory use. When 'gc_limit' is 0, special optimizations 135 cache_limit_(opts.gc_limit > kMinCacheLimit || opts.gc_limit == 0 ? 136 opts.gc_limit : kMinCacheLimit),
|