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.c123 int e, r; in test_hexdump_overflow() local
130 e = 50; in test_hexdump_overflow()
132 e = 2; in test_hexdump_overflow()
133 buf[e + 2] = '\0'; in test_hexdump_overflow()
136 a = r == e && buf[0] == ' '; in test_hexdump_overflow()
138 a = r == e && buf[0] == '\0'; in test_hexdump_overflow()
140 a = r == e && !strcmp(buf, t); in test_hexdump_overflow()
143 a = r == e && buf[l - 1] == '\0' && buf[l - 2] == ' '; in test_hexdump_overflow()
145 a = r == e && buf[50] == '\0' && buf[49] == '.'; in test_hexdump_overflow()
147 a = r == e && buf[e] == '\0'; 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.
367 if the system crashes for example during kernel debugging (e.g., you
1050 If a deadlock is impossible (i.e. the locking rules, as
/lib/lz4/
Dlz4defs.h108 #define LZ4_SECURECOPY(s, d, e) \ argument
110 if (d < e) { \
111 LZ4_WILDCOPY(s, d, e); \
149 #define LZ4_WILDCOPY(s, d, e) \ argument
152 } while (d < e)
156 u8 *e = (d) + l; \
157 LZ4_WILDCOPY(s, d, e); \
158 d = e; \
/lib/mpi/
Dmpi-pow.c166 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()