Searched refs:quot (Results 51 - 57 of 57) sorted by path

123

/linux-master/include/linux/
H A Dserial_8250.h196 unsigned int quot, unsigned int quot_frac);
H A Dserial_core.h446 unsigned int quot,
/linux-master/lib/crypto/mpi/
H A Dmpi-div.c17 void mpi_tdiv_qr(MPI quot, MPI rem, MPI num, MPI den);
18 void mpi_fdiv_qr(MPI quot, MPI rem, MPI dividend, MPI divisor);
43 void mpi_fdiv_q(MPI quot, MPI dividend, MPI divisor) argument
45 MPI tmp = mpi_alloc(mpi_get_nlimbs(quot));
46 mpi_fdiv_qr(quot, tmp, dividend, divisor);
50 void mpi_fdiv_qr(MPI quot, MPI rem, MPI dividend, MPI divisor) argument
55 if (quot == divisor || rem == divisor) {
60 mpi_tdiv_qr(quot, rem, dividend, divisor);
63 mpi_sub_ui(quot, quot,
83 mpi_tdiv_qr(MPI quot, MPI rem, MPI num, MPI den) argument
[all...]
/linux-master/lib/math/
H A Ddiv64.c102 u64 quot; local
106 quot = div_u64_rem(dividend, divisor, &rem32);
110 quot = div_u64(dividend >> n, divisor >> n);
112 if (quot != 0)
113 quot--;
115 *remainder = dividend - quot * divisor;
117 quot++;
122 return quot;
142 u64 quot; local
145 quot
164 s64 quot, t; local
[all...]
/linux-master/tools/include/linux/
H A Dmath64.h66 u64 quot, rem; local
68 quot = a / c;
71 return quot * b + (rem * b) / c;
/linux-master/tools/perf/util/
H A Dintel-pt.c1202 u64 quot, rem; local
1204 quot = ns / pt->tc.time_mult;
1206 return (quot << pt->tc.time_shift) + (rem << pt->tc.time_shift) /
H A Dtsc.c20 u64 t, quot, rem; local
23 quot = t / tc->time_mult;
25 return (quot << tc->time_shift) +
31 u64 quot, rem; local
37 quot = cyc >> tc->time_shift;
39 return tc->time_zero + quot * tc->time_mult +

Completed in 395 milliseconds

123