/Linux-v6.6/arch/m68k/lib/ |
D | udivsi3.S | 99 divu d1, d2 /* high quotient in lower word */ 100 movew d2, d0 /* save high quotient */ 103 divu d1, d2 /* low quotient */ 115 /* Multiply the 16 bit tentative quotient with the 32 bit divisor. Because of 117 greater than the dividend, the tentative quotient was too large. */ 124 jne L5 /* if 17 bits, quotient was too large */ 126 jcs L5 /* if sum is 33 bits, quotient was too large */ 128 jls L6 /* if sum > dividend, quotient was too large */ 129 L5: subql IMM (1), d0 /* adjust quotient */
|
/Linux-v6.6/drivers/acpi/acpica/ |
D | utmath.c | 244 * out_quotient - Pointer to where the quotient is returned 250 * divide and modulo. The result is a 64-bit quotient and a 260 union uint64_overlay quotient; in acpi_ut_short_divide() local 275 * The quotient is 64 bits, the remainder is always 32 bits, in acpi_ut_short_divide() 279 quotient.part.hi, remainder32); in acpi_ut_short_divide() 282 quotient.part.lo, remainder32); in acpi_ut_short_divide() 287 *out_quotient = quotient.full; in acpi_ut_short_divide() 302 * out_quotient - Pointer to where the quotient is returned 317 union uint64_overlay quotient; in acpi_ut_divide() local 344 * The quotient is 64 bits, the remainder is always 32 bits, in acpi_ut_divide() [all …]
|
D | hwtimer.c | 123 u64 quotient; in ACPI_EXPORT_SYMBOL() local 168 ACPI_PM_TIMER_FREQUENCY, "ient, NULL); in ACPI_EXPORT_SYMBOL() 170 *time_elapsed = (u32)quotient; in ACPI_EXPORT_SYMBOL()
|
/Linux-v6.6/lib/math/ |
D | test_div64.c | 56 u64 quotient; member 152 static inline bool test_div64_verify(u64 quotient, u32 remainder, int i, int j) in test_div64_verify() argument 154 return (quotient == test_div64_results[i][j].quotient && in test_div64_verify() 165 u64 quotient; \ 168 quotient = dividend; \ 169 remainder = do_div(quotient, divisor); \ 170 if (!test_div64_verify(quotient, remainder, i, j)) { \ 172 dividend, divisor, quotient, remainder); \ 174 test_div64_results[i][j].quotient, \
|
D | div64.c | 69 u64 quotient; in div_s64_rem() local 72 quotient = div_u64_rem(-dividend, abs(divisor), (u32 *)remainder); in div_s64_rem() 75 quotient = -quotient; in div_s64_rem() 77 quotient = div_u64_rem(dividend, abs(divisor), (u32 *)remainder); in div_s64_rem() 79 quotient = -quotient; in div_s64_rem() 81 return quotient; in div_s64_rem()
|
/Linux-v6.6/arch/powerpc/lib/ |
D | div64.S | 7 * the 64-bit quotient, and r4 contains the divisor. 23 mullw r0,r7,r4 # quotient.hi = dividend.hi / divisor 40 2: mullw r10,r11,r4 # to get an estimate of the quotient, 44 subfe. r5,r9,r5 # quotient 52 4: stw r7,0(r3) # return the quotient in *r3
|
/Linux-v6.6/Documentation/devicetree/bindings/power/avs/ |
D | qcom,cpr.yaml | 59 - description: Corner 1 quotient offset 60 - description: Corner 2 quotient offset 61 - description: Corner 3 quotient offset 65 - description: Corner 1 quotient 66 - description: Corner 2 quotient 67 - description: Corner 3 quotient
|
/Linux-v6.6/arch/nios2/kernel/ |
D | insnemu.S | 220 * single register to store both the dividend and the quotient, 223 * remainder dividend:quotient 249 * The quotient is 00000110. 266 * OPX is div. Determine and store the sign of the quotient. 269 xor r17, r3, r5 /* MSB contains sign of quotient */ 283 * r3 = dividend : quotient 288 * r17 = MSB contains sign of quotient 301 * (remainder:dividend:quotient) <<= 1; 312 * set LSB of quotient 329 * r3 = quotient [all …]
|
/Linux-v6.6/drivers/net/wireless/realtek/rtw89/ |
D | util.h | 27 s32 quotient; in s32_div_u32_round_down() local 29 quotient = dividend / i_divisor; in s32_div_u32_round_down() 33 quotient--; in s32_div_u32_round_down() 39 return quotient; in s32_div_u32_round_down()
|
/Linux-v6.6/arch/alpha/lib/ |
D | divide.S | 39 * $2 - modulus/quotient 45 * $27 - quotient/modulus 66 #define quotient $27 macro 74 #define quotient $2 macro 108 bis $31,$31,quotient 139 2: DIV_ONLY(addq quotient,mask,tmp2) 143 DIV_ONLY(cmovne compare,tmp2,quotient)
|
D | ev6-divide.S | 39 * $2 - modulus/quotient 45 * $27 - quotient/modulus 76 #define quotient $27 macro 84 #define quotient $2 macro 119 bis $31,$31,quotient # E : 167 DIV_ONLY(addq quotient,mask,tmp2) # E : 176 DIV_ONLY(cmovne compare,tmp2,quotient) # E : Latency 2, extra map slot
|
/Linux-v6.6/arch/xtensa/lib/ |
D | divsi3.S | 23 movi a2, 0 /* quotient = 0 */ 25 /* test-subtract-and-shift loop; one quotient bit on each iteration */ 46 movltz a2, a5, a7 /* return (sign < 0) ? -quotient : quotient */
|
D | udivsi3.S | 22 movi a2, 0 /* quotient = 0 */ 24 /* test-subtract-and-shift loop; one quotient bit on each iteration */ 42 addi a2, a2, 1 /* increment quotient if dividend >= divisor */
|
/Linux-v6.6/arch/powerpc/boot/ |
D | div64.S | 7 * the 64-bit quotient, and r4 contains the divisor. 23 mullw r0,r7,r4 # quotient.hi = dividend.hi / divisor 40 2: mullw r10,r11,r4 # to get an estimate of the quotient, 44 subfe. r5,r9,r5 # quotient 52 4: stw r7,0(r3) # return the quotient in *r3
|
/Linux-v6.6/lib/crypto/mpi/ |
D | mpi-div.c | 97 /* Ensure space is enough for quotient and remainder. in mpi_tdiv_qr() 113 * numerator and quotient are the same. in mpi_tdiv_qr() 151 * numerator would be gradually overwritten by the quotient limbs. in mpi_tdiv_qr() 157 } else /* Put quotient at top of remainder. */ in mpi_tdiv_qr() 164 * numerator the same number of steps (to keep the quotient the same!). in mpi_tdiv_qr() 190 * temporary space if it overlaps with the quotient or remainder. in mpi_tdiv_qr()
|
D | mpih-div.c | 172 * the NSIZE-DSIZE least significant quotient limbs at QP 175 * other quotient limbs. 176 * Return the most significant limb of the quotient, this is always 0 or 1. 183 * possible to put the quotient in the high part of NUM, right after the 371 * Write DIVIDEND_SIZE limbs of quotient at QUOT_PTR.
|
D | mpi-pow.c | 82 /* Allocate (BSIZE + 1) with space for remainder and quotient. in mpi_powm() 83 * (The quotient is (bsize - msize + 1) limbs.) */ in mpi_powm() 88 /* We don't care about the quotient, store it above the remainder, in mpi_powm()
|
/Linux-v6.6/arch/m68k/ifpsp060/src/ |
D | ilsp.S | 77 # 0x10(sp) = pointer to location to place quotient/remainder # 80 # 0x10(sp) = points to location of remainder/quotient. # 81 # remainder is in first longword, quotient is in 2nd. # 204 eor.b %d0, NDIVIDEND(%a6) # chk if quotient is negative 221 # if the register numbers are the same, only the quotient gets saved. 222 # so, if we always save the quotient second, we save ourselves a cmp&beq 278 # The quotient is returned in %d6, remainder in %d5, unless the # 291 # In the general case, four quotient words would be created by 293 # the first two quotient words must be zero, or overflow would occur. 296 # the last two divisions to get a quotient longword and word remainder: [all …]
|
/Linux-v6.6/drivers/media/tuners/ |
D | max2165.c | 150 static int fixpt_div32(u32 dividend, u32 divisor, u32 *quotient, u32 *fraction) in fixpt_div32() argument 171 *quotient = q; in fixpt_div32() 182 u32 quotient, fraction; in max2165_set_rf() local 187 "ient, &fraction); in max2165_set_rf() 194 max2165_write_reg(priv, REG_NDIV_INT, quotient); in max2165_set_rf()
|
/Linux-v6.6/drivers/pmdomain/qcom/ |
D | cpr.c | 135 char *quotient; member 374 /* Program the step quotient and idle clocks */ in cpr_corner_restore() 379 /* Clear the target quotient value and gate count of all ROs */ in cpr_corner_restore() 698 * Clear the target quotient value and gate count of all in cpr_config() 900 /* Populate target quotient by scaling */ in cpr_fuse_corner_init() 901 ret = nvmem_cell_read_variable_le_u32(drv->dev, fuses->quotient, &fuse->quot); in cpr_fuse_corner_init() 1135 * Get the quotient adjustment scaling factor, according to: in cpr_corner_init() 1140 * QUOT(corner_N): quotient read from fuse for fuse corner N in cpr_corner_init() 1141 * QUOT(corner_N-1): quotient read from fuse for fuse corner (N - 1) in cpr_corner_init() 1147 * and calculate the quotient adjustment for each one using the in cpr_corner_init() [all …]
|
/Linux-v6.6/drivers/clk/qcom/ |
D | clk-alpha-pll.c | 576 u64 quotient; in alpha_pll_round_rate() local 578 quotient = rate; in alpha_pll_round_rate() 579 remainder = do_div(quotient, prate); in alpha_pll_round_rate() 580 *l = quotient; in alpha_pll_round_rate() 588 quotient = remainder << ALPHA_SHIFT(alpha_width); in alpha_pll_round_rate() 590 remainder = do_div(quotient, prate); in alpha_pll_round_rate() 593 quotient++; in alpha_pll_round_rate() 595 *a = quotient; in alpha_pll_round_rate() 783 u64 quotient; in alpha_huayra_pll_round_rate() local 785 quotient = rate; in alpha_huayra_pll_round_rate() [all …]
|
/Linux-v6.6/arch/sparc/kernel/ |
D | time_64.c | 821 unsigned long freq, quotient, tick; in init_tick_ops() local 824 quotient = clocksource_hz2mult(freq, SPARC64_NSEC_PER_CYC_SHIFT); in init_tick_ops() 827 ops->offset = (tick * quotient) >> SPARC64_NSEC_PER_CYC_SHIFT; in init_tick_ops() 828 ops->ticks_per_nsec_quotient = quotient; in init_tick_ops() 882 unsigned long quotient = tick_operations.ticks_per_nsec_quotient; in sched_clock() local 892 return ((get_tick() * quotient) >> SPARC64_NSEC_PER_CYC_SHIFT) - offset; in sched_clock()
|
/Linux-v6.6/arch/m68k/math-emu/ |
D | fp_emu.h | 56 #define fp_set_quotient(quotient) ({ \ argument 58 FPDATA->fpsr |= ((quotient) & 0xff) << 16; \
|
/Linux-v6.6/arch/powerpc/math-emu/ |
D | udivmodti4.c | 81 leading quotient digit q1 = 1). in _fp_udivmodti4() 138 quotient digit q0 = 0 or 1). in _fp_udivmodti4()
|
/Linux-v6.6/drivers/net/ethernet/stmicro/stmmac/ |
D | stmmac_ptp.c | 54 u32 quotient, reminder; in stmmac_adjust_time() local 66 quotient = div_u64_rem(delta, 1000000000ULL, &reminder); in stmmac_adjust_time() 67 sec = quotient; in stmmac_adjust_time()
|