Searched refs:pow2 (Results 1 – 7 of 7) sorted by relevance
/kernel/linux/linux-5.10/arch/mips/mm/ |
D | sc-rm7k.c | 189 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()
|
D | c-r4k.c | 1543 unsigned long flags, addr, begin, end, pow2; in probe_scache() local 1561 pow2 = (64 * 1024); in probe_scache() 1562 for (addr = begin; addr < end; addr = (begin + pow2)) { in probe_scache() 1565 pow2 <<= 1; in probe_scache() 1577 pow2 = (128 * 1024); in probe_scache() 1578 for (addr = begin + (128 * 1024); addr < end; addr = begin + pow2) { in probe_scache() 1583 pow2 <<= 1; in probe_scache()
|
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/hive_isp_css_include/ |
D | misc_support.h | 25 #define tot_bytes_for_pow2_align(pow2, cur_bytes) ((cur_bytes + (pow2 - 1)) & ~(pow2 - 1)) argument
|
/kernel/linux/linux-5.10/lib/mpi/ |
D | ec.c | 461 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 …]
|
/kernel/linux/linux-5.10/sound/soc/codecs/ |
D | pcm512x.c | 708 int pow2; in pcm512x_find_sck() local 717 pow2 = 1 << fls((pcm512x_pll_max(pcm512x) - 16000000) / bclk_rate); in pcm512x_find_sck() 718 for (; pow2; pow2 >>= 1) { in pcm512x_find_sck() 720 bclk_rate * pow2); in pcm512x_find_sck() 724 if (!pow2) { in pcm512x_find_sck()
|
/kernel/linux/linux-5.10/include/linux/ |
D | mpi.h | 244 void (*pow2)(MPI w, const MPI b, struct mpi_ec_ctx *ctx); member
|
/kernel/linux/patches/linux-5.10/yangfan_patch/ |
D | drivers.patch | 16516 + /* not pow2, so must go up to the next pow2 */
|