HomeSort by relevance Sort by last modified time
    Searched defs:period (Results 1 - 25 of 270) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/bluetooth/bluedroid/bta/include/
ptim.h 36 INT32 period; /* Timer period in milliseconds */ member in struct:__anon3252
59 extern void ptim_init(tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id);
  /external/libnfc-nci/src/nfa/int/
nfa_sys_ptim.h 37 INT32 period; /* Timer period in milliseconds */ member in struct:__anon22575
60 extern void nfa_sys_ptim_init (tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id);
  /external/proguard/src/proguard/gui/splash/
SawToothTiming.java 30 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)
41 this.period = period;
51 return (double)((time + phase) % period) / (double)period;
SineTiming.java 30 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)
41 this.period = period;
51 return 0.5 + 0.5 * Math.sin(2.0 * Math.PI * (time + phase) / period);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/
clock.h 10 typedef duration::period period; typedef in class:Clock
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
AbstractFileFilter.java 63 int period = name.lastIndexOf('.'); local
64 return (period > 0 ? name.substring(period + 1) : name);
  /external/qemu/distrib/sdl-1.2.15/src/timer/symbian/
SDL_systimer.cpp 48 TTimeIntervalMicroSeconds32 period; local
49 TInt tmp = UserHal::TickPeriod(period);
50 tickPeriodMilliSeconds = period.Int() / 1000;
  /libcore/luni/src/main/java/java/util/
TimerTask.java 37 long period; field in class:TimerTask
  /frameworks/base/core/java/android/content/
PeriodicSync.java 35 public final long period; field in class:PeriodicSync
56 this.period = periodInSeconds;
69 this.period = other.period;
78 long period, long flexTime) {
82 this.period = period;
90 this.period = in.readLong();
104 dest.writeLong(period);
131 && period == other.perio
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvar/
wait_until.pass.cpp 29 typedef duration::period period; typedef in struct:Clock
wait_until_pred.pass.cpp 30 typedef duration::period period; typedef in struct:Clock
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvarany/
wait_until.pass.cpp 28 typedef duration::period period; typedef in struct:Clock
wait_until_pred.pass.cpp 30 typedef duration::period period; typedef in struct:Clock
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10app/
d3d10winmain.cpp 152 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/
d3d11winmain.cpp 136 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;
  /external/libnfc-nci/src/udrv/include/
utimer.h 61 tUTIMER_TIME period; member in struct:__anon22711
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/
d3d10winmain.cpp 152 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/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11winmain.cpp 136 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;
  /external/qemu/distrib/sdl-1.2.15/src/audio/nds/
soundcommon.h 60 s16 period; member in struct:__anon26743
72 extern void SoundSetTimer(int period);
  /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));
  /hardware/qcom/display/msm8960/libqdutils/
profiler.h 75 unsigned int period; member in struct:qdutils::CalcFps::debug_fps_metadata_t
76 /* current frame, will go upto period, and then reset */
  /hardware/qcom/display/msm8974/libqdutils/
profiler.h 75 unsigned int period; member in struct:qdutils::CalcFps::debug_fps_metadata_t
76 /* current frame, will go upto period, and then reset */
  /hardware/qcom/display/msm8x26/libqdutils/
profiler.h 75 unsigned int period; member in struct:qdutils::CalcFps::debug_fps_metadata_t
76 /* current frame, will go upto period, and then reset */
  /external/apache-http/src/org/apache/http/message/
BasicLineParser.java 172 int period = buffer.indexOf('.', i, indexTo); local
173 if (period == -1) {
180 major = Integer.parseInt(buffer.substringTrimmed(i, period));
186 i = period + 1;
  /external/linux-tools-perf/util/
sort.h 57 u64 period; member in struct:hist_entry

Completed in 517 milliseconds

1 2 3 4 5 6 7 8 91011