| /linux/arch/m68k/fpsp040/ |
| H A D | binstr.S | 16 | bit 63. The fraction is multiplied by 10 using a mul by 2 26 | Copy the fraction in d2:d3 to d4:d5. 28 | A3. Multiply the fraction in d2:d3 by 8 using bit-field 32 | A4. Multiply the fraction in d4:d5 by 2 using shifts. The msb 51 | d2: upper 32-bits of fraction for mul by 8 52 | d3: lower 32-bits of fraction for mul by 8 53 | d4: upper 32-bits of fraction for mul by 2 54 | d5: lower 32-bits of fraction for mul by 2 84 movel %d2,%d4 |copy the fraction before muls
|
| H A D | sint.S | 203 | ;there are no fraction bits 208 | ;shift off fraction bits
|
| H A D | decbin.S | 27 | digits, rather than 1 integer and 16 fraction digits. 44 | SM = 1 a non-zero digit in Mant0, lsd of the fraction 144 movel #EDIGITS,%d2 |# of nibbles (digits) in fraction part
|
| /linux/drivers/regulator/ |
| H A D | sun20i-regulator.c | 26 unsigned int fraction, uV; in sun20i_d1_system_ldo_list_voltage() local 32 fraction = selector + (desc->min_uV % 4); in sun20i_d1_system_ldo_list_voltage() 37 fraction++; in sun20i_d1_system_ldo_list_voltage() 40 return uV + (fraction / 3); in sun20i_d1_system_ldo_list_voltage()
|
| /linux/sound/core/seq/ |
| H A D | seq_timer.h | 15 unsigned long fraction; /* current time per tick in nsec */ member 58 tick->fraction += resolution; in snd_seq_timer_update_tick() 59 tick->cur_tick += (unsigned int)(tick->fraction / tick->resolution); in snd_seq_timer_update_tick() 60 tick->fraction %= tick->resolution; in snd_seq_timer_update_tick()
|
| H A D | seq_timer.c | 107 tmr->tick.fraction = 0; in seq_timer_reset() 209 tmr->tick.fraction = 0; in snd_seq_timer_set_position_tick()
|
| /linux/drivers/media/tuners/ |
| H A D | max2165.c | 150 static int fixpt_div32(u32 dividend, u32 divisor, u32 *quotient, u32 *fraction) in fixpt_div32() argument 172 *fraction = f; in fixpt_div32() 182 u32 quotient, fraction; in max2165_set_rf() local 187 "ient, &fraction); in max2165_set_rf() 192 fraction >>= 12; in max2165_set_rf() 195 max2165_mask_write_reg(priv, REG_NDIV_FRAC2, 0x0F, fraction >> 16); in max2165_set_rf() 196 max2165_write_reg(priv, REG_NDIV_FRAC1, fraction >> 8); in max2165_set_rf() 197 max2165_write_reg(priv, REG_NDIV_FRAC0, fraction); in max2165_set_rf()
|
| /linux/drivers/net/wireless/ath/ |
| H A D | dfs_pri_detector.c | 44 static u32 pde_get_multiple(u32 val, u32 fraction, u32 tolerance) in pde_get_multiple() argument 50 if (fraction == 0) in pde_get_multiple() 53 delta = (val < fraction) ? (fraction - val) : (val - fraction); in pde_get_multiple() 59 factor = val / fraction; in pde_get_multiple() 60 remainder = val % fraction; in pde_get_multiple() 63 if ((fraction - remainder) <= tolerance) in pde_get_multiple()
|
| /linux/tools/perf/ui/gtk/ |
| H A D | progress.c | 12 double fraction = p->total ? 1.0 * p->curr / p->total : 0.0; in gtk_ui_progress__update() local 34 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(progress), fraction); in gtk_ui_progress__update()
|
| /linux/drivers/tty/serial/8250/ |
| H A D | 8250_mtk.c | 316 unsigned int baud, quot, fraction; in mtk8250_set_termios() local 398 fraction = ((port->uartclk * 100) / baud / quot) % 100; in mtk8250_set_termios() 399 fraction = DIV_ROUND_CLOSEST(fraction, 10); in mtk8250_set_termios() 401 fraction_L_mapping[fraction]); in mtk8250_set_termios() 403 fraction_M_mapping[fraction]); in mtk8250_set_termios()
|
| /linux/drivers/iio/chemical/ |
| H A D | sps30.c | 45 int fraction, shift; in sps30_float_to_int_clamped() local 63 fraction = mantissa & GENMASK(shift - 1, 0); in sps30_float_to_int_clamped() 65 return val * 100 + ((fraction * 100) >> shift); in sps30_float_to_int_clamped()
|
| /linux/drivers/hid/amd-sfh-hid/sfh1_1/ |
| H A D | amd_sfh_desc.c | 137 int fraction, shift, mantissa, sign, exp, zeropre; in amd_sfh_float_to_int() local 171 fraction = (shift == 0) ? 0 : mantissa & GENMASK(shift - 1, 0); in amd_sfh_float_to_int() 173 return (((fraction * 100) >> shift) >= 50) ? sign * (flt32_val + 1) : sign * flt32_val; in amd_sfh_float_to_int()
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-firmware-gsmi | 51 ASCII) representing the fraction of the log to 55 submitted fraction.
|
| /linux/drivers/gpu/drm/nouveau/dispnv50/ |
| H A D | base907c.c | 124 u32 fraction = in & 0xffffffff; in csc_drm_to_base() local 129 u32 ret = (integer << 16) | (fraction >> 16); in csc_drm_to_base()
|
| /linux/Documentation/sound/designs/ |
| H A D | tracepoints.rst | 96 Read-only. This value represents numerator of sampling rate in fraction 103 fraction notation. Basically, when a parameter of
|
| /linux/arch/arm/boot/dts/st/ |
| H A D | spear320-hmi.dts | 261 ts,fraction-z = <7>;
|
| H A D | spear1310-evb.dts | 375 ts,fraction-z = <7>;
|
| H A D | spear1340-evb.dts | 484 ts,fraction-z = <7>;
|
| /linux/drivers/iio/light/ |
| H A D | si1133.c | 240 static int si1133_calculate_polynomial_inner(s32 input, u8 fraction, u16 mag, in si1133_calculate_polynomial_inner() argument 243 return ((input << fraction) / mag) << shift; in si1133_calculate_polynomial_inner()
|
| /linux/drivers/hwmon/ |
| H A D | lm90.c | 1373 int fraction = resolution > 8 ? in lm90_temp_to_reg() local 1377 val = clamp_val(val, -64000, 191000 + fraction); in lm90_temp_to_reg() 1380 val = clamp_val(val, 0, 255000 + fraction); in lm90_temp_to_reg() 1382 val = clamp_val(val, 0, 127000 + fraction); in lm90_temp_to_reg() 1384 val = clamp_val(val, -128000, 127000 + fraction); in lm90_temp_to_reg()
|
| /linux/arch/arm/boot/dts/nxp/imx/ |
| H A D | imx6ul-isiot.dtsi | 150 st,fraction-z = <7>;
|
| /linux/drivers/gpu/drm/i915/display/ |
| H A D | intel_cdclk.c | 3803 int divider, fraction; in cnp_rawclk() local 3809 fraction = 0; in cnp_rawclk() 3813 fraction = 200; in cnp_rawclk() 3817 if (fraction) { in cnp_rawclk() 3821 fraction) - 1); in cnp_rawclk() 3827 return divider + fraction; in cnp_rawclk()
|
| /linux/Documentation/scheduler/ |
| H A D | schedutil.rst | 39 will decrease to reflect the fraction of time each task spends on the CPU
|
| /linux/Documentation/block/ |
| H A D | bfq-iosched.rst | 189 guaranteeing the desired throughput fraction to processes 245 guarantees that each queue receives a fraction of the device 260 receive a higher fraction of the device throughput.
|
| /linux/Documentation/dev-tools/ |
| H A D | checkuapi.rst | 68 * exponent and a 13-bit fraction. 69 * comp2_t is 24-bit with 5-bit base 2 exponent and 20 bit fraction
|