Home
last modified time | relevance | path

Searched refs:next_width (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/gcc/
H A D0001-CVE-2021-42574.patch1815 int next_width;
1824 - next_width = m_tabstop - (m_display_cols % m_tabstop);
1825 + next_width = m_policy.m_tabstop - (m_display_cols % m_policy.m_tabstop);
1838 - next_width = 1;
1839 + next_width = m_policy.m_undecoded_byte_width;
1846 - next_width = cpp_wcwidth (c);
1847 + next_width = m_policy.m_width_cb (c);
1858 m_display_cols += next_width;
1859 return next_width;
/OK3568_Linux_fs/kernel/drivers/pci/
H A Dpci.c5838 enum pcie_link_width next_width; in pcie_bandwidth_available() local
5852 next_width = (lnksta & PCI_EXP_LNKSTA_NLW) >> in pcie_bandwidth_available()
5855 next_bw = next_width * PCIE_SPEED2MBS_ENC(next_speed); in pcie_bandwidth_available()
5866 *width = next_width; in pcie_bandwidth_available()