HomeSort by relevance Sort by last modified time
    Searched full:period (Results 226 - 250 of 2697) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/services/surfaceflinger/
DispSync.cpp 64 void updateModel(nsecs_t period, nsecs_t phase) {
66 mPeriod = period;
163 // a period of the last event time, we need to initialize the last
164 // event time to a half a period in the past.
404 void DispSync::setPeriod(nsecs_t period) {
406 mPeriod = period;
449 ATRACE_INT64("DispSync:Period", mPeriod);
453 // Artificially inflate the period if requested.
465 // Need to compare present fences against the un-adjusted refresh period,
467 nsecs_t period = mPeriod / (1 + mRefreshSkipCount) local
    [all...]
DispSync.h 45 // display and uses that model to execute period callbacks at specific phase
99 // The setPeriod method sets the vsync event model's period to a specific
102 void setPeriod(nsecs_t period);
104 // The getPeriod method returns the current vsync period.
144 // mPeriod is the computed period of the modeled vsync events in
  /external/srtp/test/
lfsr.c 47 printf("period: %d\n", i);
137 period(uint32_t poly) { function
267 u32_bit_string(p.value,8), period(p.value));
280 u32_bit_string(polynomials[i],8), period(polynomials[i]));
297 u32_bit_string(y,bits), weight(y), period(y));
  /external/zlib/src/contrib/ada/
read.adb 54 Period : constant Stream_Element_Offset := 200;
55 -- Period constant variable for random generator not to be very random.
56 -- Bigger period, harder random.
90 if J < Item'First + Period then
93 Item (J) := Item (J - Period);
  /frameworks/base/docs/html/google/play/billing/
billing_subscriptions.jd 16 <li>You can offer a configurable trial period for monthly and
62 period for each, choose a billing interval, and then
215 access to it, but is not charged during the deferral period. This allows you
237 by a whole number of days. If you request a deferral period that includes a
238 fractional number of days, the API rounds the period up to the next full day.
249 <p>In the Developer Console, you can set up a free trial period that lets users
250 try your subscription content before buying it. The trial period runs for the
251 period of time that you set and then automatically converts to a full
258 However, the user is not charged any money, because the initial period
261 subscription is marked as purchased for the duration of the trial period o
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
CapsModeUtilsTests.java 114 // Test armenian period
116 assertTrue("Period is not sentence separator in Armenian",
118 assertTrue("Sentence separator is Armenian period in Armenian",
123 // Space, but no armenian period : capitalize if MODE_WORDS but not SENTENCES
125 // Armenian period : capitalize if MODE_SENTENCES
  /external/chromium_org/net/cert/
x509_util.h 41 // Domain, serial number and validity period are given as
65 // Subject, serial number and validity period are given as parameters.
106 // - Prefer certificates that have a longer validity period (later
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
CachingCorrectnessTest.cpp 182 // Advance the clock within the implicit freshness period of this resource before we make a request.
198 // Advance the clock within the freshness period of this resource before we make a request.
214 // Advance the clock within the freshness period of this resource before we make a request.
231 // Advance the clock beyond the implicit freshness period.
247 // Advance the clock within the expiredness period of this resource before we make a request.
264 // Advance the clock within the expiredness period of this resource before we make a request.
282 // Advance the clock within the freshness period, and make a request to add this image to the document resources.
287 // Advance the clock within the expiredness period of this resource before we make a request.
303 // Advance the clock within the expiredness period of this resource before we make a request.
320 // Advance the clock within the freshness period of this resource before we make a request
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
expand.h 68 // a period of expands.
72 // a period of expands.
104 // Initializes member variables at the beginning of an expand period.
  /external/chromium_org/base/
critical_closure.h 23 // This class wraps a closure so it can continue to run for a period of time
49 // arguments) that will continue to run for a period of time when the
  /external/chromium_org/chrome/browser/media/
desktop_media_list.h 38 virtual void SetUpdatePeriod(base::TimeDelta period) = 0;
52 // on the update period, and notifications generated only for changes in the
  /external/chromium_org/testing/android/junit/java/src/org/chromium/testing/local/
GtestFilter.java 27 private static final Pattern PERIOD = Pattern.compile("\\.");
42 String sanitized = PERIOD.matcher(f).replaceAll("\\\\.");
  /external/jmdns/src/javax/jmdns/impl/
DNSTaskStarter.java 226 public synchronized void schedule(TimerTask task, long delay, long period) {
228 super.schedule(task, delay, period);
236 public synchronized void schedule(TimerTask task, Date firstTime, long period) {
238 super.schedule(task, firstTime, period);
246 public synchronized void scheduleAtFixedRate(TimerTask task, long delay, long period) {
248 super.scheduleAtFixedRate(task, delay, period);
256 public synchronized void scheduleAtFixedRate(TimerTask task, Date firstTime, long period) {
258 super.scheduleAtFixedRate(task, firstTime, period);
  /external/libcxx/include/
mutex 65 template <class Rep, class Period>
66 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
83 template <class Rep, class Period>
84 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
124 template <class Rep, class Period>
125 unique_lock(mutex_type& m, const chrono::duration<Rep, Period>& rel_time);
137 template <class Rep, class Period>
138 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
  /external/libcxx/test/thread/thread.condition/thread.condition.condvar/
wait_for.pass.cpp 14 // template <class Rep, class Period>
17 // const chrono::duration<Rep, Period>& rel_time);
  /external/libcxx/test/thread/thread.condition/thread.condition.condvarany/
wait_for.pass.cpp 14 // template <class Lock, class Rep, class Period>
16 // wait_for(Lock& lock, const chrono::duration<Rep, Period>& rel_time);
wait_for_pred.pass.cpp 14 // template <class Lock, class Rep, class Period, class Predicate>
16 // wait_for(Lock& lock, const chrono::duration<Rep, Period>& rel_time,
  /external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
mutex_duration.pass.cpp 14 // template <class Rep, class Period>
15 // unique_lock(mutex_type& m, const chrono::duration<Rep, Period>& rel_time);
  /external/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/
try_lock_for.pass.cpp 14 // template <class Rep, class Period>
15 // bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
try_lock_shared_for.pass.cpp 14 // template <class Rep, class Period>
15 // bool try_lock_shared_for(const chrono::duration<Rep, Period>& rel_time);
  /external/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/
try_lock_for.pass.cpp 14 // template <class Rep, class Period>
15 // bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
  /external/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/
try_lock_for.pass.cpp 14 // template <class Rep, class Period>
15 // bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
  /external/libcxx/test/utilities/time/time.clock/time.clock.system/
consistency.pass.cpp 30 static_assert((std::is_same<C::period, C::duration::period>::value), "");
  /frameworks/base/core/java/android/view/
FrameStats.java 38 * Gets the refresh period of the display hosting the window(s) for
41 * @return The refresh period in nanoseconds.
WindowAnimationFrameStats.java 31 * period the user will see irregular window transitions. The time when the frame was
45 * @param refreshPeriodNano The display refresh period.

Completed in 599 milliseconds

1 2 3 4 5 6 7 8 91011>>