Searched refs:ct (Results 176 - 200 of 349) sorted by relevance

1234567891011>>

/linux-master/drivers/gpu/drm/i915/gt/uc/
H A Dintel_guc.h38 /** @ct: the command transport communication channel */
39 struct intel_guc_ct ct; member in struct:intel_guc
338 return intel_guc_ct_send(&guc->ct, action, len, NULL, 0, 0);
345 return intel_guc_ct_send(&guc->ct, action, len, NULL, 0,
353 return intel_guc_ct_send(&guc->ct, action, len,
397 intel_guc_ct_event_handler(&guc->ct);
470 return intel_guc_is_fw_running(guc) && intel_guc_ct_enabled(&guc->ct);
492 intel_guc_ct_sanitize(&guc->ct);
/linux-master/drivers/macintosh/
H A Dwindfarm_pm81.c612 static void wf_smu_new_control(struct wf_control *ct) argument
617 if (fan_cpu_main == NULL && !strcmp(ct->name, "cpu-fan")) {
618 if (wf_get_control(ct) == 0)
619 fan_cpu_main = ct;
622 if (fan_system == NULL && !strcmp(ct->name, "system-fan")) {
623 if (wf_get_control(ct) == 0)
624 fan_system = ct;
627 if (cpufreq_clamp == NULL && !strcmp(ct->name, "cpufreq-clamp")) {
628 if (wf_get_control(ct) == 0)
629 cpufreq_clamp = ct;
[all...]
H A Dwindfarm_pm121.c868 static struct wf_control* pm121_register_control(struct wf_control *ct, argument
872 if (controls[id] == NULL && !strcmp(ct->name, match)) {
873 if (wf_get_control(ct) == 0)
874 controls[id] = ct;
879 static void pm121_new_control(struct wf_control *ct) argument
886 all = pm121_register_control(ct, "optical-drive-fan", FAN_OD) && all;
887 all = pm121_register_control(ct, "hard-drive-fan", FAN_HD) && all;
888 all = pm121_register_control(ct, "cpu-fan", FAN_CPU) && all;
889 all = pm121_register_control(ct, "cpufreq-clamp", CPUFREQ) && all;
/linux-master/drivers/media/usb/gspca/stv06xx/
H A Dstv06xx_hdcs.c168 int ct; local
181 ct = hdcs->exp.cto + hdcs->psmp + (HDCS_ADC_START_SIG_DUR + 2);
182 cp = hdcs->exp.cto + (hdcs->w * ct / 2);
195 srowexp = hdcs->w - (cycles + hdcs->exp.er + 13) / ct;
197 mnct = (hdcs->exp.er + 12 + ct - 1) / ct;
203 mnct = (hdcs->exp.er + 5 + ct - 1) / ct;
204 max_srowexp = cp - mnct * ct - 1;
/linux-master/drivers/irqchip/
H A Dirq-loongson-liointc.c206 struct irq_chip_type *ct; local
291 ct = gc->chip_types;
292 ct->regs.enable = LIOINTC_REG_INTC_ENABLE;
293 ct->regs.disable = LIOINTC_REG_INTC_DISABLE;
294 ct->chip.irq_unmask = irq_gc_unmask_enable_reg;
295 ct->chip.irq_mask = irq_gc_mask_disable_reg;
296 ct->chip.irq_mask_ack = irq_gc_mask_disable_reg;
297 ct->chip.irq_set_type = liointc_set_type;
298 ct->chip.flags = IRQCHIP_SKIP_SET_WAKE;
H A Dirq-csky-apb-intc.c49 struct irq_chip_type *ct = irq_data_get_chip_type(d); local
50 unsigned long ifr = ct->regs.mask - 8;
54 *ct->mask_cache |= mask;
55 irq_reg_writel(gc, *ct->mask_cache, ct->regs.mask);
H A Dirq-sunxi-nmi.c99 struct irq_chip_type *ct = gc->chip_types; local
101 u32 ctrl_off = ct->regs.type;
131 for (i = 0; i < gc->num_ct; i++, ct++)
132 if (ct->type & flow_type)
133 ctrl_off = ct->regs.type;
H A Dirq-dw-apb-ictl.c102 struct irq_chip_type *ct = irq_data_get_chip_type(d); local
105 writel_relaxed(~0, gc->reg_base + ct->regs.enable);
106 writel_relaxed(*ct->mask_cache, gc->reg_base + ct->regs.mask);
/linux-master/arch/x86/include/asm/
H A Dstring_32.h22 extern int strcmp(const char *cs, const char *ct);
25 extern int strncmp(const char *cs, const char *ct, size_t count);
185 extern char *strstr(const char *cs, const char *ct);
/linux-master/tools/testing/selftests/net/netfilter/
H A Dnft_conntrack_helper.sh51 ct helper ftp {
56 tcp dport 2121 ct helper set "ftp"
60 tcp dport 2121 ct helper set "ftp"
H A Dnft_synproxy.sh72 ct state new,established counter accept
74 meta iif veth0 meta l4proto tcp ct state untracked,invalid synproxy mss 1460 sack-perm timestamp
76 ct state invalid counter drop
H A Dconntrack_tcp_unreplied.sh72 ct state established accept
91 ct state new tcp flags syn ip daddr 10.99.99.99 tcp dport 80 counter name "connreq" accept
92 ct state new ct status dnat tcp dport 8080 counter name "redir" accept
/linux-master/drivers/gpu/drm/xe/
H A Dxe_guc_pc.c132 struct xe_guc_ct *ct = &pc_to_guc(pc)->ct; local
141 ret = xe_guc_ct_send(ct, action, ARRAY_SIZE(action), 0, 0);
150 struct xe_guc_ct *ct = &pc_to_guc(pc)->ct; local
163 ret = xe_guc_ct_send_block(ct, action, ARRAY_SIZE(action));
173 struct xe_guc_ct *ct = &pc_to_guc(pc)->ct; local
185 ret = xe_guc_ct_send(ct, action, ARRAY_SIZE(action), 0, 0);
195 struct xe_guc_ct *ct local
[all...]
H A Dxe_devcoredump.c116 xe_guc_ct_snapshot_print(coredump->snapshot.ct, &p);
144 xe_guc_ct_snapshot_free(coredump->snapshot.ct);
192 coredump->snapshot.ct = xe_guc_ct_snapshot_capture(&guc->ct, true);
/linux-master/include/linux/
H A Dnetfilter.h382 int (*parse_nat_setup)(struct nf_conn *ct, enum nf_nat_manip_type manip,
385 unsigned int (*manip_pkt)(struct sk_buff *skb, struct nf_conn *ct,
388 void (*remove_nat_bysrc)(struct nf_conn *ct);
483 size_t (*build_size)(const struct nf_conn *ct);
484 int (*build)(struct sk_buff *skb, struct nf_conn *ct,
487 int (*parse)(const struct nlattr *attr, struct nf_conn *ct);
488 int (*attach_expect)(const struct nlattr *attr, struct nf_conn *ct,
490 void (*seq_adjust)(struct sk_buff *skb, struct nf_conn *ct,
/linux-master/arch/x86/boot/
H A Dstring.h22 extern int strncmp(const char *cs, const char *ct, size_t count);
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/en/tc/
H A Dct_fs_dmfs.c18 mlx5_ct_fs_dmfs_init(struct mlx5_ct_fs *fs, struct mlx5_flow_table *ct, argument
44 ct_dbg("Failed to add ct entry fs rule");
/linux-master/tools/testing/selftests/net/forwarding/
H A Dtc_actions.sh167 ct commit nat src addr 192.0.2.2 pipe \
168 ct clear pipe \
169 ct commit nat dst addr 192.0.2.1 pipe \
212 action ct commit nat src addr 192.0.2.2 pipe \
213 action ct clear pipe \
214 action ct commit nat dst addr 192.0.2.1 pipe \
215 action ct clear pipe \
/linux-master/arch/arm/mach-omap2/
H A Dprm_common.c271 struct irq_chip_type *ct; local
331 ct = gc->chip_types;
332 ct->chip.irq_ack = irq_gc_ack_set_bit;
333 ct->chip.irq_mask = irq_gc_mask_clr_bit;
334 ct->chip.irq_unmask = irq_gc_mask_set_bit;
336 ct->regs.ack = irq_setup->ack + i * 4;
337 ct->regs.mask = irq_setup->mask + i * 4;
/linux-master/drivers/gpio/
H A Dgpio-mxc.c353 struct irq_chip_type *ct; local
362 ct = gc->chip_types;
363 ct->chip.irq_ack = irq_gc_ack_set_bit;
364 ct->chip.irq_mask = irq_gc_mask_clr_bit;
365 ct->chip.irq_unmask = irq_gc_mask_set_bit;
366 ct->chip.irq_set_type = gpio_set_irq_type;
367 ct->chip.irq_set_wake = gpio_set_wake_irq;
368 ct->chip.flags = IRQCHIP_MASK_ON_SUSPEND | IRQCHIP_ENABLE_WAKEUP_ON_SUSPEND;
369 ct->regs.ack = GPIO_ISR;
370 ct
[all...]
H A Dgpio-pch.c328 struct irq_chip_type *ct; local
337 ct = gc->chip_types;
339 ct->chip.irq_ack = pch_irq_ack;
340 ct->chip.irq_mask = pch_irq_mask;
341 ct->chip.irq_unmask = pch_irq_unmask;
342 ct->chip.irq_set_type = pch_irq_type;
/linux-master/arch/riscv/kvm/
H A Dvcpu_insn.c428 struct kvm_cpu_context *ct; local
432 ct = &vcpu->arch.guest_context;
434 ct->sepc,
437 utrap.sepc = ct->sepc;
474 struct kvm_cpu_context *ct = &vcpu->arch.guest_context; local
489 insn = kvm_riscv_vcpu_unpriv_read(vcpu, true, ct->sepc,
493 utrap.sepc = ct->sepc;
600 struct kvm_cpu_context *ct = &vcpu->arch.guest_context; local
615 insn = kvm_riscv_vcpu_unpriv_read(vcpu, true, ct->sepc,
619 utrap.sepc = ct
[all...]
/linux-master/net/netfilter/
H A Dxt_HMARK.c82 struct nf_conn *ct = nf_ct_get(skb, &ctinfo); local
86 if (ct == NULL)
89 otuple = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
90 rtuple = &ct->tuplehash[IP_CT_DIR_REPLY].tuple;
100 t->proto = nf_ct_protonum(ct);
H A Dnft_connlimit.c31 const struct nf_conn *ct; local
36 ct = nf_ct_get(pkt->skb, &ctinfo);
37 if (ct != NULL) {
38 tuple_ptr = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
39 zone = nf_ct_zone(ct);
H A Dxt_ipvs.c97 * We found a connection, i.e. ct != 0, make sure to call
118 struct nf_conn *ct = nf_ct_get(skb, &ctinfo); local
120 if (ct == NULL) {

Completed in 301 milliseconds

1234567891011>>