Home
last modified time | relevance | path

Searched refs:kf (Results 1 – 23 of 23) sorted by relevance

/openbmc/linux/drivers/iio/buffer/
H A Dkfifo_buf.c18 struct kfifo kf; member
38 return __kfifo_alloc((struct __kfifo *)&buf->kf, length, in __iio_allocate_kfifo()
49 kfifo_free(&buf->kf); in iio_request_update_kfifo()
55 kfifo_reset_out(&buf->kf); in iio_request_update_kfifo()
64 struct iio_kfifo *kf = iio_to_kfifo(r); in iio_mark_update_needed_kfifo() local
65 kf->update_needed = true; in iio_mark_update_needed_kfifo()
94 struct iio_kfifo *kf = iio_to_kfifo(r); in iio_store_to_kfifo() local
95 ret = kfifo_in(&kf->kf, data, 1); in iio_store_to_kfifo()
104 struct iio_kfifo *kf = iio_to_kfifo(r); in iio_read_kfifo() local
106 if (mutex_lock_interruptible(&kf->user_lock)) in iio_read_kfifo()
[all …]
/openbmc/linux/net/netfilter/
H A Dnfnetlink_osf.c205 const struct nf_osf_finger *kf; in nf_osf_match() local
220 list_for_each_entry_rcu(kf, &nf_osf_fingers[ctx.df], finger_entry) { in nf_osf_match()
222 f = &kf->finger; in nf_osf_match()
268 const struct nf_osf_finger *kf; in nf_osf_find() local
280 list_for_each_entry_rcu(kf, &nf_osf_fingers[ctx.df], finger_entry) { in nf_osf_find()
281 f = &kf->finger; in nf_osf_find()
304 struct nf_osf_finger *kf = NULL, *sf; in nfnl_osf_add_callback() local
326 kf = kmalloc(sizeof(struct nf_osf_finger), GFP_KERNEL); in nfnl_osf_add_callback()
327 if (!kf) in nfnl_osf_add_callback()
330 memcpy(&kf->finger, f, sizeof(struct nf_osf_user_finger)); in nfnl_osf_add_callback()
[all …]
/openbmc/linux/arch/arm64/boot/dts/renesas/
H A DMakefile34 dtb-$(CONFIG_ARCH_R8A77951) += r8a77951-ulcb-kf.dtb
39 dtb-$(CONFIG_ARCH_R8A77960) += r8a77960-ulcb-kf.dtb
43 dtb-$(CONFIG_ARCH_R8A77961) += r8a77961-ulcb-kf.dtb
48 dtb-$(CONFIG_ARCH_R8A77965) += r8a77965-ulcb-kf.dtb
70 dtb-$(CONFIG_ARCH_R8A77951) += r8a779m1-ulcb-kf.dtb
74 dtb-$(CONFIG_ARCH_R8A77961) += r8a779m3-ulcb-kf.dtb
H A Dr8a779m3-ulcb-kf.dts7 * Based on r8a77961-ulcb-kf.dts
12 #include "ulcb-kf.dtsi"
H A Dr8a779m1-ulcb-kf.dts7 * Based on r8a77951-ulcb-kf.dts
13 #include "ulcb-kf.dtsi"
H A Dulcb-kf.dtsi467 * #include "ulcb-kf-simple-audio-card.dtsi"
468 * #include "ulcb-kf-simple-audio-card-mix+split.dtsi"
469 * #include "ulcb-kf-audio-graph-card.dtsi"
470 * #include "ulcb-kf-audio-graph-card-mix+split.dtsi"
471 * #include "ulcb-kf-audio-graph-card2-mix+split.dtsi"
473 #include "ulcb-kf-audio-graph-card2.dtsi"
H A Dr8a77961-ulcb-kf.dts9 #include "ulcb-kf.dtsi"
H A Dr8a77951-ulcb-kf.dts10 #include "ulcb-kf.dtsi"
H A Dr8a77965-ulcb-kf.dts10 #include "ulcb-kf.dtsi"
H A Dr8a77960-ulcb-kf.dts10 #include "ulcb-kf.dtsi"
H A Dulcb-kf-audio-graph-card2.dtsi21 #include "ulcb-kf-audio-graph-card.dtsi"
/openbmc/linux/drivers/net/ethernet/microchip/vcap/
H A Dvcap_api_kunit.c1023 struct vcap_client_keyfield *kf; in vcap_api_rule_add_keyvalue_test() local
1036 kf = list_first_entry(&rule->keyfields, struct vcap_client_keyfield, in vcap_api_rule_add_keyvalue_test()
1038 KUNIT_EXPECT_EQ(test, VCAP_KF_LOOKUP_FIRST_IS, kf->ctrl.key); in vcap_api_rule_add_keyvalue_test()
1039 KUNIT_EXPECT_EQ(test, VCAP_FIELD_BIT, kf->ctrl.type); in vcap_api_rule_add_keyvalue_test()
1040 KUNIT_EXPECT_EQ(test, 0x0, kf->data.u1.value); in vcap_api_rule_add_keyvalue_test()
1041 KUNIT_EXPECT_EQ(test, 0x1, kf->data.u1.mask); in vcap_api_rule_add_keyvalue_test()
1049 kf = list_first_entry(&rule->keyfields, struct vcap_client_keyfield, in vcap_api_rule_add_keyvalue_test()
1051 KUNIT_EXPECT_EQ(test, VCAP_KF_LOOKUP_FIRST_IS, kf->ctrl.key); in vcap_api_rule_add_keyvalue_test()
1052 KUNIT_EXPECT_EQ(test, VCAP_FIELD_BIT, kf->ctrl.type); in vcap_api_rule_add_keyvalue_test()
1053 KUNIT_EXPECT_EQ(test, 0x1, kf->data.u1.value); in vcap_api_rule_add_keyvalue_test()
[all …]
H A Dvcap_api.c447 const struct vcap_client_keyfield *kf, in vcap_encode_keyfield() argument
459 switch (kf->ctrl.type) { in vcap_encode_keyfield()
461 value = &kf->data.u1.value; in vcap_encode_keyfield()
462 mask = &kf->data.u1.mask; in vcap_encode_keyfield()
465 value = (const u8 *)&kf->data.u32.value; in vcap_encode_keyfield()
466 mask = (const u8 *)&kf->data.u32.mask; in vcap_encode_keyfield()
469 value = kf->data.u48.value; in vcap_encode_keyfield()
470 mask = kf->data.u48.mask; in vcap_encode_keyfield()
473 value = kf->data.u56.value; in vcap_encode_keyfield()
474 mask = kf->data.u56.mask; in vcap_encode_keyfield()
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/
H A D0024-Avoid-hardcoded-build-paths-into-ppc-libgcc.patch21 $(fp128_softfp_src) : $(srcdir)/soft-fp/$(subst -sw,,$(subst kf,tf,$@)) $(fp128_dep)
22 @src="$(srcdir)/soft-fp/$(subst -sw,,$(subst kf,tf,$@))"; \
/openbmc/qemu/tests/unit/
H A Dtest-qga.c707 g_autoptr(GKeyFile) kf = NULL; in test_qga_config()
729 kf = g_key_file_new(); in test_qga_config()
730 g_key_file_load_from_data(kf, out, -1, G_KEY_FILE_NONE, &error); in test_qga_config()
733 str = g_key_file_get_start_group(kf); in test_qga_config()
737 g_assert_false(g_key_file_get_boolean(kf, "general", "daemon", &error)); in test_qga_config()
740 str = g_key_file_get_string(kf, "general", "method", &error); in test_qga_config()
745 str = g_key_file_get_string(kf, "general", "path", &error); in test_qga_config()
750 str = g_key_file_get_string(kf, "general", "pidfile", &error); in test_qga_config()
755 str = g_key_file_get_string(kf, "general", "statedir", &error); in test_qga_config()
760 g_assert_true(g_key_file_get_boolean(kf, "general", "verbose", &error)); in test_qga_config()
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/dispnv04/
H A Dtvmodesnv17.c264 int64_t kf; member
341 + (p->kf + p->kif*i + p->ki2f*i*i + in tv_setup_filter()
/openbmc/linux/arch/x86/kvm/mmu/
H A Dmmu.c4985 u8 kf = (pfec & PFERR_USER_MASK) ? 0 : u; in update_permission_bitmask() local
4997 smepf = (pfec & PFERR_FETCH_MASK) ? kf : 0; in update_permission_bitmask()
5016 smapf = (pfec & (PFERR_RSVD_MASK|PFERR_FETCH_MASK)) ? 0 : kf; in update_permission_bitmask()
/openbmc/openbmc/poky/meta/conf/distro/include/
H A Ddistro_alias.inc122 DISTRO_PN_ALIAS:pn-kf = "OSPDT"
/openbmc/linux/Documentation/driver-api/
H A Dparport-lowlevel.rst874 void (*kf) (void *),
/openbmc/linux/arch/x86/kernel/cpu/resctrl/
H A Drdtgroup.c3650 static int rdtgroup_show_options(struct seq_file *seq, struct kernfs_root *kf) in rdtgroup_show_options() argument
/openbmc/linux/
H A Dopengrok1.0.log[all...]
H A Dopengrok0.0.log[all...]
H A Dopengrok2.0.log[all...]