Home
last modified time | relevance | path

Searched refs:stop_time (Results 1 – 24 of 24) sorted by relevance

/OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/storage_benchmark/
H A Dbenchmark.c109 TEE_Time stop_time = { }; in test_write() local
131 TEE_GetSystemTime(&stop_time); in test_write()
133 *spent_time_in_ms = get_delta_time_in_ms(start_time, stop_time); in test_write()
137 stop_time.seconds, stop_time.millis, in test_write()
149 TEE_Time stop_time = { }; in test_read() local
174 TEE_GetSystemTime(&stop_time); in test_read()
176 *spent_time_in_ms = get_delta_time_in_ms(start_time, stop_time); in test_read()
180 stop_time.seconds, stop_time.millis, in test_read()
192 TEE_Time stop_time = { }; in test_rewrite() local
241 TEE_GetSystemTime(&stop_time); in test_rewrite()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/cpp/
H A Dyolo_image.cc232 struct timeval start_time, stop_time; in run_yolo() local
246 gettimeofday(&stop_time, NULL); in run_yolo()
247 LOGI("imresize use %f ms\n", (__get_us(stop_time) - __get_us(start_time)) / 1000); in run_yolo()
282 gettimeofday(&stop_time, NULL); in run_yolo()
283 LOGI("rknn_inputs_set use %f ms\n", (__get_us(stop_time) - __get_us(start_time)) / 1000); in run_yolo()
296 gettimeofday(&stop_time, NULL); in run_yolo()
297 LOGI("inference use %f ms\n", (__get_us(stop_time) - __get_us(start_time)) / 1000); in run_yolo()
321 gettimeofday(&stop_time, NULL); in run_yolo()
322 LOGI("copy output use %f ms\n", (__get_us(stop_time) - __get_us(start_time)) / 1000); in run_yolo()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/aquantia/atlantic/macsec/
H A Dmacsec_struct.h236 u32 stop_time; member
290 u32 stop_time; member
489 u32 stop_time; member
534 u32 stop_time; member
H A Dmacsec_api.c569 packed_record[0] = rec->stop_time & 0xFFFF; in set_ingress_sc_record()
570 packed_record[1] = (rec->stop_time >> 16) & 0xFFFF; in set_ingress_sc_record()
624 rec->stop_time = packed_record[0]; in get_ingress_sc_record()
625 rec->stop_time |= packed_record[1] << 16; in get_ingress_sc_record()
672 packed_record[0] = rec->stop_time & 0xFFFF; in set_ingress_sa_record()
673 packed_record[1] = (rec->stop_time >> 16) & 0xFFFF; in set_ingress_sa_record()
722 rec->stop_time = packed_record[0]; in get_ingress_sa_record()
723 rec->stop_time |= packed_record[1] << 16; in get_ingress_sa_record()
1539 packed_record[2] = rec->stop_time & 0xFFFF; in set_egress_sc_record()
1540 packed_record[3] = (rec->stop_time >> 16) & 0xFFFF; in set_egress_sc_record()
[all …]
/OK3568_Linux_fs/kernel/drivers/i2c/muxes/
H A Di2c-arb-gpio-challenge.c45 unsigned long stop_retry, stop_time; in i2c_arbitrator_select() local
48 stop_time = jiffies + usecs_to_jiffies(arb->wait_free_us) + 1; in i2c_arbitrator_select()
71 } while (time_before(jiffies, stop_time)); in i2c_arbitrator_select()
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_demo/src/
H A Dmain.cc130 struct timeval start_time, stop_time; in main() local
273 gettimeofday(&stop_time, NULL); in main()
274 printf("once run use %f ms\n", (__get_us(stop_time) - __get_us(start_time)) / 1000); in main()
321 gettimeofday(&stop_time, NULL); in main()
323 (__get_us(stop_time) - __get_us(start_time)) / 1000.0 / test_count); in main()
H A Dmain_video.cc241 struct timeval start_time, stop_time; in inference_model() local
295 gettimeofday(&stop_time, NULL); in inference_model()
296 printf("once run use %f ms\n", (__get_us(stop_time) - __get_us(start_time)) / 1000); in inference_model()
/OK3568_Linux_fs/kernel/drivers/i2c/busses/
H A Di2c-hix5hd2.c160 unsigned long stop_time; in hix5hd2_i2c_wait_bus_idle() local
164 stop_time = jiffies + msecs_to_jiffies(100); in hix5hd2_i2c_wait_bus_idle()
171 } while (time_before(jiffies, stop_time)); in hix5hd2_i2c_wait_bus_idle()
H A Di2c-exynos5.c527 unsigned long stop_time; in exynos5_i2c_wait_bus_idle() local
531 stop_time = jiffies + msecs_to_jiffies(100) + 1; in exynos5_i2c_wait_bus_idle()
538 } while (time_before(jiffies, stop_time)); in exynos5_i2c_wait_bus_idle()
/OK3568_Linux_fs/kernel/drivers/net/dsa/sja1105/
H A Dsja1105_tas.c390 s64 stop_time; in sja1105_tas_check_conflicts() local
418 stop_time = max_cycle_time + max(rbt1, rbt2); in sja1105_tas_check_conflicts()
437 t1 <= stop_time; in sja1105_tas_check_conflicts()
444 t2 <= stop_time; in sja1105_tas_check_conflicts()
/OK3568_Linux_fs/u-boot/common/
H A Dlrz.c163 time_t stop_time; variable
644 stop_time=mktime(tm); in zmodem_rx()
645 if (stop_time<t) in zmodem_rx()
646 stop_time+=86400L; /* one day more */ in zmodem_rx()
647 if (stop_time - t <10) in zmodem_rx()
651 stop_time = tmp + time(0); in zmodem_rx()
2396 if ((Verbose>1 || min_bps || stop_time) in rzfile()
2431 if (stop_time && now>=stop_time) { in rzfile()
/OK3568_Linux_fs/kernel/sound/pci/pcxhr/
H A Dpcxhr_core.c900 ktime_t start_time, stop_time, diff_time; in pcxhr_set_pipe_state() local
951 stop_time = ktime_get(); in pcxhr_set_pipe_state()
952 diff_time = ktime_sub(stop_time, start_time); in pcxhr_set_pipe_state()
H A Dpcxhr.c701 ktime_t start_time, stop_time, diff_time; in pcxhr_start_linked_stream() local
814 stop_time = ktime_get(); in pcxhr_start_linked_stream()
815 diff_time = ktime_sub(stop_time, start_time); in pcxhr_start_linked_stream()
/OK3568_Linux_fs/kernel/drivers/net/wireless/intel/iwlegacy/
H A Dcommands.h1392 } stop_time; member
1488 } stop_time; member
2226 __le32 stop_time; /* lower 32-bits of TSF */ member
H A D3945-mac.c399 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; in il3945_build_tx_cmd_basic()
2587 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; in il3945_request_scan()
H A D4965-mac.c931 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; in il4965_request_scan()
1491 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; in il4965_tx_cmd_build_basic()
3812 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; in il4965_hw_get_beacon_cmd()
H A D3945.c2424 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; in il3945_hw_get_beacon_cmd()
/OK3568_Linux_fs/kernel/drivers/video/fbdev/aty/
H A Dradeon_base.c582 ktime_t start_time, stop_time; in radeon_probe_pll_params() local
609 stop_time = ktime_get(); in radeon_probe_pll_params()
613 total_usecs = ktime_us_delta(stop_time, start_time); in radeon_probe_pll_params()
/OK3568_Linux_fs/kernel/sound/pci/
H A Des1968.c1695 ktime_t start_time, stop_time; in es1968_measure_clock() local
1752 stop_time = ktime_get(); in es1968_measure_clock()
1763 diff = ktime_sub(stop_time, start_time); in es1968_measure_clock()
H A Dintel8x0.c2671 ktime_t start_time, stop_time; in intel8x0_measure_ac97_clock() local
2729 stop_time = ktime_get(); in intel8x0_measure_ac97_clock()
2757 t = ktime_us_delta(stop_time, start_time); in intel8x0_measure_ac97_clock()
/OK3568_Linux_fs/kernel/drivers/net/wireless/intel/iwlwifi/dvm/
H A Dcommands.h1282 } stop_time; member
2084 __le32 stop_time; /* lower 32-bits of TSF */ member
H A Dscan.c735 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; in iwlagn_request_scan()
H A Dtx.c56 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; in iwlagn_tx_cmd_build_basic()
H A Dmain.c223 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; in iwlagn_send_beacon_cmd()