/Linux-v5.10/fs/cifs/ |
D | cifs_unicode.c | 187 __u16 ftmp[3]; /* ftmp[3] = 3array x 2bytes = 6bytes UTF-16 */ in cifs_from_utf16() local 198 ftmp[0] = get_unaligned_le16(&from[i]); in cifs_from_utf16() 199 if (ftmp[0] == 0) in cifs_from_utf16() 202 ftmp[1] = get_unaligned_le16(&from[i + 1]); in cifs_from_utf16() 204 ftmp[1] = 0; in cifs_from_utf16() 206 ftmp[2] = get_unaligned_le16(&from[i + 2]); in cifs_from_utf16() 208 ftmp[2] = 0; in cifs_from_utf16() 215 charlen = cifs_mapchar(tmp, ftmp, codepage, map_type); in cifs_from_utf16() 221 charlen = cifs_mapchar(&to[outlen], ftmp, codepage, map_type); in cifs_from_utf16() 313 __u16 ftmp[3]; in cifs_utf16_bytes() local [all …]
|
/Linux-v5.10/tools/testing/selftests/vm/ |
D | map_populate.c | 78 FILE *ftmp; in main() local 81 ftmp = tmpfile(); in main() 82 BUG_ON(ftmp == 0, "tmpfile()"); in main() 84 ret = ftruncate(fileno(ftmp), MMAP_SZ); in main() 88 MAP_SHARED, fileno(ftmp), 0); in main() 112 return child_f(sock[0], smap, fileno(ftmp)); in main()
|
/Linux-v5.10/drivers/clk/ |
D | clk-scpi.c | 66 unsigned long fmin = 0, fmax = ~0, ftmp; in __scpi_dvfs_round_rate() local 70 ftmp = opp->freq; in __scpi_dvfs_round_rate() 71 if (ftmp >= rate) { in __scpi_dvfs_round_rate() 72 if (ftmp <= fmax) in __scpi_dvfs_round_rate() 73 fmax = ftmp; in __scpi_dvfs_round_rate() 75 } else if (ftmp >= fmin) { in __scpi_dvfs_round_rate() 76 fmin = ftmp; in __scpi_dvfs_round_rate()
|
D | clk-scmi.c | 41 u64 fmin, fmax, ftmp; in scmi_clk_round_rate() local 60 ftmp = rate - fmin; in scmi_clk_round_rate() 61 ftmp += clk->info->range.step_size - 1; /* to round up */ in scmi_clk_round_rate() 62 do_div(ftmp, clk->info->range.step_size); in scmi_clk_round_rate() 64 return ftmp * clk->info->range.step_size + fmin; in scmi_clk_round_rate()
|
/Linux-v5.10/arch/arm/mach-vexpress/ |
D | spc.c | 281 u32 fmin = 0, fmax = ~0, ftmp; in ve_spc_round_performance() local 285 ftmp = opps->freq; in ve_spc_round_performance() 286 if (ftmp >= freq) { in ve_spc_round_performance() 287 if (ftmp <= fmax) in ve_spc_round_performance() 288 fmax = ftmp; in ve_spc_round_performance() 290 if (ftmp >= fmin) in ve_spc_round_performance() 291 fmin = ftmp; in ve_spc_round_performance()
|
/Linux-v5.10/drivers/net/ethernet/intel/iavf/ |
D | iavf_virtchnl.c | 479 struct iavf_mac_filter *f, *ftmp; in iavf_del_ether_addrs() local 521 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) { in iavf_del_ether_addrs() 619 struct iavf_vlan_filter *f, *ftmp; in iavf_del_vlans() local 662 list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) { in iavf_del_vlans()
|
D | iavf_main.c | 1985 struct iavf_mac_filter *f, *ftmp; in iavf_disable_vf() local 2010 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) { in iavf_disable_vf() 2060 struct iavf_mac_filter *f, *ftmp; in iavf_reset_task() local 2180 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) { in iavf_reset_task() 3850 struct iavf_mac_filter *f, *ftmp; in iavf_remove() local 3911 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) { in iavf_remove()
|
/Linux-v5.10/arch/sh/kernel/ |
D | dwarf.c | 1132 struct dwarf_fde *fde, *ftmp; in module_dwarf_cleanup() local 1148 list_for_each_entry_safe(fde, ftmp, &mod->arch.fde_list, link) { in module_dwarf_cleanup()
|