HomeSort by relevance Sort by last modified time
    Searched refs:accumulated (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /system/extras/iotop/
iotop.cpp 101 bool accumulated = false; local
113 {"accumulated", 0, 0, 'a'},
128 accumulated = true;
222 if (accumulated) {
241 const int delay_div = accumulated ? 1 : delay;
  /art/runtime/base/
histogram-inl.h 220 uint64_t accumulated = 0; local
221 out_data->freq_.push_back(accumulated);
224 accumulated += frequency_[idx];
225 out_data->freq_.push_back(accumulated);
226 out_data->perc_.push_back(static_cast<double>(accumulated) / static_cast<double>(sample_size_));
  /external/skia/tools/lua/
filter-counter.lua 75 "accumulated".
scrape.lua 75 "accumulated".
glyph-counts.lua 92 "accumulated".
scrape_dashing.lua 83 "accumulated".
glyph-usage.lua 113 "accumulated".
scrape_dashing_full.lua 124 "accumulated".
  /external/webp/src/enc/
predictor_enc.c 47 static float PredictionCostSpatialHistogram(const int accumulated[4][256],
54 retval += VP8LCombinedShannonEntropy(tile[i], accumulated[i]);
278 // Returns best predictor and updates the accumulated histogram.
285 int accumulated[4][256],
368 (const int (*)[256])accumulated, (const int (*)[256])histo_argb);
384 accumulated[i][j] += best_histo[i][j];
509 static float PredictionCostCrossColor(const int accumulated[256],
514 return VP8LCombinedShannonEntropy(counts, accumulated) +
727 // Gather accumulated histogram data.
  /prebuilts/go/darwin-x86/src/hash/adler32/
adler32.go 8 // Adler-32 is composed of two sums accumulated per byte: s1 is
  /prebuilts/go/linux-x86/src/hash/adler32/
adler32.go 8 // Adler-32 is composed of two sums accumulated per byte: s1 is
  /external/tremolo/Tremolo/
vorbisfile.c 408 ogg_int64_t accumulated=0,pos; local
434 accumulated+=(lastblock+thisblock)>>2;
442 accumulated= pos-accumulated;
449 if(accumulated<0)accumulated=0;
451 vf->pcmlengths[i*2]=accumulated;
    [all...]
  /prebuilts/go/darwin-x86/doc/codewalk/
pig.go 17 // A score includes scores accumulated in previous turns for each player,
  /prebuilts/go/linux-x86/doc/codewalk/
pig.go 17 // A score includes scores accumulated in previous turns for each player,
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
timings.go 75 tot time.Duration // accumulated phase time
79 // accumulated time between Stop/Start timestamps
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
timings.go 75 tot time.Duration // accumulated phase time
79 // accumulated time between Stop/Start timestamps
  /external/libvorbis/lib/
vorbisfile.c 423 ogg_int64_t accumulated=0; local
442 accumulated+=(lastblock+thisblock)>>2;
449 accumulated= ogg_page_granulepos(&og)-accumulated;
456 if(accumulated<0)accumulated=0;
458 return accumulated;
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
http.go 25 // TODO(bradfitz): move common stuff here. The other files have accumulated
  /prebuilts/go/linux-x86/src/net/http/
http.go 25 // TODO(bradfitz): move common stuff here. The other files have accumulated
  /prebuilts/go/darwin-x86/src/cmd/cgo/
main.go 39 Name map[string]*Name // accumulated Name from Files
40 ExpFunc []*ExpFunc // accumulated ExpFunc from Files
  /prebuilts/go/linux-x86/src/cmd/cgo/
main.go 39 Name map[string]*Name // accumulated Name from Files
40 ExpFunc []*ExpFunc // accumulated ExpFunc from Files
  /prebuilts/go/darwin-x86/src/compress/lzw/
reader.go 73 // Literal codes are accumulated from the start of the buffer.
writer.go 63 // savedCode is the accumulated code at the end of the most recent Write
  /prebuilts/go/linux-x86/src/compress/lzw/
reader.go 73 // Literal codes are accumulated from the start of the buffer.
writer.go 63 // savedCode is the accumulated code at the end of the most recent Write

Completed in 2227 milliseconds

1 2 3 4