Searched refs:l2 (Results 1 – 4 of 4) sorted by relevance
/lib/ |
D | string.c | 835 size_t l1, l2; in strstr() local 837 l2 = strlen(s2); in strstr() 838 if (!l2) in strstr() 841 while (l1 >= l2) { in strstr() 843 if (!memcmp(s1, s2, l2)) in strstr() 861 size_t l2; in strnstr() local 863 l2 = strlen(s2); in strnstr() 864 if (!l2) in strnstr() 866 while (len >= l2) { in strnstr() 868 if (!memcmp(s1, s2, l2)) in strnstr()
|
D | bch.c | 630 int n = 0, i, l0, l1, l2; in find_poly_deg2_roots() local 637 l2 = bch->a_log_tab[poly->c[2]]; in find_poly_deg2_roots() 640 u = a_pow(bch, l0+l2+2*(GF_N(bch)-l1)); in find_poly_deg2_roots() 658 bch->a_log_tab[r]+l2); in find_poly_deg2_roots() 660 bch->a_log_tab[r^1]+l2); in find_poly_deg2_roots()
|
D | btree.c | 103 static int longcmp(const unsigned long *l1, const unsigned long *l2, size_t n) in longcmp() argument 108 if (l1[i] < l2[i]) in longcmp() 110 if (l1[i] > l2[i]) in longcmp()
|
/lib/mpi/ |
D | ec.c | 766 #define l2 (ctx->t.scratch[4]) in dup_point_weierstrass() macro 802 ec_mulm(l2, t2, point->x, ctx); in dup_point_weierstrass() 803 ec_mulm(l2, l2, mpi_const(MPI_C_FOUR), ctx); in dup_point_weierstrass() 808 ec_mul2(t1, l2, ctx); in dup_point_weierstrass() 817 ec_subm(y3, l2, x3, ctx); in dup_point_weierstrass() 829 #undef l2 in dup_point_weierstrass() 948 #define l2 (ctx->t.scratch[1]) in add_points_weierstrass() macro 985 mpi_set(l2, x2); in add_points_weierstrass() 987 ec_pow2(l2, z1, ctx); in add_points_weierstrass() 988 ec_mulm(l2, l2, x2, ctx); in add_points_weierstrass() [all …]
|