Searched refs:n_lo (Results 1 - 5 of 5) sorted by relevance

/linux-master/arch/x86/include/asm/
H A Dacenv.h42 #define ACPI_DIV_64_BY_32(n_hi, n_lo, d32, q32, r32) \
46 "0"(n_lo), "1"(n_hi))
48 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \
51 : "=r"(n_hi), "=r"(n_lo) \
52 : "0"(n_hi), "1"(n_lo))
/linux-master/include/acpi/platform/
H A Daclinuxex.h18 #define ACPI_DIV_64_BY_32(n_hi, n_lo, d32, q32, r32) \
20 u64 (__n) = ((u64) n_hi) << 32 | (n_lo); \
27 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \
29 (n_lo) >>= 1; \
30 (n_lo) |= (((n_hi) & 1) << 31); \
/linux-master/include/asm-generic/
H A Ddiv64.h175 uint32_t n_lo = n; local
181 res = ((uint64_t)m_lo * n_lo) >> 32;
184 res = (m + (uint64_t)m_lo * n_lo) >> 32;
186 res = m + (uint64_t)m_lo * n_lo;
195 res += (uint64_t)m_hi * n_lo;
200 res += (uint64_t)m_hi * n_lo;
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/clk/
H A Dgk20a.c551 u32 n_lo; local
554 n_lo = gk20a_pllg_n_lo(clk, &pll);
555 gk20a_pllg_slide(clk, n_lo);
H A Dgm20b.c728 u32 n_lo; local
731 n_lo = gk20a_pllg_n_lo(&clk->base, &pll);
732 gm20b_pllg_slide(clk, n_lo);

Completed in 134 milliseconds