/openbmc/linux/drivers/gpu/drm/sun4i/ |
H A D | sun8i_hdmi_phy_clk.c | 37 unsigned long rounded; in sun8i_phy_clk_determine_rate() local 39 rounded = clk_hw_round_rate(parent, ideal); in sun8i_phy_clk_determine_rate() 41 if (rounded == ideal) { in sun8i_phy_clk_determine_rate() 42 best_rate = rounded; in sun8i_phy_clk_determine_rate() 49 abs(rate - rounded / i) < in sun8i_phy_clk_determine_rate() 51 best_rate = rounded; in sun8i_phy_clk_determine_rate()
|
H A D | sun4i_tcon_dclk.c | 81 unsigned long rounded; in sun4i_dclk_round_rate() local 93 rounded = clk_hw_round_rate(clk_hw_get_parent(hw), in sun4i_dclk_round_rate() 96 if (rounded == ideal) { in sun4i_dclk_round_rate() 97 best_parent = rounded; in sun4i_dclk_round_rate() 102 if (abs(rate - rounded / i) < in sun4i_dclk_round_rate() 104 best_parent = rounded; in sun4i_dclk_round_rate()
|
H A D | sun4i_hdmi_tmds_clk.c | 91 unsigned long rounded; in sun4i_tmds_determine_rate() local 93 rounded = clk_hw_round_rate(parent, ideal); in sun4i_tmds_determine_rate() 95 if (rounded == ideal) { in sun4i_tmds_determine_rate() 96 best_parent = rounded; in sun4i_tmds_determine_rate() 103 abs(rate - rounded / i / j) < in sun4i_tmds_determine_rate() 106 best_parent = rounded; in sun4i_tmds_determine_rate()
|
/openbmc/linux/drivers/clk/mstar/ |
H A D | clk-msc313-cpupll.c | 147 long rounded = msc313_cpupll_frequencyforreg(reg, *parent_rate); in msc313_cpupll_round_rate() local 153 for (; rounded >= rate && reg > 0; reg--) in msc313_cpupll_round_rate() 154 rounded = msc313_cpupll_frequencyforreg(reg, *parent_rate); in msc313_cpupll_round_rate() 156 return rounded; in msc313_cpupll_round_rate()
|
/openbmc/webui-vue/src/assets/styles/bmc/custom/ |
H A D | _badge.scss | 3 // for pill variant because global $enable-rounded 4 // Bootstrap setting removes rounded pill style
|
/openbmc/linux/arch/m68k/fpsp040/ |
H A D | sint.S | 4 | The entry point sINT computes the rounded integer 6 | the integer rounded to zero of the input argument. 37 | 4. Normalize the rounded result; store in fp0. 225 | ;output a0 ptr to rounded result 229 | normalize the rounded result and store value in fp0
|
H A D | x_unfl.S | 12 | format. After denormalization, the result is rounded to the 206 | Output: a0 points to rounded operand 209 bsrl round |returns rounded denorm at (a0) 225 tstb LOCAL_HI(%a0) |If rounded result is normal,don't
|
H A D | smovecr.S | 9 | Output: The constant rounded to the user's rounding
|
H A D | sacos.S | 15 | result is subsequently rounded to double precision. The
|
H A D | satanh.S | 16 | result is subsequently rounded to double precision. The
|
H A D | sasin.S | 15 | result is subsequently rounded to double precision. The
|
H A D | scosh.S | 15 | result is subsequently rounded to double precision. The
|
/openbmc/linux/drivers/clk/mmp/ |
H A D | clk-audio.c | 172 long rounded = 0; in audio_pll_round_rate() local 185 if (rounded && freq > rounded) in audio_pll_round_rate() 187 rounded = freq; in audio_pll_round_rate() 191 return rounded; in audio_pll_round_rate()
|
/openbmc/webui-vue/src/assets/styles/bmc/helpers/ |
H A D | _variables.scss | 2 $enable-rounded: false;
|
/openbmc/openbmc/poky/documentation/ |
H A D | poky.yaml.in | 21 …(Gbytes) needed to generate qemux86-64 core-image-sato on Ubuntu 22.04 (x86-64), rounded up from 87 23 … to generate qemux86-64 core-image-sato on Ubuntu 22.04 (x86-64) with "rm_work", rounded up from 38
|
/openbmc/linux/drivers/sh/clk/ |
H A D | core.c | 558 unsigned long flags, rounded; in clk_round_rate() local 561 rounded = clk->ops->round_rate(clk, rate); in clk_round_rate() 564 return rounded; in clk_round_rate()
|
/openbmc/linux/fs/btrfs/ |
H A D | verity.c | 89 u64 rounded = round_up(sz, MERKLE_START_ALIGN); in merkle_file_pos() local 91 if (rounded > inode->i_sb->s_maxbytes) in merkle_file_pos() 94 return rounded; in merkle_file_pos()
|
/openbmc/linux/Documentation/hwmon/ |
H A D | max31827.rst | 83 will always be rounded down to the nearest possible value, for negative numbers 84 the user-input will always be rounded up to the nearest possible value.
|
/openbmc/qemu/tests/image-fuzzer/qcow2/ |
H A D | layout.py | 517 rounded = (size + self.cluster_size - 1) & ~(self.cluster_size - 1) 518 if rounded > size: 519 image_file.seek(rounded - 1)
|
/openbmc/linux/drivers/clk/ |
H A D | clk_test.c | 1590 long rounded; in clk_range_test_set_range_set_round_rate_consistent_lower() local 1598 rounded = clk_round_rate(clk, DUMMY_CLOCK_RATE_1 - 1000); in clk_range_test_set_range_set_round_rate_consistent_lower() 1599 KUNIT_ASSERT_GT(test, rounded, 0); in clk_range_test_set_range_set_round_rate_consistent_lower() 1605 KUNIT_EXPECT_EQ(test, rounded, clk_get_rate(clk)); in clk_range_test_set_range_set_round_rate_consistent_lower() 1675 long rounded; in clk_range_test_set_range_set_round_rate_consistent_higher() local 1683 rounded = clk_round_rate(clk, DUMMY_CLOCK_RATE_2 + 1000); in clk_range_test_set_range_set_round_rate_consistent_higher() 1684 KUNIT_ASSERT_GT(test, rounded, 0); in clk_range_test_set_range_set_round_rate_consistent_higher() 1690 KUNIT_EXPECT_EQ(test, rounded, clk_get_rate(clk)); in clk_range_test_set_range_set_round_rate_consistent_higher()
|
/openbmc/linux/Documentation/admin-guide/ |
H A D | ramoops.rst | 23 * ``mem_size`` for the size. The memory size will be rounded down to a 36 The memory area is divided into ``record_size`` chunks (also rounded down to
|
/openbmc/qemu/fpu/ |
H A D | softfloat-parts.c.inc | 792 /* compute nearest rounded result to 2.23 bits */ 817 /* Compute nearest rounded result */ 858 /* Compute nearest rounded result */ 1056 * rounded according to the current rounding mode. If `a' is a NaN, 1122 * rounded according to the current rounding mode. If `a' is a NaN, 1125 * the 'a' is negative, the result is rounded and zero is returned; 1187 * Instead, return the rounded unbounded precision two's compliment result, 1223 * Because we rounded to integral, and exp < 64,
|
/openbmc/u-boot/board/freescale/mpc8315erdb/ |
H A D | README | 86 ...where 0x80000 is the filesize rounded up to
|
/openbmc/u-boot/doc/device-tree-bindings/ |
H A D | config.txt | 43 LBA-aligned will be rounded up to the next LBA address.
|
/openbmc/u-boot/board/freescale/mpc8313erdb/ |
H A D | README | 92 ...where 0x80000 is the filesize rounded up to
|