Searched refs:tp (Results 1 – 4 of 4) sorted by relevance
/lib/ |
D | test_bitfield.c | 12 #define CHECK_ENC_GET_U(tp, v, field, res) do { \ argument 14 u##tp _res; \ 16 _res = u##tp##_encode_bits(v, field); \ 18 pr_warn("u" #tp "_encode_bits(" #v ", " #field ") is 0x%llx != " #res "\n",\ 22 if (u##tp##_get_bits(_res, field) != v) \ 27 #define CHECK_ENC_GET_LE(tp, v, field, res) do { \ argument 29 __le##tp _res; \ 31 _res = le##tp##_encode_bits(v, field); \ 32 if (_res != cpu_to_le##tp(res)) { \ 33 pr_warn("le" #tp "_encode_bits(" #v ", " #field ") is 0x%llx != 0x%llx\n",\ [all …]
|
/lib/mpi/ |
D | mpih-mul.c | 343 if (!ctx->tp || ctx->tp_size < vsize) { in mpihelp_mul_karatsuba_case() 344 if (ctx->tp) in mpihelp_mul_karatsuba_case() 345 mpi_free_limb_space(ctx->tp); in mpihelp_mul_karatsuba_case() 346 ctx->tp = mpi_alloc_limb_space(2 * vsize); in mpihelp_mul_karatsuba_case() 347 if (!ctx->tp) { in mpihelp_mul_karatsuba_case() 357 MPN_MUL_N_RECURSE(ctx->tp, up, vp, vsize, ctx->tspace); in mpihelp_mul_karatsuba_case() 358 cy = mpihelp_add_n(prodp, prodp, ctx->tp, vsize); in mpihelp_mul_karatsuba_case() 359 mpihelp_add_1(prodp + vsize, ctx->tp + vsize, vsize, in mpihelp_mul_karatsuba_case() 397 if (ctx->tp) in mpihelp_release_karatsuba_ctx() 398 mpi_free_limb_space(ctx->tp); in mpihelp_release_karatsuba_ctx() [all …]
|
D | mpi-pow.c | 179 mpi_ptr_t tp; in mpi_powm() local 210 tp = rp; in mpi_powm() 212 xp = tp; in mpi_powm() 238 tp = rp; in mpi_powm() 240 xp = tp; in mpi_powm()
|
D | mpi-internal.h | 123 mpi_ptr_t tp; member
|