/lib/ |
D | lru_cache.c | 51 #define PARANOIA_LC_ELEMENT(lc, e) do { \ argument 53 struct lc_element *e_ = (e); \ 106 struct lc_element *e; in lc_create() local 150 e = p + e_off; in lc_create() 151 e->lc_index = i; in lc_create() 152 e->lc_number = LC_FREE; in lc_create() 153 e->lc_new_number = LC_FREE; in lc_create() 154 list_add(&e->list, &lc->free); in lc_create() 155 element[i] = e; in lc_create() 224 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 | test_hexdump.c | 149 int ae, he, e, f, r; in test_hexdump_overflow() local 166 e = ae; in test_hexdump_overflow() 168 e = he; in test_hexdump_overflow() 170 f = min_t(int, e + 1, buflen); in test_hexdump_overflow() 177 a = r == e && !memcmp(test, buf, TEST_HEXDUMP_BUF_SIZE); in test_hexdump_overflow() 185 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 | 639 unsigned int a, b, c, d, e = 0, f, a2, b2, c2, e4; in find_poly_deg4_roots() local 659 e = a_pow(bch, l/2); in find_poly_deg4_roots() 668 b = gf_mul(bch, a, e)^b; in find_poly_deg4_roots() 689 roots[i] = a_ilog(bch, f^e); in find_poly_deg4_roots()
|
D | Kconfig.kgdb | 114 catastrophic error, i.e. for a panic or oops.
|
D | locking-selftest.c | 1182 #define dotest_rt(fn, e, m) dotest((fn), (e), (m)) argument 1184 #define dotest_rt(fn, e, m) argument
|
D | Kconfig.debug | 62 I.e., processors other than the first one may not boot up. 406 if the system crashes for example during kernel debugging (e.g., you 765 If you are doing generic system call fuzzing (like e.g. syzkaller), 767 say y here. If you are doing more targeted fuzzing (like e.g. 1119 If a deadlock is impossible (i.e. the locking rules, as
|
/lib/mpi/ |
D | mpi-pow.c | 166 mpi_limb_t e; in mpi_powm() local 176 e = ep[i]; in mpi_powm() 177 c = count_leading_zeros(e); in mpi_powm() 178 e = (e << c) << 1; /* shift the exp bits to the left, lose msb */ in mpi_powm() 229 if ((mpi_limb_signed_t) e < 0) { in mpi_powm() 257 e <<= 1; in mpi_powm() 265 e = ep[i]; in mpi_powm()
|
/lib/lz4/ |
D | lz4defs.h | 159 BYTE *const e = (BYTE *)dstEnd; in LZ4_wildCopy() local 165 } while (d < e); in LZ4_wildCopy()
|
/lib/zstd/ |
D | fse_decompress.c | 66 size_t const e = f; \ 67 if (FSE_isError(e)) \ 68 return e; \
|
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)) \
|