Home
last modified time | relevance | path

Searched refs:time_us (Results 1 – 12 of 12) sorted by relevance

/external/toybox/toys/lsb/
Ddmesg.c50 unsigned long long time_s, time_us; in format_message() local
56 if (sscanf(msg, "%u,%*u,%llu,%*[^;]; %n", &facpri, &time_us, &pos) != 2) in format_message()
59 time_s = time_us/1000000; in format_message()
60 time_us %= 1000000; in format_message()
62 &facpri, &time_s, &time_us, &pos) != 3) return; in format_message()
85 } else printf("[%5lld.%06lld] ", time_s, time_us); in format_message()
/external/u-boot/common/
Dbootstage.c24 ulong time_us; member
109 rec->time_us = mark; in bootstage_add_record()
193 rec->time_us += duration; in bootstage_accum()
225 print_grouped_ull(rec->time_us, BOOTSTAGE_DIGITS); in print_time_record()
227 print_grouped_ull(rec->time_us, BOOTSTAGE_DIGITS); in print_time_record()
228 print_grouped_ull(rec->time_us - prev, BOOTSTAGE_DIGITS); in print_time_record()
232 return rec->time_us; in print_time_record()
239 return rec1->time_us > rec2->time_us ? 1 : -1; in h_compare_record()
276 if (rec->id != BOOTSTAGE_ID_AWAKE && rec->time_us == 0) in add_bootstages_devicetree()
291 rec->time_us)) in add_bootstages_devicetree()
/external/walt/arduino/walt/
Dwalt.ino77 elapsedMicros time_us;
109 laser.t = time_us;
235 t = time_us;
251 time_us = 0;
261 send(time_us);
269 clock.sync_times[cmd - '1'] = time_us;
287 clock.sync_times[i] = time_us;
312 long beep_time = time_us;
328 unsigned long note_time = time_us + NOTE_DELAY;
333 while (time_us < note_time);
[all …]
/external/tensorflow/tensorflow/lite/tools/benchmark/ios/TFLiteBenchmark/TFLiteBenchmark/
DBenchmarkViewController.mm76 void OutputMicrosecondsStatToStream(const tensorflow::Stat<int64_t>& time_us,
78 *stream << prefix << "Num runs: " << time_us.count() << "\n";
80 *stream << prefix << "Average: " << time_us.avg() / 1e3 << " ms\n";
81 *stream << prefix << "Min: " << time_us.min() / 1e3 << " ms \n";
82 *stream << prefix << "Max: " << time_us.max() / 1e3 << " ms \n";
83 *stream << prefix << "Std deviation: " << time_us.std_deviation() / 1e3 << " ms\n";
/external/grpc-grpc/test/cpp/interop/
Dinterop_server.cc217 int time_us; in StreamingOutputCall() local
218 if ((time_us = request->response_parameters(i).interval_us()) > 0) { in StreamingOutputCall()
222 gpr_time_from_micros(time_us, GPR_TIMESPAN)); in StreamingOutputCall()
271 int time_us; in FullDuplexCall() local
272 if ((time_us = request.response_parameters(0).interval_us()) > 0) { in FullDuplexCall()
276 gpr_time_from_micros(time_us, GPR_TIMESPAN)); in FullDuplexCall()
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/ufs/ufshcd_profile_clk_gating/
Dformat11 field:s64 time_us; offset:16; size:8; signed:1;
14 … %s: took %lld usecs, err %d", __get_str(dev_name), __get_str(profile_info), REC->time_us, REC->err
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/ufs/ufshcd_profile_clk_scaling/
Dformat11 field:s64 time_us; offset:16; size:8; signed:1;
14 … %s: took %lld usecs, err %d", __get_str(dev_name), __get_str(profile_info), REC->time_us, REC->err
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/ufs/ufshcd_profile_hibern8/
Dformat11 field:s64 time_us; offset:16; size:8; signed:1;
14 … %s: took %lld usecs, err %d", __get_str(dev_name), __get_str(profile_info), REC->time_us, REC->err
/external/tensorflow/tensorflow/python/data/experimental/benchmarks/
Dparallel_interleave_benchmark.py45 def make_dataset(time_us, num_elements): argument
46 return dataset_ops.Dataset.range(num_elements).apply(sleep.sleep(time_us))
/external/u-boot/drivers/tpm/
Dtpm_tis_lpc.c142 u32 time_us = MAX_DELAY_US; in tis_wait_reg() local
144 while (time_us > 0) { in tis_wait_reg()
149 time_us--; in tis_wait_reg()
/external/u-boot/include/
Dec_commands.h1227 uint32_t time_us; member
/external/libxcam/modules/isp/
Daiq_handler.cpp286 _time_to_coarse_line (const ia_aiq_exposure_sensor_descriptor *desc, uint32_t time_us) in _time_to_coarse_line() argument
288 float value = time_us * desc->pixel_clock_freq_mhz; in _time_to_coarse_line()