Searched defs:period (Results 1 - 25 of 114) sorted by relevance

12345

/external/bluetooth/bluedroid/bta/include/
H A Dptim.h36 INT32 period; /* Timer period in milliseconds */ member in struct:__anon918
59 extern void ptim_init(tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id);
/external/libcxx/test/utilities/time/
H A Dclock.h19 typedef duration::period period; typedef in class:Clock
/external/libnfc-nci/src/nfa/int/
H A Dnfa_sys_ptim.h37 INT32 period; /* Timer period in milliseconds */ member in struct:__anon24258
60 extern void nfa_sys_ptim_init (tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Denhancer.c34 int16_t *period, /* (i) pitch period array (pitch bward-in time) */
35 int16_t *plocs, /* (i) locations where period array values valid */
36 int16_t periodl /* (i) dimension of period and plocs */
45 WebRtcIlbcfix_GetSyncSeq(idata, idatal, centerStartPos, period, plocs,
29 WebRtcIlbcfix_Enhancer( int16_t *odata, int16_t *idata, int16_t idatal, int16_t centerStartPos, int16_t *period, int16_t *plocs, int16_t periodl ) argument
H A Dget_sync_seq.c32 int16_t *period, /* (i) rough-pitch-period array (Q-2) */
33 int16_t *plocs, /* (i) where periods of period array are taken (Q-2) */
34 int16_t periodl, /* (i) dimension period array */
59 blockStartPos[q]=blockStartPos[q+1]-period[lagBlock[q+1]];
62 (int16_t)(blockStartPos[q] + (int16_t)WEBRTC_SPL_MUL_16_16(4, ENH_BLOCKL_HALF)-period[lagBlock[q+1]]),
82 plocs2[i]=(plocs[i]-period[i]);
91 blockStartPos[q]=blockStartPos[q-1]+period[lagBlock[q]];
28 WebRtcIlbcfix_GetSyncSeq( int16_t *idata, int16_t idatal, int16_t centerStartPos, int16_t *period, int16_t *plocs, int16_t periodl, int16_t hl, int16_t *surround ) argument
/external/proguard/src/proguard/gui/splash/
H A DSawToothTiming.java30 private final long period; field in class:SawToothTiming
36 * @param period the time period for a full cycle.
39 public SawToothTiming(long period, long phase) argument
41 this.period = period;
51 return (double)((time + phase) % period) / (double)period;
H A DSineTiming.java30 private final long period; field in class:SineTiming
36 * @param period the time period for a full cycle.
39 public SineTiming(long period, long phase) argument
41 this.period = period;
51 return 0.5 + 0.5 * Math.sin(2.0 * Math.PI * (time + phase) / period);
/external/bluetooth/bluedroid/bta/sys/
H A Dptim.c35 ** period is the GKI timer period in milliseconds. Parameter
41 void ptim_init(tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id) argument
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/chromium_org/third_party/webrtc/base/
H A Dratelimiter.h19 // Limits the rate of use to a certain maximum quantity per period of
28 RateLimiter(size_t max, double period) argument
30 period_length_(period),
33 period_end_(period) {
38 // current period (< (max - used)). Once the given time passes the
39 // end of the period, used is set to zero and more use is available.
41 // Increment the quantity used this period. If past the end of a
42 // period, a new period is started.
H A Dtiming.cc71 double Timing::BusyWait(double period) { argument
73 while (TimerNow() - start_time < period) {
78 double Timing::IdleWait(double period) { argument
82 double sec_int, sec_frac = modf(period, &sec_int);
99 due_time.QuadPart = -LONGLONG(period * 1.0e7);
106 Sleep(DWORD(period * 1.0e3));
/external/libnfc-nci/src/nfa/sys/
H A Dnfa_sys_ptim.c37 ** period is the GKI timer period in milliseconds. Parameter
43 void nfa_sys_ptim_init (tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id) argument
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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPeriodicSync.java17 public void __constructor__(Account account, String authority, Bundle extras, long period) throws Exception { argument
20 setField("period", period);
/external/libcxx/test/thread/thread.condition/thread.condition.condvar/
H A Dwait_until.pass.cpp29 typedef duration::period period; typedef in struct:Clock
H A Dwait_until_pred.pass.cpp30 typedef duration::period period; typedef in struct:Clock
/external/libcxx/test/thread/thread.condition/thread.condition.condvarany/
H A Dwait_until.pass.cpp28 typedef duration::period period; typedef in struct:Clock
H A Dwait_until_pred.pass.cpp30 typedef duration::period period; typedef in struct:Clock
/external/qemu/distrib/sdl-1.2.15/src/timer/symbian/
H A DSDL_systimer.cpp48 TTimeIntervalMicroSeconds32 period; local
49 TInt tmp = UserHal::TickPeriod(period);
50 tickPeriodMilliSeconds = period.Int() / 1000;
/external/chromium_org/cc/test/
H A Dtest_now_source.cc71 void TestNowSource::AdvanceNow(base::TimeDelta period) { argument
78 period.ToInternalValue());
80 DCHECK(period >= base::TimeDelta()); // Time should always go forward.
81 now_ += period;
/external/chromium_org/chrome/browser/media/
H A Dfake_desktop_media_list.cc44 void FakeDesktopMediaList::SetUpdatePeriod(base::TimeDelta period) {} argument
H A Ddesktop_media_list_ash.cc53 void DesktopMediaListAsh::SetUpdatePeriod(base::TimeDelta period) { argument
55 update_period_ = period;
/external/libnfc-nci/src/udrv/include/
H A Dutimer.h61 tUTIMER_TIME period; member in struct:__anon24401
/external/qemu/distrib/sdl-1.2.15/src/audio/nds/
H A Dsoundcommon.h60 s16 period; member in struct:__anon29392
72 extern void SoundSetTimer(int period);
/external/chromium_org/third_party/libsrtp/srtp/test/
H A Dlfsr.c82 printf("period: %d\n", i);
172 period(uint32_t poly) { function
302 u32_bit_string(p.value,8), period(p.value));
315 u32_bit_string(polynomials[i],8), period(polynomials[i]));
332 u32_bit_string(y,bits), weight(y), period(y));
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10app/
H A Dd3d10winmain.cpp152 double period = 1.0 / (double)freq.QuadPart; local
155 double start_time = ctime_li.QuadPart * period;
175 double ctime = (double)ctime_li.QuadPart * period - start_time;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11winmain.cpp136 double period = 1.0 / (double)freq.QuadPart; local
139 double start_time = ctime_li.QuadPart * period;
159 double ctime = (double)ctime_li.QuadPart * period - start_time;

Completed in 7105 milliseconds

12345