HomeSort by relevance Sort by last modified time
    Searched defs:gc_limit (Results 1 - 2 of 2) sorted by null

  /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) {}
97 // performed, in a rough approximation of LRU order, when 'gc_limit'
98 // bytes is reached - controlling memory use. When 'gc_limit' is 0,
131 cache_limit_(opts.gc_limit > kMinCacheLimit || opts.gc_limit == 0 ?
132 opts.gc_limit : kMinCacheLimit) {

Completed in 45 milliseconds