Home
last modified time | relevance | path

Searched refs:e (Results 1 – 9 of 9) sorted by relevance

/lib/
Dlru_cache.c51 #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 …]
Dinflate.c139 uch e; /* number of extra bits or operation */ member
326 const ush *e, /* list of extra bits for non-simple codes */ in huft_build() argument
507 r.e = (uch)(16 + j); /* bits in this table */ in huft_build()
519 r.e = 99; /* out of values--invalid code */ in huft_build()
522 r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ in huft_build()
528 r.e = (uch)e[*p - s]; /* non-simple--look up in lists */ in huft_build()
597 register unsigned e; /* table entry flag/number of extra bits */ in inflate_codes() local
617 if ((e = (t = tl + ((unsigned)b & ml))->e) > 16) in inflate_codes()
619 if (e == 99) in inflate_codes()
622 e -= 16; in inflate_codes()
[all …]
Dtest_hexdump.c149 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()
Ddecompress_unxz.c195 uint8_t *e = b + size; in memzero() local
197 while (b != e) in memzero()
Dbch.c639 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()
DKconfig.kgdb114 catastrophic error, i.e. for a panic or oops.
DKconfig.debug43 I.e., processors other than the first one may not boot up.
381 if the system crashes for example during kernel debugging (e.g., you
729 If you are doing generic system call fuzzing (like e.g. syzkaller),
731 say y here. If you are doing more targeted fuzzing (like e.g.
1084 If a deadlock is impossible (i.e. the locking rules, as
/lib/lz4/
Dlz4defs.h106 #define LZ4_SECURECOPY(s, d, e) \ argument
108 if (d < e) { \
109 LZ4_WILDCOPY(s, d, e); \
147 #define LZ4_WILDCOPY(s, d, e) \ argument
150 } while (d < e)
154 u8 *e = (d) + l; \
155 LZ4_WILDCOPY(s, d, e); \
156 d = e; \
/lib/mpi/
Dmpi-pow.c165 mpi_limb_t e; in mpi_powm() local
177 e = ep[i]; in mpi_powm()
178 c = count_leading_zeros(e); in mpi_powm()
179 e = (e << c) << 1; /* shift the exp bits to the left, lose msb */ in mpi_powm()
230 if ((mpi_limb_signed_t) e < 0) { in mpi_powm()
258 e <<= 1; in mpi_powm()
266 e = ep[i]; in mpi_powm()