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

1 23 4 5 6 7 8 91011>>

  /external/bluetooth/bluedroid/bta/sys/
ptim.c 35 ** period is the GKI timer period in milliseconds. Parameter
41 void ptim_init(tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id)
44 p_cb->period = period;
66 /* To handle the case when the function is called less frequently than the period
133 GKI_start_timer(p_cb->timer_id, GKI_MS_TO_TICKS(p_cb->period), TRUE);
  /external/libnfc-nci/src/nfa/sys/
nfa_sys_ptim.c 37 ** period is the GKI timer period in milliseconds. Parameter
43 void nfa_sys_ptim_init (tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id)
46 p_cb->period = period;
68 /* To handle the case when the function is called less frequently than the period
140 GKI_start_timer (p_cb->timer_id, GKI_MS_TO_TICKS (p_cb->period), TRUE);
  /external/chromium_org/tools/python/google/
gethash_timer.py 11 $ ./gethash_timer.py --period=600 --samples=20 --output=resp.csv
13 --period (or -p): The amount of time (in seconds) to wait between GetHash
67 def RunTimedGetHash(period, samples=None):
72 period: A floating point value that indicates (in seconds) the delay
88 time.sleep(period)
121 period = 10
126 ['samples=', 'period=', 'output='])
130 elif option == '-p' or option == '--period':
131 period = float(value)
140 RunTimedGetHash(period, samples
    [all...]
  /hardware/qcom/display/msm8084/libqdutils/
profiler.cpp 81 property_get("debug.gr.calcfps.period", prop, "10");
82 debug_fps_metadata.period = atoi(prop);
84 if (debug_fps_metadata.period > MAX_FPS_CALC_PERIOD_IN_FRAMES) {
85 debug_fps_metadata.period = MAX_FPS_CALC_PERIOD_IN_FRAMES;
109 ALOGD("period: %u", debug_fps_metadata.period);
116 ALOGD("FPS for last %d frames: %3.2f", debug_fps_metadata.period, fps);
177 if (debug_fps_metadata.curr_frame == debug_fps_metadata.period) {
180 for (unsigned int i = 0; i < debug_fps_metadata.period; i++)
182 print_fps(float(float(debug_fps_metadata.period * 1000000)
    [all...]
  /hardware/qcom/display/msm8226/libqdutils/
profiler.cpp 81 property_get("debug.gr.calcfps.period", prop, "10");
82 debug_fps_metadata.period = atoi(prop);
84 if (debug_fps_metadata.period > MAX_FPS_CALC_PERIOD_IN_FRAMES) {
85 debug_fps_metadata.period = MAX_FPS_CALC_PERIOD_IN_FRAMES;
109 ALOGD("period: %u", debug_fps_metadata.period);
116 ALOGD("FPS for last %d frames: %3.2f", debug_fps_metadata.period, fps);
177 if (debug_fps_metadata.curr_frame == debug_fps_metadata.period) {
180 for (unsigned int i = 0; i < debug_fps_metadata.period; i++)
182 print_fps(float(float(debug_fps_metadata.period * 1000000)
    [all...]
  /hardware/qcom/display/msm8960/libqdutils/
profiler.cpp 78 property_get("debug.gr.calcfps.period", prop, "10");
79 debug_fps_metadata.period = atoi(prop);
81 if (debug_fps_metadata.period > MAX_FPS_CALC_PERIOD_IN_FRAMES) {
82 debug_fps_metadata.period = MAX_FPS_CALC_PERIOD_IN_FRAMES;
104 ALOGD("period: %d", debug_fps_metadata.period);
111 ALOGD("FPS for last %d frames: %3.2f", debug_fps_metadata.period, fps);
171 if (debug_fps_metadata.curr_frame == debug_fps_metadata.period) {
174 for (unsigned int i = 0; i < debug_fps_metadata.period; i++)
176 print_fps((debug_fps_metadata.period * float(1000000))/float(sum))
    [all...]
  /hardware/qcom/display/msm8974/libqdutils/
profiler.cpp 78 property_get("debug.gr.calcfps.period", prop, "10");
79 debug_fps_metadata.period = atoi(prop);
81 if (debug_fps_metadata.period > MAX_FPS_CALC_PERIOD_IN_FRAMES) {
82 debug_fps_metadata.period = MAX_FPS_CALC_PERIOD_IN_FRAMES;
104 ALOGD("period: %d", debug_fps_metadata.period);
111 ALOGD("FPS for last %d frames: %3.2f", debug_fps_metadata.period, fps);
171 if (debug_fps_metadata.curr_frame == debug_fps_metadata.period) {
174 for (unsigned int i = 0; i < debug_fps_metadata.period; i++)
176 print_fps((debug_fps_metadata.period * float(1000000))/float(sum))
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
callchain.c 233 u64 period)
241 new->hit = period;
253 u64 idx_parents, u64 idx_local, u64 period)
280 add_child(parent, cursor, period);
281 parent->children_hit += period;
283 parent->hit = period;
290 u64 period);
295 u64 period)
301 unsigned int ret = append_chain(rnode, cursor, period);
307 add_child(root, cursor, period);
    [all...]
hist.c 182 unsigned int cpumode, u64 period)
186 he->stat.period_sys += period;
189 he->stat.period_us += period;
192 he->stat.period_guest_sys += period;
195 he->stat.period_guest_us += period;
202 static void he_stat__add_period(struct he_stat *he_stat, u64 period,
206 he_stat->period += period;
213 dest->period += src->period;
    [all...]
  /external/chromium_org/third_party/webrtc/base/
timing.cc 71 double Timing::BusyWait(double period) {
73 while (TimerNow() - start_time < period) {
78 double Timing::IdleWait(double period) {
82 double sec_int, sec_frac = modf(period, &sec_int);
99 due_time.QuadPart = -LONGLONG(period * 1.0e7);
106 Sleep(DWORD(period * 1.0e3));
timing.h 41 double BusyWait(double period);
43 // IdleWait() relinquishes control of CPU for specified period in
50 double IdleWait(double period);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
delay_peak_detector.cc 19 // the previous packet arrival) and the peak "period" (the time since the last
66 // This is the first peak. Reset the period counter.
69 // This is not the first peak, and the period is valid.
81 // Invalid peak due to too long period. Reset period counter and start
85 // More than 2 times the maximum period has elapsed since the last peak
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CapsModeUtils.java 110 // The end of a sentence ends with a period, question mark or exclamation mark. If it's
111 // a period, it also needs not to be an abbreviation, which means it also needs to either
202 // variants of English, the final period is placed within double quotes and maybe
217 // a sentence. If it's neither, the only remaining case is the period so we get the opposite
226 // We found out that we have a period. We need to determine if this is a full stop or
227 // otherwise sentence-ending period, or an abbreviation like "e.g.". An abbreviation
230 // a whitespace-digits-period sequence.
232 // START, WORD, PERIOD, ABBREVIATION, NUMBER
233 // On START : (just before the first period)
236 // whitespace => end with no caps (it was a stand-alone period)
    [all...]
  /external/libcxx/test/utilities/time/
hours.pass.cpp 22 typedef D::period Period;
26 static_assert((std::is_same<Period, std::ratio<3600> >::value), "");
microseconds.pass.cpp 22 typedef D::period Period;
26 static_assert((std::is_same<Period, std::micro>::value), "");
milliseconds.pass.cpp 22 typedef D::period Period;
26 static_assert((std::is_same<Period, std::milli>::value), "");
minutes.pass.cpp 22 typedef D::period Period;
26 static_assert((std::is_same<Period, std::ratio<60> >::value), "");
nanoseconds.pass.cpp 22 typedef D::period Period;
26 static_assert((std::is_same<Period, std::nano>::value), "");
seconds.pass.cpp 22 typedef D::period Period;
26 static_assert((std::is_same<Period, std::ratio<1> >::value), "");
  /external/libcxx/test/utilities/time/time.duration/time.duration.nonmember/
op_divide_rep.pass.cpp 14 // template <class Rep1, class Period, class Rep2>
16 // duration<typename common_type<Rep1, Rep2>::type, Period>
17 // operator/(const duration<Rep1, Period>& d, const Rep2& s);
op_mod_rep.pass.cpp 14 // template <class Rep1, class Period, class Rep2>
16 // duration<typename common_type<Rep1, Rep2>::type, Period>
17 // operator%(const duration<Rep1, Period>& d, const Rep2& s)
  /external/markdown/MarkdownTest/Tests_2004/
Backslash escapes.html 27 <p>Period: .</p>
61 Period: \.
96 <p>Period: <code>\.</code></p>
Backslash escapes.text-out 22 <p>Period: .</p>
52 Period: \.
74 <p>Period: <code>\.</code></p>
Backslash escapes.text-res 22 <p>Period: .</p>
52 Period: \.
74 <p>Period: <code>\.</code></p>
  /external/markdown/tests/markdown-test/
backlash-escapes.html 14 <p>Period: .</p>
43 Period: \.
64 <p>Period: <code>\.</code></p>

Completed in 359 milliseconds

1 23 4 5 6 7 8 91011>>