Home
last modified time | relevance | path

Searched refs:times (Results 1 – 25 of 27) sorted by relevance

12

/drivers/gpu/drm/i915/gt/
Dselftest_engine_heartbeat.c209 u32 times[5]; in __live_heartbeat_fast() local
223 for (i = 0; i < ARRAY_SIZE(times); i++) { in __live_heartbeat_fast()
252 times[i] = ktime_us_delta(t1, t0); in __live_heartbeat_fast()
255 sort(times, ARRAY_SIZE(times), sizeof(times[0]), cmp_u32, NULL); in __live_heartbeat_fast()
259 times[ARRAY_SIZE(times) / 2], in __live_heartbeat_fast()
260 times[0], in __live_heartbeat_fast()
261 times[ARRAY_SIZE(times) - 1]); in __live_heartbeat_fast()
270 if (times[ARRAY_SIZE(times) / 2] > error_threshold) { in __live_heartbeat_fast()
273 times[ARRAY_SIZE(times) / 2], in __live_heartbeat_fast()
Dselftest_execlists.c2309 atomic_set(&engine->reset_timeout.times, -1); in force_reset_timeout()
3732 ktime_t times[2] = {}; in nop_virtual_engine() local
3758 times[1] = ktime_get_raw(); in nop_virtual_engine()
3813 times[1] = ktime_sub(ktime_get_raw(), times[1]); in nop_virtual_engine()
3815 times[0] = times[1]; in nop_virtual_engine()
3831 nctx, ve[0]->engine->name, ktime_to_ns(times[0]), in nop_virtual_engine()
3832 prime, div64_u64(ktime_to_ns(times[1]), prime)); in nop_virtual_engine()
Dselftest_hangcheck.c549 atomic_set(&engine->reset_timeout.times, -1); in force_reset_timeout()
/drivers/staging/media/av7110/
Dvideo-slowmotion.rst47 - The number of times to repeat each frame.
53 of times. This call can only be used if VIDEO_SOURCE_MEMORY is
/drivers/crypto/qat/qat_common/
Dqat_hal.c126 int times = MAX_RETRY_TIMES; in qat_hal_wait_cycles() local
131 while ((int)cycles > elapsed_cycles && times--) { in qat_hal_wait_cycles()
146 if (times < 0) { in qat_hal_wait_cycles()
383 int times = MAX_RETRY_TIMES; in qat_hal_check_ae_alive() local
392 } while (times-- && (cur_cnt == base_cnt)); in qat_hal_check_ae_alive()
394 if (times < 0) { in qat_hal_check_ae_alive()
448 int times = 30; in qat_hal_init_esram() local
464 } while (!(csr_val & ESRAM_AUTO_TINIT_DONE) && times--); in qat_hal_init_esram()
465 if (times < 0) { in qat_hal_init_esram()
480 unsigned int times = 100; in qat_hal_clr_reset() local
[all …]
/drivers/gpu/drm/i915/gem/selftests/
Di915_gem_context.c79 ktime_t times[2] = {}; in live_nop_switch() local
81 times[0] = ktime_get_raw(); in live_nop_switch()
106 times[1] = ktime_get_raw(); in live_nop_switch()
109 nctx, engine->name, ktime_to_ns(times[1] - times[0])); in live_nop_switch()
117 times[1] = ktime_get_raw(); in live_nop_switch()
161 times[1] = ktime_sub(ktime_get_raw(), times[1]); in live_nop_switch()
163 times[0] = times[1]; in live_nop_switch()
175 ktime_to_ns(times[0]), in live_nop_switch()
176 prime - 1, div64_u64(ktime_to_ns(times[1]), prime - 1)); in live_nop_switch()
/drivers/crypto/nx/
Dnx-common-pseries.c150 static void ibm_nx842_incr_hist(atomic64_t *times, unsigned int time) in ibm_nx842_incr_hist() argument
157 atomic64_inc(&times[bucket]); in ibm_nx842_incr_hist()
915 atomic64_t *times; in nx842_timehist_show() local
928 times = local_devdata->counters->comp_times; in nx842_timehist_show()
930 times = local_devdata->counters->decomp_times; in nx842_timehist_show()
939 atomic64_read(&times[i])); in nx842_timehist_show()
947 atomic64_read(&times[(NX842_HIST_SLOTS - 1)])); in nx842_timehist_show()
/drivers/gpu/drm/i915/selftests/
Di915_request.c572 ktime_t times[2] = {}; in live_nop_request() local
582 times[1] = ktime_get_raw(); in live_nop_request()
610 times[1] = ktime_sub(ktime_get_raw(), times[1]); in live_nop_request()
612 times[0] = times[1]; in live_nop_request()
625 ktime_to_ns(times[0]), in live_nop_request()
626 prime, div64_u64(ktime_to_ns(times[1]), prime)); in live_nop_request()
926 ktime_t times[2] = {}; in live_empty_request() local
944 times[1] = ktime_get_raw(); in live_empty_request()
957 times[1] = ktime_sub(ktime_get_raw(), times[1]); in live_empty_request()
959 times[0] = times[1]; in live_empty_request()
[all …]
Di915_gem_gtt.c947 atomic_set(&vm->fault_attr.times, -1); in shrink_hole()
1008 atomic_set(&vm->fault_attr.times, -1); in shrink_boom()
/drivers/net/ethernet/mellanox/mlxfw/
Dmlxfw_fsm.c90 int times; in mlxfw_fsm_state_wait() local
93 times = MLXFW_FSM_STATE_WAIT_ROUNDS; in mlxfw_fsm_state_wait()
106 if (--times == 0) { in mlxfw_fsm_state_wait()
/drivers/gpu/drm/i915/display/
Dintel_crtc.c500 if (h >= ARRAY_SIZE(crtc->debug.vbl.times)) in dbg_vblank_evade()
501 h = ARRAY_SIZE(crtc->debug.vbl.times) - 1; in dbg_vblank_evade()
502 crtc->debug.vbl.times[h]++; in dbg_vblank_evade()
Dintel_display_debugfs.c913 for (row = 0; row < ARRAY_SIZE(crtc->debug.vbl.times); row++) in crtc_updates_info()
914 count += crtc->debug.vbl.times[row]; in crtc_updates_info()
919 for (row = 0; row < ARRAY_SIZE(crtc->debug.vbl.times); row++) { in crtc_updates_info()
938 if (crtc->debug.vbl.times[row]) { in crtc_updates_info()
939 x = ilog2(crtc->debug.vbl.times[row]); in crtc_updates_info()
Dintel_display_types.h1315 unsigned int times[17]; /* [1us, 16ms] */ member
/drivers/staging/iio/Documentation/
Dsysfs-bus-iio-adc-ad7280a16 individual times for each cell balance output. The AD7280A
/drivers/char/
DKconfig153 time the orange button is pressed a number of times, the number of
154 times the button was pressed will be written to that device.
157 perform actions based on how many times the button is pressed in a
176 shutdown and reboot by pressing the orange button a number of times.
/drivers/net/wireless/realtek/rtw88/
Dcoex.c309 u8 times; in rtw_coex_tdma_timer_base() local
325 times = 100 / tbtt_interval; in rtw_coex_tdma_timer_base()
327 times++; in rtw_coex_tdma_timer_base()
329 para[1] = FIELD_PREP(PARA1_H2C69_TBTT_TIMES, times); in rtw_coex_tdma_timer_base()
331 times = tbtt_interval / 100; in rtw_coex_tdma_timer_base()
333 times--; in rtw_coex_tdma_timer_base()
335 para[1] = FIELD_PREP(PARA1_H2C69_TBTT_TIMES, times) | in rtw_coex_tdma_timer_base()
/drivers/gpu/drm/i915/
DKconfig.profile9 rounded to whole seconds times three, in order to avoid allowing
/drivers/platform/chrome/
DKconfig73 a checksum. Failing accesses will be retried three times to
/drivers/tty/serial/8250/
DKconfig356 Uses 8 times oversampling (compared to 16 times for 16650)
/drivers/mtd/chips/
DKconfig167 erased. Each Protection Register can be accessed multiple times to
/drivers/staging/pi433/Documentation/
Dpi433.txt118 This gives the option, to send a telegram multiple times. Default: 1
/drivers/staging/unisys/Documentation/
Doverview.txt113 called automatically by the visorbus driver at appropriate times:
/drivers/atm/
DKconfig358 Specifies the number of times the driver attempts to transmit
/drivers/md/
DKconfig617 their fs is writing a consistent file system at all times by allowing
/drivers/crypto/
DKconfig728 Considering the 256-bit ciphers, software is 2-3 times faster than

12