HomeSort by relevance Sort by last modified time
    Searched refs:budget (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/third_party/skia/src/lazy/
SkDiscardableMemoryPool.h 23 * budget of memory. When the allocated memory exceeds this size,
25 * can exceed the memory-use budget.
32 virtual void setRAMBudget(size_t budget) = 0;
SkDiscardableMemoryPool.cpp 31 DiscardableMemoryPool(size_t budget, SkBaseMutex* mutex = NULL);
37 virtual void setRAMBudget(size_t budget) SK_OVERRIDE;
60 void dumpDownTo(size_t budget);
130 DiscardableMemoryPool::DiscardableMemoryPool(size_t budget,
133 , fBudget(budget)
147 void DiscardableMemoryPool::dumpDownTo(size_t budget) {
151 if (fUsed <= budget) {
157 while ((fUsed > budget) && (NULL != cur)) {
239 void DiscardableMemoryPool::setRAMBudget(size_t budget) {
241 fBudget = budget;
    [all...]
  /external/skia/src/lazy/
SkDiscardableMemoryPool.h 23 * budget of memory. When the allocated memory exceeds this size,
25 * can exceed the memory-use budget.
32 virtual void setRAMBudget(size_t budget) = 0;
SkDiscardableMemoryPool.cpp 31 DiscardableMemoryPool(size_t budget, SkBaseMutex* mutex = NULL);
37 virtual void setRAMBudget(size_t budget) SK_OVERRIDE;
60 void dumpDownTo(size_t budget);
130 DiscardableMemoryPool::DiscardableMemoryPool(size_t budget,
133 , fBudget(budget)
147 void DiscardableMemoryPool::dumpDownTo(size_t budget) {
151 if (fUsed <= budget) {
157 while ((fUsed > budget) && (NULL != cur)) {
239 void DiscardableMemoryPool::setRAMBudget(size_t budget) {
241 fBudget = budget;
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
print_layout_test_times.py 100 budget = 0
102 budget += per_key
106 while tests_by_time and total_so_far <= budget:
110 if test_time and total_so_far + test_time <= budget:
  /external/chromium_org/third_party/opus/src/celt/
quant_bands.c 158 opus_int32 budget, opus_int32 tell,
168 if (tell+3 <= budget)
217 bits_left = budget-tell-3*C*(end-i);
227 if (budget-tell >= 15)
234 else if(budget-tell >= 2)
239 else if(budget-tell >= 1)
262 const opus_val16 *eBands, opus_val16 *oldEBands, opus_uint32 budget,
278 intra_bias = (opus_int32)((budget**delayedIntra*loss_rate)/(C*512));
282 if (tell+3 > budget)
304 badness1 = quant_coarse_energy_impl(m, start, end, eBands, oldEBands_intra, budget,
434 opus_int32 budget; local
    [all...]
quant_bands.h 51 const opus_val16 *eBands, opus_val16 *oldEBands, opus_uint32 budget,
celt_decoder.c 292 opus_uint32 budget; local
295 budget = dec->storage*8;
298 tf_select_rsv = LM>0 && tell+logp+1<=budget;
299 budget -= tf_select_rsv;
303 if (tell+logp<=budget)
    [all...]
celt_encoder.c 719 opus_uint32 budget; local
721 budget = enc->storage*8;
725 tf_select_rsv = LM>0 && tell+logp+1 <= budget;
726 budget -= tf_select_rsv;
730 if (tell+logp<=budget)
919 /* Make sure that dynamic allocation can't make us bust the budget */
    [all...]
  /external/libopus/celt/
quant_bands.c 158 opus_int32 budget, opus_int32 tell,
168 if (tell+3 <= budget)
217 bits_left = budget-tell-3*C*(end-i);
227 if (budget-tell >= 15)
234 else if(budget-tell >= 2)
239 else if(budget-tell >= 1)
262 const opus_val16 *eBands, opus_val16 *oldEBands, opus_uint32 budget,
278 intra_bias = (opus_int32)((budget**delayedIntra*loss_rate)/(C*512));
282 if (tell+3 > budget)
304 badness1 = quant_coarse_energy_impl(m, start, end, eBands, oldEBands_intra, budget,
434 opus_int32 budget; local
    [all...]
quant_bands.h 51 const opus_val16 *eBands, opus_val16 *oldEBands, opus_uint32 budget,
celt_decoder.c 292 opus_uint32 budget; local
295 budget = dec->storage*8;
298 tf_select_rsv = LM>0 && tell+logp+1<=budget;
299 budget -= tf_select_rsv;
303 if (tell+logp<=budget)
    [all...]
celt_encoder.c 719 opus_uint32 budget; local
721 budget = enc->storage*8;
725 tf_select_rsv = LM>0 && tell+logp+1 <= budget;
726 budget -= tf_select_rsv;
730 if (tell+logp<=budget)
919 /* Make sure that dynamic allocation can't make us bust the budget */
    [all...]
  /external/bzip2/
blocksort.c 352 Int32* budget )
464 (*budget)--;
492 Int32* budget )
515 ptr[j-h]+d, v+d, block, quadrant, nblock, budget
529 ptr[j-h]+d, v+d, block, quadrant, nblock, budget
543 ptr[j-h]+d, v+d, block, quadrant, nblock, budget
552 if (*budget < 0) return;
628 Int32* budget )
651 mainSimpleSort ( ptr, block, quadrant, nblock, lo, hi, d, budget );
652 if (*budget < 0) return
1040 Int32 budget; local
    [all...]
  /external/chromium_org/v8/src/
jsregexp.h 585 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start) = 0;
615 // EatsAtLeast, GetQuickCheckDetails. The budget argument is used to limit
619 int budget,
725 int budget,
728 on_success_->FillInBMInfo(offset, budget - 1, bm, not_at_start);
771 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start);
780 int budget,
838 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start);
849 int budget,
903 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start)
    [all...]
jsregexp.cc     [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-178790.js 45 // recursion depth possible with a given budget.
  /external/valgrind/main/memcheck/tests/
varinfo6.c 3115 Int32 budget; local
    [all...]
origin5-bz2.c 3077 Int32 budget; local
    [all...]
  /external/valgrind/main/VEX/switchback/
test_bzip2.c 3062 Int32 budget; local
    [all...]
  /external/valgrind/main/exp-sgcheck/tests/
hackedbz2.c 3086 Int32 budget; local
    [all...]
  /external/valgrind/main/perf/
bz2.c 3077 Int32 budget; local
    [all...]
test_input_for_tinycc.c 2699 Int32 budget; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 1987 milliseconds