Home
last modified time | relevance | path

Searched refs:state (Results 1151 - 1175 of 13656) sorted by relevance

1...<<41424344454647484950>>...547

/kernel/linux/linux-5.10/lib/crypto/
H A Dpoly1305-donna32.c31 void poly1305_core_blocks(struct poly1305_state *state, in poly1305_core_blocks() argument
58 h0 = state->h[0]; in poly1305_core_blocks()
59 h1 = state->h[1]; in poly1305_core_blocks()
60 h2 = state->h[2]; in poly1305_core_blocks()
61 h3 = state->h[3]; in poly1305_core_blocks()
62 h4 = state->h[4]; in poly1305_core_blocks()
112 state->h[0] = h0; in poly1305_core_blocks()
113 state->h[1] = h1; in poly1305_core_blocks()
114 state->h[2] = h2; in poly1305_core_blocks()
115 state in poly1305_core_blocks()
120 poly1305_core_emit(const struct poly1305_state *state, const u32 nonce[4], void *dst) poly1305_core_emit() argument
[all...]
/kernel/linux/linux-5.10/drivers/pwm/
H A Dpwm-sifive.c109 struct pwm_state *state) in pwm_sifive_get_state()
116 state->enabled = duty > 0; in pwm_sifive_get_state()
120 state->enabled = false; in pwm_sifive_get_state()
122 state->period = ddata->real_period; in pwm_sifive_get_state()
123 state->duty_cycle = in pwm_sifive_get_state()
125 state->polarity = PWM_POLARITY_INVERSED; in pwm_sifive_get_state()
148 const struct pwm_state *state) in pwm_sifive_apply()
158 if (state->polarity != PWM_POLARITY_INVERSED) in pwm_sifive_apply()
167 cur_state = pwm->state; in pwm_sifive_apply()
170 duty_cycle = state in pwm_sifive_apply()
108 pwm_sifive_get_state(struct pwm_chip *chip, struct pwm_device *pwm, struct pwm_state *state) pwm_sifive_get_state() argument
147 pwm_sifive_apply(struct pwm_chip *chip, struct pwm_device *pwm, const struct pwm_state *state) pwm_sifive_apply() argument
[all...]
H A Dpwm-stm32-lp.c35 const struct pwm_state *state) in stm32_pwm_lp_apply()
47 if (!state->enabled) { in stm32_pwm_lp_apply()
60 div = (unsigned long long)clk_get_rate(priv->clk) * state->period; in stm32_pwm_lp_apply()
64 dev_dbg(priv->chip.dev, "Can't reach %llu ns\n", state->period); in stm32_pwm_lp_apply()
80 dty = prd * state->duty_cycle; in stm32_pwm_lp_apply()
81 do_div(dty, state->period); in stm32_pwm_lp_apply()
95 (FIELD_GET(STM32_LPTIM_WAVPOL, cfgr) != state->polarity)) { in stm32_pwm_lp_apply()
97 val |= FIELD_PREP(STM32_LPTIM_WAVPOL, state->polarity); in stm32_pwm_lp_apply()
162 struct pwm_state *state) in stm32_pwm_lp_get_state()
170 state in stm32_pwm_lp_get_state()
34 stm32_pwm_lp_apply(struct pwm_chip *chip, struct pwm_device *pwm, const struct pwm_state *state) stm32_pwm_lp_apply() argument
160 stm32_pwm_lp_get_state(struct pwm_chip *chip, struct pwm_device *pwm, struct pwm_state *state) stm32_pwm_lp_get_state() argument
234 struct pwm_state state; stm32_pwm_lp_suspend() local
[all...]
/kernel/linux/linux-5.10/drivers/media/rc/
H A Dir-rc6-decoder.c78 * This function returns -EINVAL if the pulse violates the state machine
89 data->state = STATE_INACTIVE; in ir_rc6_decode()
97 dev_dbg(&dev->dev, "RC6 decode started at state %i (%uus %s)\n", in ir_rc6_decode()
98 data->state, ev.duration, TO_STR(ev.pulse)); in ir_rc6_decode()
103 switch (data->state) { in ir_rc6_decode()
115 data->state = STATE_PREFIX_SPACE; in ir_rc6_decode()
126 data->state = STATE_HEADER_BIT_START; in ir_rc6_decode()
138 data->state = STATE_HEADER_BIT_END; in ir_rc6_decode()
143 data->state = STATE_TOGGLE_START; in ir_rc6_decode()
145 data->state in ir_rc6_decode()
[all...]
/kernel/linux/linux-6.6/drivers/media/rc/
H A Dir-rc6-decoder.c78 * This function returns -EINVAL if the pulse violates the state machine
89 data->state = STATE_INACTIVE; in ir_rc6_decode()
97 dev_dbg(&dev->dev, "RC6 decode started at state %i (%uus %s)\n", in ir_rc6_decode()
98 data->state, ev.duration, TO_STR(ev.pulse)); in ir_rc6_decode()
103 switch (data->state) { in ir_rc6_decode()
115 data->state = STATE_PREFIX_SPACE; in ir_rc6_decode()
126 data->state = STATE_HEADER_BIT_START; in ir_rc6_decode()
138 data->state = STATE_HEADER_BIT_END; in ir_rc6_decode()
143 data->state = STATE_TOGGLE_START; in ir_rc6_decode()
145 data->state in ir_rc6_decode()
[all...]
/kernel/linux/linux-6.6/drivers/target/iscsi/
H A Discsi_target_parameters.h24 u32 state; member
264 * struct iscsi_param->state
275 #define IS_PSTATE_ACCEPTOR(p) ((p)->state & PSTATE_ACCEPTOR)
276 #define IS_PSTATE_NEGOTIATE(p) ((p)->state & PSTATE_NEGOTIATE)
277 #define IS_PSTATE_PROPOSER(p) ((p)->state & PSTATE_PROPOSER)
278 #define IS_PSTATE_IRRELEVANT(p) ((p)->state & PSTATE_IRRELEVANT)
279 #define IS_PSTATE_REJECT(p) ((p)->state & PSTATE_REJECT)
280 #define IS_PSTATE_REPLY_OPTIONAL(p) ((p)->state & PSTATE_REPLY_OPTIONAL)
281 #define IS_PSTATE_RESPONSE_GOT(p) ((p)->state & PSTATE_RESPONSE_GOT)
282 #define IS_PSTATE_RESPONSE_SENT(p) ((p)->state
[all...]
/kernel/linux/linux-6.6/drivers/pwm/
H A Dpwm-dwc.c86 const struct pwm_state *state) in __dwc_pwm_configure_timer()
98 tmp = DIV_ROUND_CLOSEST_ULL(state->duty_cycle, DWC_CLK_PERIOD_NS); in __dwc_pwm_configure_timer()
103 tmp = DIV_ROUND_CLOSEST_ULL(state->period - state->duty_cycle, in __dwc_pwm_configure_timer()
139 __dwc_pwm_set_enable(dwc, pwm->hwpwm, state->enabled); in __dwc_pwm_configure_timer()
145 const struct pwm_state *state) in dwc_pwm_apply()
149 if (state->polarity != PWM_POLARITY_INVERSED) in dwc_pwm_apply()
152 if (state->enabled) { in dwc_pwm_apply()
153 if (!pwm->state.enabled) in dwc_pwm_apply()
155 return __dwc_pwm_configure_timer(dwc, pwm, state); in dwc_pwm_apply()
84 __dwc_pwm_configure_timer(struct dwc_pwm *dwc, struct pwm_device *pwm, const struct pwm_state *state) __dwc_pwm_configure_timer() argument
144 dwc_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, const struct pwm_state *state) dwc_pwm_apply() argument
166 dwc_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm, struct pwm_state *state) dwc_pwm_get_state() argument
[all...]
/kernel/linux/linux-6.6/drivers/cpuidle/
H A Dcpuidle-powernv.c3 * cpuidle-powernv - idle state cpuidle driver.
199 /* Is the state not enabled? */ in powernv_cpuidle_driver_init()
270 * Since snooze is used as first idle state, max idle states allowed is in powernv_add_idle_states()
288 struct pnv_idle_states_t *state = &pnv_idle_states[i]; in powernv_add_idle_states() local
291 * Skip the platform idle state whose flag isn't in in powernv_add_idle_states()
294 if ((state->flags & supported_flags) != state->flags) in powernv_add_idle_states()
297 * If an idle state has exit latency beyond in powernv_add_idle_states()
301 if (state->latency_ns > POWERNV_THRESHOLD_LATENCY_NS) in powernv_add_idle_states()
307 exit_latency = DIV_ROUND_UP(state in powernv_add_idle_states()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/arm/display/komeda/
H A Dkomeda_plane.c65 * @state: the plane state object
72 struct drm_atomic_state *state) in komeda_plane_atomic_check()
74 struct drm_plane_state *new_plane_state = drm_atomic_get_new_plane_state(state, in komeda_plane_atomic_check()
87 crtc_st = drm_atomic_get_crtc_state(state, in komeda_plane_atomic_check()
119 struct drm_atomic_state *state) in komeda_plane_atomic_update()
137 struct komeda_plane_state *state; in komeda_plane_reset() local
139 if (plane->state) in komeda_plane_reset()
140 __drm_atomic_helper_plane_destroy_state(plane->state); in komeda_plane_reset()
142 kfree(plane->state); in komeda_plane_reset()
71 komeda_plane_atomic_check(struct drm_plane *plane, struct drm_atomic_state *state) komeda_plane_atomic_check() argument
118 komeda_plane_atomic_update(struct drm_plane *plane, struct drm_atomic_state *state) komeda_plane_atomic_update() argument
168 komeda_plane_atomic_destroy_state(struct drm_plane *plane, struct drm_plane_state *state) komeda_plane_atomic_destroy_state() argument
[all...]
/kernel/linux/linux-6.6/drivers/hid/
H A Dhid-wiimote.h162 struct wiimote_state state; member
297 /* requires the state.lock spinlock to be held */
301 return wdata->state.cmd == cmd && wdata->state.opt == opt; in wiimote_cmd_pending()
304 /* requires the state.lock spinlock to be held */
307 wdata->state.cmd = WIIPROTO_REQ_NULL; in wiimote_cmd_complete()
308 complete(&wdata->state.ready); in wiimote_cmd_complete()
311 /* requires the state.lock spinlock to be held */
315 * reset the state.cmd field to an invalid value so no further event in wiimote_cmd_abort()
317 wdata->state in wiimote_cmd_abort()
[all...]
/kernel/linux/linux-6.6/tools/power/cpupower/utils/idle_monitor/
H A Dcpupower-monitor.c98 int state, need_len; in print_header() local
126 for (state = 0; state < monitors[mon]->hw_states_num; state++) { in print_header()
127 if (state != 0) in print_header()
129 s = monitors[mon]->hw_states[state]; in print_header()
143 int state, ret; in print_results() local
166 for (state = 0; state < monitors[mon]->hw_states_num; state in print_results()
260 int state; list_monitors() local
[all...]
H A Damd_fam14h_idle.c53 .desc = N_("Package in sleep state (PC1 or deeper)"),
96 static int amd_fam14h_get_pci_info(struct cstate *state, in amd_fam14h_get_pci_info() argument
101 switch (state->id) { in amd_fam14h_get_pci_info()
124 static int amd_fam14h_init(cstate_t *state, unsigned int cpu) in amd_fam14h_init() argument
129 ret = amd_fam14h_get_pci_info(state, &pci_offset, &enable_bit, cpu); in amd_fam14h_init()
134 if (state->id == NBP1) { in amd_fam14h_init()
143 dprint("Init %s: read at offset: 0x%x val: %u\n", state->name, in amd_fam14h_init()
149 state->name, PCI_MONITOR_ENABLE_REG, enable_bit, in amd_fam14h_init()
154 previous_count[state->id][cpu] = 0; in amd_fam14h_init()
159 static int amd_fam14h_disable(cstate_t *state, unsigne argument
[all...]
/kernel/linux/linux-6.6/lib/crypto/
H A Dpoly1305-donna32.c31 void poly1305_core_blocks(struct poly1305_state *state, in poly1305_core_blocks() argument
58 h0 = state->h[0]; in poly1305_core_blocks()
59 h1 = state->h[1]; in poly1305_core_blocks()
60 h2 = state->h[2]; in poly1305_core_blocks()
61 h3 = state->h[3]; in poly1305_core_blocks()
62 h4 = state->h[4]; in poly1305_core_blocks()
112 state->h[0] = h0; in poly1305_core_blocks()
113 state->h[1] = h1; in poly1305_core_blocks()
114 state->h[2] = h2; in poly1305_core_blocks()
115 state in poly1305_core_blocks()
120 poly1305_core_emit(const struct poly1305_state *state, const u32 nonce[4], void *dst) poly1305_core_emit() argument
[all...]
/kernel/linux/linux-6.6/net/netfilter/
H A Dnf_conntrack_proto_icmpv6.c90 const struct nf_hook_state *state) in nf_conntrack_icmpv6_packet()
98 if (state->pf != NFPROTO_IPV6) in nf_conntrack_icmpv6_packet()
126 const struct nf_hook_state *state, in icmpv6_error_log()
129 nf_l4proto_log_invalid(skb, state, IPPROTO_ICMPV6, "%s", msg); in icmpv6_error_log()
135 const struct nf_hook_state *state) in nf_conntrack_icmpv6_redirect()
148 icmpv6_error_log(skb, state, "short redirect"); in nf_conntrack_icmpv6_redirect()
156 icmpv6_error_log(skb, state, "invalid saddr or hoplimit for redirect"); in nf_conntrack_icmpv6_redirect()
165 icmpv6_error_log(skb, state, "redirect without options"); in nf_conntrack_icmpv6_redirect()
178 return nf_conntrack_inet_error(tmpl, skb, dataoff, state, in nf_conntrack_icmpv6_redirect()
185 const struct nf_hook_state *state) in nf_conntrack_icmpv6_error()
87 nf_conntrack_icmpv6_packet(struct nf_conn *ct, struct sk_buff *skb, enum ip_conntrack_info ctinfo, const struct nf_hook_state *state) nf_conntrack_icmpv6_packet() argument
125 icmpv6_error_log(const struct sk_buff *skb, const struct nf_hook_state *state, const char *msg) icmpv6_error_log() argument
133 nf_conntrack_icmpv6_redirect(struct nf_conn *tmpl, struct sk_buff *skb, unsigned int dataoff, const struct nf_hook_state *state) nf_conntrack_icmpv6_redirect() argument
182 nf_conntrack_icmpv6_error(struct nf_conn *tmpl, struct sk_buff *skb, unsigned int dataoff, const struct nf_hook_state *state) nf_conntrack_icmpv6_error() argument
[all...]
/test/xts/acts/communication/wifi_standard/entry/src/ohosTest/ets/test/
H A DWifiStationFunctions.test.js252 let state = wifi.getLinkedInfo().ConnState;
253 if (state == wifi.ConnState.SCANNING) {
254 expect(true).assertEqual(state == 0);
256 if (state == wifi.ConnState.CONNECTING) {
257 expect(true).assertEqual(state == 1);
259 if (state == wifi.ConnState.AUTHENTICATING) {
260 expect(true).assertEqual(state == 2);
262 if (state == wifi.ConnState.OBTAINING_IPADDR) {
263 expect(true).assertEqual(state == 3);
265 if (state
[all...]
/device/soc/hisilicon/hi3751v350/sdk_linux/source/msp/drv/hiirq/kernel/
H A Dhiirq.c342 static void read_int_status_for_aio(hiirq_aio_reg_map *map, hi_aio_int_state *state) in read_int_status_for_aio() argument
346 state->aio_int_status_state = *map->aio_int_status_reg; in read_int_status_for_aio()
347 state->aio_int_raw_state = *map->aio_int_raw_reg; in read_int_status_for_aio()
350 state->tx_raw_state[i] = *map->tx_raw_reg[i]; in read_int_status_for_aio()
351 state->tx_stat_state[i] = *map->tx_stat_reg[i]; in read_int_status_for_aio()
354 state->rx_raw_state[i] = *map->rx_raw_reg[i]; in read_int_status_for_aio()
355 state->rx_stat_state[i] = *map->rx_stat_reg[i]; in read_int_status_for_aio()
358 state->spdiftx_raw_state[i] = *map->spdiftx_raw_reg[i]; in read_int_status_for_aio()
359 state->spdiftx_stat_state[i] = *map->spdiftx_stat_reg[i]; in read_int_status_for_aio()
364 static void read_int_status_for_vicap(hiirq_vicap_reg_map *map, hi_vicap_int_state *state) in read_int_status_for_vicap() argument
381 read_int_status_for_normal(hiirq_normal_reg_map *map, hi_normal_int_state *state) read_int_status_for_normal() argument
407 clear_int_for_aio(hiirq_aio_reg_map *map, hi_aio_int_state *state) clear_int_for_aio() argument
426 clear_int_for_vicap(hiirq_vicap_reg_map *map, hi_vicap_int_state *state) clear_int_for_vicap() argument
452 clear_int_for_vdh(hiirq_normal_reg_map *map, hi_normal_int_state *state) clear_int_for_vdh() argument
473 clear_int_for_nnie(hiirq_normal_reg_map *map, hi_normal_int_state *state) clear_int_for_nnie() argument
482 clear_int_for_normal(hiirq_normal_reg_map *map, hi_normal_int_state *state) clear_int_for_normal() argument
509 save_int_status_for_aio(hi_aio_int_state *save, hi_aio_int_state *state) save_int_status_for_aio() argument
530 save_int_status_for_vicap(hi_vicap_int_state *save, hi_vicap_int_state *state) save_int_status_for_vicap() argument
547 save_int_status_for_normal(hi_normal_int_state *save, hi_normal_int_state *state) save_int_status_for_normal() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/rockchip/
H A Drockchip_drm_vop.c652 s = to_rockchip_crtc_state(crtc->state); in vop_enable()
710 if (crtc->state->self_refresh_active) in vop_crtc_atomic_disable()
713 if (crtc->state->self_refresh_active) in vop_crtc_atomic_disable()
754 if (crtc->state->event && !crtc->state->active) { in vop_crtc_atomic_disable()
756 drm_crtc_send_vblank_event(crtc, crtc->state->event); in vop_crtc_atomic_disable()
759 crtc->state->event = NULL; in vop_crtc_atomic_disable()
789 struct drm_plane_state *state) in vop_plane_atomic_check()
791 struct drm_crtc *crtc = state->crtc; in vop_plane_atomic_check()
793 struct drm_framebuffer *fb = state in vop_plane_atomic_check()
788 vop_plane_atomic_check(struct drm_plane *plane, struct drm_plane_state *state) vop_plane_atomic_check() argument
882 struct drm_plane_state *state = plane->state; vop_plane_atomic_update() local
1032 vop_plane_atomic_async_check(struct drm_plane *plane, struct drm_plane_state *state) vop_plane_atomic_async_check() argument
1221 struct drm_crtc_state *state = crtc->state; vop_crtc_gamma_set() local
1553 vop_crtc_destroy_state(struct drm_crtc *crtc, struct drm_crtc_state *state) vop_crtc_destroy_state() argument
[all...]
/kernel/linux/linux-5.10/arch/x86/include/asm/
H A Dresctrl.h56 struct resctrl_pqr_state *state = this_cpu_ptr(&pqr_state); in __resctrl_sched_in() local
57 u32 closid = state->default_closid; in __resctrl_sched_in()
58 u32 rmid = state->default_rmid; in __resctrl_sched_in()
77 if (closid != state->cur_closid || rmid != state->cur_rmid) { in __resctrl_sched_in()
78 state->cur_closid = closid; in __resctrl_sched_in()
79 state->cur_rmid = rmid; in __resctrl_sched_in()
/kernel/linux/linux-6.6/arch/arm64/kernel/
H A Dcpuidle.c41 u32 state; in psci_acpi_cpu_init_idle() local
48 state = lpi->address; in psci_acpi_cpu_init_idle()
49 if (!psci_power_state_is_valid(state)) { in psci_acpi_cpu_init_idle()
50 pr_warn("Invalid PSCI power state %#x\n", state); in psci_acpi_cpu_init_idle()
65 u32 state = lpi->address; in acpi_processor_ffh_lpi_enter() local
69 lpi->index, state); in acpi_processor_ffh_lpi_enter()
72 lpi->index, state); in acpi_processor_ffh_lpi_enter()
/kernel/linux/linux-5.10/include/linux/regulator/
H A Dcoupler.h50 suspend_state_t state);
58 suspend_state_t state);
64 suspend_state_t state);
66 suspend_state_t state, bool skip_coupled);
78 suspend_state_t state) in regulator_check_consumers()
93 suspend_state_t state) in regulator_set_voltage_rdev()
98 suspend_state_t state, in regulator_do_balance_voltage()
76 regulator_check_consumers(struct regulator_dev *rdev, int *min_uV, int *max_uV, suspend_state_t state) regulator_check_consumers() argument
91 regulator_set_voltage_rdev(struct regulator_dev *rdev, int min_uV, int max_uV, suspend_state_t state) regulator_set_voltage_rdev() argument
97 regulator_do_balance_voltage(struct regulator_dev *rdev, suspend_state_t state, bool skip_coupled) regulator_do_balance_voltage() argument
/kernel/linux/linux-5.10/drivers/gpu/drm/tegra/
H A Dplane.h58 to_tegra_plane_state(struct drm_plane_state *state) in to_tegra_plane_state() argument
60 if (state) in to_tegra_plane_state()
61 return container_of(state, struct tegra_plane_state, base); in to_tegra_plane_state()
69 struct drm_plane_state *state);
71 struct drm_plane_state *state);
74 struct drm_plane_state *state);
79 struct tegra_plane_state *state);
/kernel/linux/linux-6.6/include/linux/
H A Dprandom.h20 u32 prandom_u32_state(struct rnd_state *state);
21 void prandom_bytes_state(struct rnd_state *state, void *buf, size_t nbytes);
37 * @state: pointer to state structure to receive the seed.
40 static inline void prandom_seed_state(struct rnd_state *state, u64 seed) in prandom_seed_state() argument
44 state->s1 = __seed(i, 2U); in prandom_seed_state()
45 state->s2 = __seed(i, 8U); in prandom_seed_state()
46 state->s3 = __seed(i, 16U); in prandom_seed_state()
47 state->s4 = __seed(i, 128U); in prandom_seed_state()
/kernel/linux/linux-6.6/include/linux/regulator/
H A Dcoupler.h50 suspend_state_t state);
57 suspend_state_t state);
63 suspend_state_t state);
65 suspend_state_t state, bool skip_coupled);
73 suspend_state_t state) in regulator_check_consumers()
88 suspend_state_t state) in regulator_set_voltage_rdev()
93 suspend_state_t state, in regulator_do_balance_voltage()
71 regulator_check_consumers(struct regulator_dev *rdev, int *min_uV, int *max_uV, suspend_state_t state) regulator_check_consumers() argument
86 regulator_set_voltage_rdev(struct regulator_dev *rdev, int min_uV, int max_uV, suspend_state_t state) regulator_set_voltage_rdev() argument
92 regulator_do_balance_voltage(struct regulator_dev *rdev, suspend_state_t state, bool skip_coupled) regulator_do_balance_voltage() argument
/kernel/linux/linux-6.6/arch/x86/include/asm/
H A Dresctrl.h54 struct resctrl_pqr_state *state = this_cpu_ptr(&pqr_state); in __resctrl_sched_in() local
55 u32 closid = state->default_closid; in __resctrl_sched_in()
56 u32 rmid = state->default_rmid; in __resctrl_sched_in()
75 if (closid != state->cur_closid || rmid != state->cur_rmid) { in __resctrl_sched_in()
76 state->cur_closid = closid; in __resctrl_sched_in()
77 state->cur_rmid = rmid; in __resctrl_sched_in()
/kernel/linux/linux-6.6/arch/mips/cavium-octeon/crypto/
H A Docteon-sha1.c34 u64 *hash = (u64 *)sctx->state; in octeon_sha1_store_hash()
38 } hash_tail = { { sctx->state[4], } }; in octeon_sha1_store_hash()
48 u64 *hash = (u64 *)sctx->state; in octeon_sha1_read_hash()
57 sctx->state[4] = hash_tail.word[0]; in octeon_sha1_read_hash()
110 struct octeon_cop2_state state; in octeon_sha1_update() local
121 flags = octeon_crypto_enable(&state); in octeon_sha1_update()
127 octeon_crypto_disable(&state, flags); in octeon_sha1_update()
136 struct octeon_cop2_state state; in octeon_sha1_final() local
151 flags = octeon_crypto_enable(&state); in octeon_sha1_final()
160 octeon_crypto_disable(&state, flag in octeon_sha1_final()
[all...]

Completed in 15 milliseconds

1...<<41424344454647484950>>...547