Home
last modified time | relevance | path

Searched refs:ct (Results 1 – 3 of 3) sorted by relevance

/kernel/irq/
Dgeneric-chip.c38 struct irq_chip_type *ct = irq_data_get_chip_type(d); in irq_gc_mask_disable_reg() local
42 irq_reg_writel(gc, mask, ct->regs.disable); in irq_gc_mask_disable_reg()
43 *ct->mask_cache &= ~mask; in irq_gc_mask_disable_reg()
57 struct irq_chip_type *ct = irq_data_get_chip_type(d); in irq_gc_mask_set_bit() local
61 *ct->mask_cache |= mask; in irq_gc_mask_set_bit()
62 irq_reg_writel(gc, *ct->mask_cache, ct->regs.mask); in irq_gc_mask_set_bit()
77 struct irq_chip_type *ct = irq_data_get_chip_type(d); in irq_gc_mask_clr_bit() local
81 *ct->mask_cache &= ~mask; in irq_gc_mask_clr_bit()
82 irq_reg_writel(gc, *ct->mask_cache, ct->regs.mask); in irq_gc_mask_clr_bit()
97 struct irq_chip_type *ct = irq_data_get_chip_type(d); in irq_gc_unmask_enable_reg() local
[all …]
/kernel/sched/
Dtune.c171 struct schedtune *ct; in schedtune_accept_deltas() local
189 ct = task_schedtune(task); in schedtune_accept_deltas()
190 perf_boost_idx = ct->perf_boost_idx; in schedtune_accept_deltas()
191 perf_constrain_idx = ct->perf_constrain_idx; in schedtune_accept_deltas()
/kernel/time/
Ditimer.c132 static inline u32 cputime_sub_ns(cputime_t ct, s64 real_ns) in cputime_sub_ns() argument
137 cputime_to_timespec(ct, &ts); in cputime_sub_ns()