Home
last modified time | relevance | path

Searched refs:pow2 (Results 1 – 7 of 7) sorted by relevance

/linux-6.1.9/arch/mips/mm/
Dsc-rm7k.c189 unsigned long flags, addr, begin, end, pow2; in __probe_tcache() local
200 pow2 = (256 * 1024); in __probe_tcache()
201 for (addr = begin; addr <= end; addr = (begin + pow2)) { in __probe_tcache()
204 pow2 <<= 1; in __probe_tcache()
213 pow2 = (512 * 1024); in __probe_tcache()
214 for (addr = begin + (512 * 1024); addr <= end; addr = begin + pow2) { in __probe_tcache()
218 pow2 <<= 1; in __probe_tcache()
Dc-r4k.c1498 unsigned long flags, addr, begin, end, pow2; in probe_scache() local
1516 pow2 = (64 * 1024); in probe_scache()
1517 for (addr = begin; addr < end; addr = (begin + pow2)) { in probe_scache()
1520 pow2 <<= 1; in probe_scache()
1532 pow2 = (128 * 1024); in probe_scache()
1533 for (addr = begin + (128 * 1024); addr < end; addr = begin + pow2) { in probe_scache()
1538 pow2 <<= 1; in probe_scache()
/linux-6.1.9/drivers/staging/media/atomisp/pci/hive_isp_css_include/
Dmisc_support.h25 #define tot_bytes_for_pow2_align(pow2, cur_bytes) ((cur_bytes + (pow2 - 1)) & ~(pow2 - 1)) argument
/linux-6.1.9/lib/mpi/
Dec.c461 void (*pow2)(MPI w, const MPI b, struct mpi_ec_ctx *ctx); member
614 ctx->pow2 = ec_pow2; in mpi_ec_init()
628 ctx->pow2 = field_table[i].pow2; in mpi_ec_init()
863 ctx->pow2(B, B, ctx); in dup_point_edwards()
867 ctx->pow2(C, X1, ctx); in dup_point_edwards()
868 ctx->pow2(D, Y1, ctx); in dup_point_edwards()
880 ctx->pow2(H, Z1, ctx); in dup_point_edwards()
1099 ctx->pow2(B, A, ctx); in add_points_edwards()
1173 ctx->pow2(p1->x, prd->x, ctx); in montgomery_ladder()
1174 ctx->pow2(p1->z, p1->z, ctx); in montgomery_ladder()
[all …]
/linux-6.1.9/sound/soc/codecs/
Dpcm512x.c710 int pow2; in pcm512x_find_sck() local
719 pow2 = 1 << fls((pcm512x_pll_max(pcm512x) - 16000000) / bclk_rate); in pcm512x_find_sck()
720 for (; pow2; pow2 >>= 1) { in pcm512x_find_sck()
722 bclk_rate * pow2); in pcm512x_find_sck()
726 if (!pow2) { in pcm512x_find_sck()
/linux-6.1.9/include/linux/
Dmpi.h244 void (*pow2)(MPI w, const MPI b, struct mpi_ec_ctx *ctx); member
/linux-6.1.9/drivers/gpu/drm/i915/
Di915_request.c1667 bool pow2 = is_power_of_2(READ_ONCE(prev->engine)->mask | in __i915_request_ensure_ordering() local
1681 if ((same_context && uses_guc) || (!uses_guc && pow2)) in __i915_request_ensure_ordering()