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

  /external/chromium/base/
histogram.cc 152 int64 past = 0; local
173 WriteAsciiBucketContext(past, current, remaining, i, output);
175 past += current;
177 DCHECK(past == sample_count);
343 void Histogram::WriteAsciiBucketContext(const int64 past,
348 double scaled_sum = (past + current + remaining) / 100.0;
351 double percentage = past / scaled_sum;
  /libcore/luni/src/main/java/java/util/concurrent/
SynchronousQueue.java 455 * which case we try the node one past. We don't check any
460 SNode past = s.next; local
461 if (past != null && past.isCancelled())
462 past = past.next;
466 while ((p = head) != null && p != past && p.isCancelled())
470 while (p != null && p != past) {
    [all...]

Completed in 50 milliseconds