HomeSort by relevance Sort by last modified time
    Searched refs:max_time (Results 1 - 25 of 30) sorted by null

1 2

  /external/webrtc/webrtc/system_wrappers/source/
event.cc 39 EventTypeWrapper Wait(unsigned long max_time) override {
40 int to_wait = max_time == WEBRTC_EVENT_INFINITE ?
41 rtc::Event::kForever : static_cast<int>(max_time);
event_timer_win.h 27 virtual EventTypeWrapper Wait(unsigned long max_time);
event_timer_win.cc 40 EventTypeWrapper EventTimerWin::Wait(unsigned long max_time) {
41 unsigned long res = WaitForSingleObject(event_, max_time);
event_timer_posix.h 33 EventTypeWrapper Wait(unsigned long max_time) override;
  /external/ltp/testcases/realtime/func/gtod_latency/
gtod_infinite.c 107 nsec_t max_time = START_MAX; local
177 ((diff_time > max_time) || (diff_time > REPORT_MIN))) {
178 if (diff_time > max_time)
179 max_time = diff_time;
184 max_time, ctime(&tt));
188 max_time = 0;
  /external/webrtc/webrtc/system_wrappers/include/
event_wrapper.h 48 // |max_time| is the maximum time to wait in milliseconds or
50 virtual EventTypeWrapper Wait(unsigned long max_time) = 0;
  /external/libchrome/base/synchronization/
condition_variable.h 96 void TimedWait(const TimeDelta& max_time);
condition_variable_posix.cc 76 void ConditionVariable::TimedWait(const TimeDelta& max_time) {
78 int64_t usecs = max_time.InMicroseconds();
waitable_event.h 89 // Wait up until max_time has passed for the event to be signaled. Returns
91 // does not necessarily mean that max_time was exceeded.
94 bool TimedWait(const TimeDelta& max_time);
waitable_event_posix.cc 159 bool WaitableEvent::TimedWait(const TimeDelta& max_time) {
161 const TimeTicks end_time(TimeTicks::Now() + max_time);
162 const bool finite_time = max_time.ToInternalValue() >= 0;
  /external/autotest/client/tests/sysbench/
sysbench.py 32 num_threads = utils.count_cpus(), max_time = 60, \
53 self.execute_pgsql(build, num_threads, max_time, read_only, args)
55 self.execute_mysql(build, num_threads, max_time, read_only, args)
58 def execute_pgsql(self, build, num_threads, max_time, read_only, args):
87 ' --max-time=' + str(max_time) + \
103 def execute_mysql(self, build, num_threads, max_time, read_only, args):
132 ' --max-time=' + str(max_time) + \
  /external/webrtc/webrtc/modules/video_coding/test/
test_util.h 36 virtual webrtc::EventTypeWrapper Wait(unsigned long max_time) { // NOLINT
  /external/lisa/libs/utils/analysis/
idle_analysis.py 205 max_time = r.max().values[0]
206 if xmax < max_time:
207 xmax = max_time
239 max_time = r.max().values[0]
240 if xmax < max_time:
241 xmax = max_time
frequency_analysis.py 382 max_time = res.total.max().values[0]
383 if xmax < max_time:
384 xmax = max_time
439 max_time = res.total.max().values[0]
440 if xmax < max_time:
441 xmax = max_time
  /external/llvm/utils/lit/lit/
run.py 190 def execute_tests(self, display, jobs, max_time=None,
193 execute_tests(display, jobs, [max_time])
200 If max_time is non-None, it should be a time in seconds after which to
252 if max_time is not None:
255 timeout_timer = threading.Timer(max_time, timeout_handler)
268 if max_time is not None:
  /external/fio/tools/plot/
fio2gnuplot 151 def compute_temp_file(fio_data_file,disk_perf,gnuplot_output_dir, min_time, max_time):
152 end_time=max_time
211 if ((float(time)>(float(min_time)*1000)) and ((int(time) < (int(max_time)*1000)) or max_time==-1)):
377 print '-M or --max_time <time> : Only consider data ending before <time> seconds (default is -1 aka nolimit)'
394 max_time=-1
410 opts, args = getopt.getopt(argv[1:],"ghkbivo:d:t:p:G:m:M:",['bandwidth', 'iops', 'pattern', 'outputfile', 'outputdir', 'title', 'min_time', 'max_time', 'gnuplot', 'Global', 'help', 'verbose','keep'])
442 elif opt in ("-M", "--max_time"):
443 max_time=arg
505 blk_size=compute_temp_file(fio_data_file,disk_perf,gnuplot_output_dir,min_time,max_time)
    [all...]
  /tools/test/connectivity/acts/framework/acts/test_utils/tel/
tel_test_utils.py     [all...]
  /external/gemmlowp/test/
benchmark_meta_gemm.cc 160 double max_time) {
165 while (sum_time < max_time) {
179 void time_one(Shape* shape, double max_time) {
187 while (sum_time < max_time) {
  /device/asus/fugu/libaudio/
AudioStreamOut.cpp 686 int64_t max_time = LLONG_MIN; local
712 if (!max_time_valid || (max_time < tmp)) {
713 max_time = tmp;
741 adjustOutputs(max_time);
744 // hit the speakers is just max_time plus the maximum amt of delay
746 *timestamp = max_time;
  /external/syslinux/core/lwip/src/core/ipv4/
igmp.c 141 static void igmp_start_timer(struct igmp_group *group, u8_t max_time);
695 * @param max_time the time in multiples of IGMP_TMR_INTERVAL (decrease with
699 igmp_start_timer(struct igmp_group *group, u8_t max_time)
702 if (max_time == 0) {
703 max_time = 1;
706 group->timer = (LWIP_RAND() % (max_time - 1)) + 1;
  /external/curl/lib/
tftp.c 133 time_t max_time; member in struct:tftp_state_data
219 state->max_time = state->start_time+maxtime;
243 state->max_time = state->start_time+maxtime;
265 (int)state->state, (long)(state->max_time-state->start_time),
    [all...]
  /device/google/dragon/audio/hal/
cras_dsp_pipeline.c 137 int64_t max_time; member in struct:pipeline
803 pipeline->max_time = t;
806 pipeline->max_time = MAX(pipeline->max_time, t);
  /external/icu/icu4c/source/tools/tzcode/
zic.c 867 static const zic_t max_time = -1 - ((zic_t) -1 << (TIME_T_BITS_IN_FILE - 1)); variable
1245 z.z_untiltime < max_time &&
1247 zones[nzones - 1].z_untiltime < max_time &&
1330 if (dayoff > max_time / SECSPERDAY) {
    [all...]
  /external/sonivox/jet_tools/JetCreator/
eas.py 490 def Play (self, max_time=None):
491 """Plays the file to the end or max_time."""
495 if max_time is not None:
496 max_time += self.eas.GetRenderTime()
499 if max_time is not None:
500 if self.eas.GetRenderTime() >= max_time:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
pybench.py 583 max_time = max(self.roundtimes)
584 return (min_time, avg_time, max_time)
    [all...]

Completed in 1770 milliseconds

1 2