HomeSort by relevance Sort by last modified time
    Searched refs:period (Results 201 - 225 of 774) sorted by null

1 2 3 4 5 6 7 891011>>

  /hardware/qcom/audio/legacy/libalsa-intf/
aplay.c 48 static int period = 0; variable
62 {"period", 1, 0, 'B'},
106 if (period)
107 param_set_min(params, SNDRV_PCM_HW_PARAM_PERIOD_BYTES, period);
214 if (!period)
215 period = compr_cap.min_fragment_size;
580 "-B -- Period\n"
615 period = (int)strtol(optarg, NULL, 0);
632 "-B -- Period\n"
  /prebuilts/go/darwin-x86/src/runtime/
time.go 22 // Timer wakes up at when, and then at when+period, ... (period > 0 only)
26 period int64
222 if t.period > 0 {
224 t.when += t.period * (1 + -delta/t.period)
  /prebuilts/go/linux-x86/src/runtime/
time.go 22 // Timer wakes up at when, and then at when+period, ... (period > 0 only)
26 period int64
222 if t.period > 0 {
224 t.when += t.period * (1 + -delta/t.period)
  /bionic/libc/kernel/uapi/linux/
kd.h 141 int period; member in struct:kbd_repeat
  /external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
TestingExecutors.java 141 Runnable command, long initialDelay, long period, TimeUnit unit) {
  /external/kernel-headers/original/uapi/linux/
kd.h 150 int period; /* in msec; <= 0: don't change */ member in struct:kbd_repeat
  /external/llvm/lib/TableGen/
TGLexer.h 41 comma, period, // , . enumerator in enum:llvm::tgtok::TokKind
  /libcore/ojluni/src/test/java/time/test/java/time/chrono/
TestUmmAlQuraChronology.java 330 // Data provider to get the difference between two dates as a period
334 {HijrahDate.of(1350, 5, 15), HijrahDate.of(1434, 7, 20), HijrahChronology.INSTANCE.period(84, 2, 5)},
335 {HijrahDate.of(1403, 5, 28), HijrahDate.of(1434, 7, 20), HijrahChronology.INSTANCE.period(31, 1, 22)},
336 {HijrahDate.of(1434, 7, 20), HijrahDate.of(1484, 2, 15), HijrahChronology.INSTANCE.period(49, 6, 24)},
337 {HijrahDate.of(1500, 6, 12), HijrahDate.of(1450, 4, 21), HijrahChronology.INSTANCE.period(-50, -1, -20)},
338 {HijrahDate.of(1549, 3, 11), HijrahDate.of(1550, 3, 10), HijrahChronology.INSTANCE.period(0, 11, 28)},
342 // Test to get the Period between two given dates
345 ChronoPeriod period = h1.until(h2); local
346 assertEquals(period, p);
349 // Test to get the Period between dates in different chronologie
353 ChronoPeriod period = h1.until(m); local
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/
DvrDataManager.java 86 * Returns a list of the schedules with a overlap with the given time period inclusive and with
89 * <p>A recording overlaps with a period when {@code recording.getStartTime() <=
90 * period.getUpper() && recording.getEndTime() >= period.getLower()}.
92 * @param period a time period in milliseconds.
95 List<ScheduledRecording> getScheduledRecordings(Range<Long> period, @RecordingState int state);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
kd.h 150 int period; /* in msec; <= 0: don't change */ member in struct:kbd_repeat
  /system/extras/simpleperf/
report_lib_interface.cpp 44 uint64_t period; member in struct:Sample
268 current_sample_.period = next_time - r.time_data.time;
270 current_sample_.period = r.period_data.period;
  /device/google/contexthub/firmware/os/platform/stm32/
rtc.c 110 #define RTC_VALID_DELAY_FOR_PERIOD(delay, period) \
111 (delay < (period * (RTC_WKUP_DOWNCOUNT_MAX + 1)))
170 /* Minimum wakeup interrupt period is 122 us, max is 36.4 hours */
177 /* Get appropriate clock period for delay size. Wakeup clock = RTC/x. */
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
SerializedGrammar.java 128 byte period = in.readByte();
129 if ( period!='.' ) throw new IOException("missing . on end of rule");
  /external/autotest/server/site_tests/network_WiFi_BluetoothStreamPerf/
network_WiFi_BluetoothStreamPerf.py 61 get_ping_config = lambda period: ping_runner.PingConfig(
62 self.context.get_wifi_addr(), interval=1, count=period)
  /external/curl/docs/cmdline-opts/
upload-file.d 14 Alternately, the file name "." (a single period) may be specified instead
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractScheduledService.java 137 * @param period the period between successive executions of the task
138 * @param unit the time unit of the initialDelay and period parameters
140 public static Scheduler newFixedRateSchedule(final long initialDelay, final long period,
146 return executor.scheduleAtFixedRate(task, initialDelay, period, unit);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
WrappingScheduledExecutorServiceTest.java 143 Runnable command, long initialDelay, long period, TimeUnit unit) {
147 lastDelay = period;
  /external/libcxx/test/libcxx/experimental/filesystem/
convert_file_time.sh.cpp 178 typedef typename duration::period period; typedef in struct:TestClock
  /external/ltp/testcases/open_posix_testsuite/functional/threads/pi_test/
pitest-1.c 169 double period = 250; local
182 ts.tv_nsec = period * 1000 * 1000;
pitest-4.c 146 double period = 300; local
159 ts.tv_nsec = period * 1000 * 1000;
pitest-5.c 186 double period = 300; local
201 ts.tv_nsec = period * 1000 * 1000;
pitest-6.c 169 double period = 250; local
181 ts.tv_nsec = period * 1000 * 1000;
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockResponse.java 198 * Throttles the response body writer to sleep for the given period after each
202 public MockResponse throttleBody(long bytesPerPeriod, long period, TimeUnit unit) {
204 this.throttlePeriodAmount = period;
  /frameworks/base/core/java/android/text/method/
TextKeyListener.java 298 boolean period = System.getInt(resolver, System.TEXT_AUTO_PUNCTUATE, 1) > 0;
303 (period ? AUTO_PERIOD : 0) |
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_haptic.h 83 * effect.periodic.period = 1000; // 1000 ms
496 * of 9000 will displace it 25% of its period. Here are sample values:
498 * - 9000: Displaced 25% of its period.
499 * - 18000: Displaced 50% of its period.
500 * - 27000: Displaced 75% of its period.
501 * - 36000: Displaced 100% of its period, same as 0, but 0 is preferred.
555 Uint16 period; /**< Period of the wave. */ member in struct:SDL_HapticPeriodic
707 Uint16 period; /**< Sample periods. */ member in struct:SDL_HapticCustom
    [all...]

Completed in 527 milliseconds

1 2 3 4 5 6 7 891011>>