Home
last modified time | relevance | path

Searched refs:ftmp (Results 1 – 8 of 8) sorted by relevance

/Linux-v4.19/fs/cifs/
Dcifs_unicode.c200 __u16 ftmp[3]; /* ftmp[3] = 3array x 2bytes = 6bytes UTF-16 */ in cifs_from_utf16() local
211 ftmp[0] = get_unaligned_le16(&from[i]); in cifs_from_utf16()
212 if (ftmp[0] == 0) in cifs_from_utf16()
215 ftmp[1] = get_unaligned_le16(&from[i + 1]); in cifs_from_utf16()
217 ftmp[1] = 0; in cifs_from_utf16()
219 ftmp[2] = get_unaligned_le16(&from[i + 2]); in cifs_from_utf16()
221 ftmp[2] = 0; in cifs_from_utf16()
228 charlen = cifs_mapchar(tmp, ftmp, codepage, map_type); in cifs_from_utf16()
234 charlen = cifs_mapchar(&to[outlen], ftmp, codepage, map_type); in cifs_from_utf16()
326 __u16 ftmp[3]; in cifs_utf16_bytes() local
[all …]
/Linux-v4.19/tools/testing/selftests/vm/
Dmap_populate.c78 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-v4.19/drivers/clk/
Dclk-scpi.c77 unsigned long fmin = 0, fmax = ~0, ftmp; in __scpi_dvfs_round_rate() local
81 ftmp = opp->freq; in __scpi_dvfs_round_rate()
82 if (ftmp >= rate) { in __scpi_dvfs_round_rate()
83 if (ftmp <= fmax) in __scpi_dvfs_round_rate()
84 fmax = ftmp; in __scpi_dvfs_round_rate()
86 } else if (ftmp >= fmin) { in __scpi_dvfs_round_rate()
87 fmin = ftmp; in __scpi_dvfs_round_rate()
Dclk-scmi.c41 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-v4.19/arch/arm/mach-vexpress/
Dspc.c281 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-v4.19/drivers/net/ethernet/intel/i40evf/
Di40evf_virtchnl.c479 struct i40evf_mac_filter *f, *ftmp; in i40evf_del_ether_addrs() local
522 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) { in i40evf_del_ether_addrs()
621 struct i40evf_vlan_filter *f, *ftmp; in i40evf_del_vlans() local
664 list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) { in i40evf_del_vlans()
Di40evf_main.c1753 struct i40evf_mac_filter *f, *ftmp; in i40evf_disable_vf() local
1778 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) { in i40evf_disable_vf()
3843 struct i40evf_mac_filter *f, *ftmp; in i40evf_remove() local
3903 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) { in i40evf_remove()
/Linux-v4.19/arch/sh/kernel/
Ddwarf.c1134 struct dwarf_fde *fde, *ftmp; in module_dwarf_cleanup() local
1150 list_for_each_entry_safe(fde, ftmp, &mod->arch.fde_list, link) { in module_dwarf_cleanup()