/lib/ |
D | lru_cache.c | 39 #define PARANOIA_LC_ELEMENT(lc, e) do { \ argument 41 struct lc_element *e_ = (e); \ 95 struct lc_element *e; in lc_create() local 139 e = p + e_off; in lc_create() 140 e->lc_index = i; in lc_create() 141 e->lc_number = LC_FREE; in lc_create() 142 e->lc_new_number = LC_FREE; in lc_create() 143 list_add(&e->list, &lc->free); in lc_create() 144 element[i] = e; in lc_create() 213 struct lc_element *e = lc->lc_element[i]; in lc_reset() local [all …]
|
D | inflate.c | 140 uch e; /* number of extra bits or operation */ member 327 const ush *e, /* list of extra bits for non-simple codes */ in huft_build() argument 508 r.e = (uch)(16 + j); /* bits in this table */ in huft_build() 520 r.e = 99; /* out of values--invalid code */ in huft_build() 523 r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ in huft_build() 529 r.e = (uch)e[*p - s]; /* non-simple--look up in lists */ in huft_build() 598 register unsigned e; /* table entry flag/number of extra bits */ in inflate_codes() local 618 if ((e = (t = tl + ((unsigned)b & ml))->e) > 16) in inflate_codes() 620 if (e == 99) in inflate_codes() 623 e -= 16; in inflate_codes() [all …]
|
D | cmdline_kunit.c | 108 unsigned int n, const int *e) in cmdline_do_one_range_test() argument 116 KUNIT_EXPECT_EQ_MSG(test, r[0], e[0], "in test %u (parsed) expected %d numbers, got %d", in cmdline_do_one_range_test() 117 n, e[0], r[0]); in cmdline_do_one_range_test() 119 KUNIT_EXPECT_EQ_MSG(test, r[i], e[i], "in test %u at %u", n, i); in cmdline_do_one_range_test() 123 KUNIT_EXPECT_EQ_MSG(test, r[0], e[0], "in test %u (validated) expected %d numbers, got %d", in cmdline_do_one_range_test() 124 n, e[0], r[0]); in cmdline_do_one_range_test() 136 const int *e = cmdline_test_range_values[i]; in cmdline_test_range() local 138 cmdline_do_one_range_test(test, str, i, e); in cmdline_test_range()
|
D | test_fpu.c | 30 volatile double a, b, c, d, e, f, g; in test_fpu() local 40 e = a + b / 2; in test_fpu() 48 if (d > a && e > a && g > a) in test_fpu()
|
D | test_hexdump.c | 167 int ae, he, e, f, r; in test_hexdump_overflow() local 184 e = ae; in test_hexdump_overflow() 186 e = he; in test_hexdump_overflow() 188 f = min_t(int, e + 1, buflen); in test_hexdump_overflow() 195 a = r == e && !memcmp(test, buf, TEST_HEXDUMP_BUF_SIZE); in test_hexdump_overflow() 203 pr_err("Expect: %d '%s'\n", e, test); in test_hexdump_overflow()
|
D | decompress_unxz.c | 195 uint8_t *e = b + size; in memzero() local 197 while (b != e) in memzero()
|
D | bch.c | 706 unsigned int a, b, c, d, e = 0, f, a2, b2, c2, e4; in find_poly_deg4_roots() local 726 e = a_pow(bch, l/2); in find_poly_deg4_roots() 735 b = gf_mul(bch, a, e)^b; in find_poly_deg4_roots() 756 roots[i] = a_ilog(bch, f^e); in find_poly_deg4_roots()
|
D | Kconfig.kgdb | 135 catastrophic error, i.e. for a panic or oops.
|
D | locking-selftest.c | 1446 #define dotest_rt(fn, e, m) dotest((fn), (e), (m)) argument 1448 #define dotest_rt(fn, e, m) argument
|
D | Kconfig.kcsan | 139 watchpoint is set up, i.e. one in KCSAN_WATCH_SKIP per-CPU
|
D | Kconfig.debug | 104 I.e., processors other than the first one may not boot up. 517 if the system crashes for example during kernel debugging (e.g., you 1291 If a deadlock is impossible (i.e. the locking rules, as 2034 If you are doing generic system call fuzzing (like e.g. syzkaller), 2036 say y here. If you are doing more targeted fuzzing (like e.g.
|
/lib/crypto/ |
D | sha256.c | 66 #define SHA256_ROUND(i, a, b, c, d, e, f, g, h) do { \ argument 68 t1 = h + e1(e) + Ch(e, f, g) + SHA256_K[i] + W[i]; \ 76 u32 a, b, c, d, e, f, g, h; in sha256_transform() local 105 e = state[4]; f = state[5]; g = state[6]; h = state[7]; in sha256_transform() 109 SHA256_ROUND(i + 0, a, b, c, d, e, f, g, h); in sha256_transform() 110 SHA256_ROUND(i + 1, h, a, b, c, d, e, f, g); in sha256_transform() 111 SHA256_ROUND(i + 2, g, h, a, b, c, d, e, f); in sha256_transform() 112 SHA256_ROUND(i + 3, f, g, h, a, b, c, d, e); in sha256_transform() 113 SHA256_ROUND(i + 4, e, f, g, h, a, b, c, d); in sha256_transform() 114 SHA256_ROUND(i + 5, d, e, f, g, h, a, b, c); in sha256_transform() [all …]
|
D | Kconfig | 23 fallback, e.g., for SIMD implementations. If no arch specific 39 fallback, e.g., for SIMD implementations. If no arch specific 65 fallback, e.g., for SIMD implementations. If no arch specific 101 fallback, e.g., for SIMD implementations. If no arch specific
|
D | curve25519-hacl64.c | 771 u8 e[32] __aligned(32) = { 0 }; in curve25519_generic() local 773 memcpy(e, secret, 32); in curve25519_generic() 774 curve25519_clamp_secret(e); in curve25519_generic() 775 scalar = e; in curve25519_generic() 785 memzero_explicit(e, sizeof(e)); in curve25519_generic()
|
D | curve25519-fiat32.c | 764 u8 e[32]; in curve25519_generic() local 766 memcpy(e, scalar, 32); in curve25519_generic() 767 curve25519_clamp_secret(e); in curve25519_generic() 814 unsigned b = 1 & (e[pos / 8] >> (pos & 7)); in curve25519_generic() 863 memzero_explicit(&e, sizeof(e)); in curve25519_generic()
|
/lib/mpi/ |
D | mpi-pow.c | 152 mpi_limb_t e; in mpi_powm() local 162 e = ep[i]; in mpi_powm() 163 c = count_leading_zeros(e); in mpi_powm() 164 e = (e << c) << 1; /* shift the exp bits to the left, lose msb */ in mpi_powm() 215 if ((mpi_limb_signed_t) e < 0) { in mpi_powm() 243 e <<= 1; in mpi_powm() 251 e = ep[i]; in mpi_powm()
|
D | ec.c | 149 static void ec_powm(MPI w, const MPI b, const MPI e, in ec_powm() argument 152 mpi_powm(w, b, e, ctx->p); in ec_powm()
|
/lib/reed_solomon/ |
D | test_rslib.c | 442 static int run_exercise(struct etab *e) in run_exercise() argument 444 int nn = (1 << e->symsize) - 1; in run_exercise() 445 int kk = nn - e->nroots; in run_exercise() 453 rsc = init_rs(e->symsize, e->genpoly, e->fcs, e->prim, e->nroots); in run_exercise() 475 retval |= exercise_rs(rsc, ws, len, e->ntrials); in run_exercise() 477 retval |= exercise_rs_bc(rsc, ws, len, e->ntrials); in run_exercise()
|
/lib/lz4/ |
D | lz4defs.h | 175 BYTE *const e = (BYTE *)dstEnd; in LZ4_wildCopy() local 181 } while (d < e); in LZ4_wildCopy()
|
/lib/zstd/ |
D | zstd_internal.h | 47 #define CHECK_E(f, e) \ argument 51 return ERROR(e); \
|
D | huf_compress.c | 56 #define CHECK_V_F(e, f) \ argument 57 size_t const e = f; \ 58 if (ERR_isError(e)) \
|