Home
last modified time | relevance | path

Searched refs:exp (Results 1 – 5 of 5) sorted by relevance

/lib/
Dtest_bitmap.c219 static const unsigned long exp[] __initconst = { variable
243 {0, "0", &exp[0], 8, 0},
244 {0, "1", &exp[1 * step], 8, 0},
245 {0, "0-15", &exp[2 * step], 32, 0},
246 {0, "16-31", &exp[3 * step], 32, 0},
247 {0, "0-31:1/2", &exp[4 * step], 32, 0},
248 {0, "1-31:1/2", &exp[5 * step], 32, 0},
249 {0, "0-31:1/4", &exp[6 * step], 32, 0},
250 {0, "1-31:1/4", &exp[7 * step], 32, 0},
251 {0, "0-31:4/4", &exp[8 * step], 32, 0},
[all …]
Dtest-string_helpers.c340 const char *exp, in test_string_get_size_check() argument
345 if (!memcmp(res, exp, strlen(exp) + 1)) in test_string_get_size_check()
353 pr_warn("expected: '%s', got '%s'\n", exp, res); in test_string_get_size_check()
/lib/math/
Dint_pow.c19 u64 int_pow(u64 base, unsigned int exp) in int_pow() argument
23 while (exp) { in int_pow()
24 if (exp & 1) in int_pow()
26 exp >>= 1; in int_pow()
Dreciprocal_div.c64 R.exp = l; in reciprocal_value_adv()
/lib/mpi/
Dmpi-pow.c24 int mpi_powm(MPI res, MPI base, MPI exp, MPI mod) in mpi_powm() argument
41 esize = exp->nlimbs; in mpi_powm()
47 ep = exp->d; in mpi_powm()