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

  /external/chromium_org/third_party/skia/src/core/
SkTileGrid.cpp 130 // The tiles themselves are already ordered, so the earliest is at the front of some tile.
132 const Entry* earliest = NULL; local
135 if (NULL == earliest || starts[i]->order < earliest->order) {
136 earliest = starts[i];
141 // If we didn't find an earliest entry, there isn't anything left to merge.
142 if (NULL == earliest) {
146 // We did find an earliest entry. Output it, and step forward every tile that contains it.
147 results->push(earliest->data);
149 if (starts[i] < ends[i] && starts[i]->order == earliest->order)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Call.java 142 Connection earliest = null; local
157 earliest = c;
162 return earliest;
  /external/chromium_org/extensions/test/data/
unit_test_environment_specific_bindings.js 80 * Runs timeout callbacks with earliest timeout.
99 // Run all timeouts in the earliest timeout bucket.
  /external/chromium_org/chrome/browser/extensions/updater/
extension_updater.cc 300 Time earliest = now + TimeDelta::FromSeconds(kStartupWaitSeconds); local
302 if (saved_next >= earliest && saved_next <= latest) {
527 Time earliest = last + TimeDelta::FromSeconds(info.throttle_delay); local
529 if (now < earliest)
  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.cpp 756 int32_t earliest = (*mHistory.begin())->int32Data() & 0xffff; local
759 ALOGI("have seq numbers from %d - %d", earliest, latest);
  /external/speex/libspeex/
jitter.c 423 int earliest=jitter->packets[0].timestamp; local
427 if (!jitter->packets[i].data || LT32(jitter->packets[j].timestamp,earliest))
429 earliest = jitter->packets[j].timestamp;
438 /*fprintf (stderr, "Buffer is full, discarding earliest frame %d (currently at %d)\n", timestamp, jitter->pointer_timestamp);*/
550 /* If still no match, try for earliest packet possible */

Completed in 1107 milliseconds