Home
last modified time | relevance | path

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

/lib/
Dlru_cache.c39 #define PARANOIA_LC_ELEMENT(lc, e) do { \ argument
41 struct lc_element *e_ = (e); \
94 struct lc_element *e; in lc_create() local
138 e = p + e_off; in lc_create()
139 e->lc_index = i; in lc_create()
140 e->lc_number = LC_FREE; in lc_create()
141 e->lc_new_number = LC_FREE; in lc_create()
142 list_add(&e->list, &lc->free); in lc_create()
143 element[i] = e; in lc_create()
212 struct lc_element *e = lc->lc_element[i]; in lc_reset() local
[all …]
Dinflate.c140 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 …]
Dtest_hexdump.c167 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()
Ddecompress_unxz.c195 uint8_t *e = b + size; in memzero() local
197 while (b != e) in memzero()
Dbch.c649 unsigned int a, b, c, d, e = 0, f, a2, b2, c2, e4; in find_poly_deg4_roots() local
669 e = a_pow(bch, l/2); in find_poly_deg4_roots()
678 b = gf_mul(bch, a, e)^b; in find_poly_deg4_roots()
699 roots[i] = a_ilog(bch, f^e); in find_poly_deg4_roots()
DKconfig.kgdb115 catastrophic error, i.e. for a panic or oops.
Dlocking-selftest.c1182 #define dotest_rt(fn, e, m) dotest((fn), (e), (m)) argument
1184 #define dotest_rt(fn, e, m) argument
DKconfig.debug93 I.e., processors other than the first one may not boot up.
409 if the system crashes for example during kernel debugging (e.g., you
802 If you are doing generic system call fuzzing (like e.g. syzkaller),
804 say y here. If you are doing more targeted fuzzing (like e.g.
1105 If a deadlock is impossible (i.e. the locking rules, as
/lib/crypto/
Dsha256.c48 u32 a, b, c, d, e, f, g, h, t1, t2; in sha256_transform() local
62 e = state[4]; f = state[5]; g = state[6]; h = state[7]; in sha256_transform()
65 t1 = h + e1(e) + Ch(e, f, g) + 0x428a2f98 + W[0]; in sha256_transform()
67 t1 = g + e1(d) + Ch(d, e, f) + 0x71374491 + W[1]; in sha256_transform()
69 t1 = f + e1(c) + Ch(c, d, e) + 0xb5c0fbcf + W[2]; in sha256_transform()
71 t1 = e + e1(b) + Ch(b, c, d) + 0xe9b5dba5 + W[3]; in sha256_transform()
72 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; in sha256_transform()
74 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; in sha256_transform()
76 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; in sha256_transform()
78 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2; in sha256_transform()
[all …]
/lib/mpi/
Dmpi-pow.c152 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()
/lib/reed_solomon/
Dtest_rslib.c442 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/
Dlz4defs.h164 BYTE *const e = (BYTE *)dstEnd; in LZ4_wildCopy() local
170 } while (d < e); in LZ4_wildCopy()
/lib/zstd/
Dfse_decompress.c66 size_t const e = f; \
67 if (FSE_isError(e)) \
68 return e; \
Dzstd_internal.h47 #define CHECK_E(f, e) \ argument
51 return ERROR(e); \
Dhuf_compress.c56 #define CHECK_V_F(e, f) \ argument
57 size_t const e = f; \
58 if (ERR_isError(e)) \