Searched refs:e (Results 1 – 8 of 8) sorted by relevance
/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 | 139 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 …]
|
D | decompress_unxz.c | 195 uint8_t *e = b + size; in memzero() local 197 while (b != e) in memzero()
|
D | Kconfig.kgdb | 89 catastrophic error, i.e. for a panic or oops.
|
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.debug | 60 if the system crashes for example during kernel debugging (e.g., you 607 If a deadlock is impossible (i.e. the locking rules, as 893 I.e., processors other than the first one may not boot up.
|
/lib/lz4/ |
D | lz4defs.h | 102 #define LZ4_SECURECOPY(s, d, e) \ argument 104 if (d < e) { \ 105 LZ4_WILDCOPY(s, d, e); \ 146 #define LZ4_WILDCOPY(s, d, e) \ argument 149 } while (d < e) 153 u8 *e = (d) + l; \ 154 LZ4_WILDCOPY(s, d, e); \ 155 d = e; \
|
/lib/mpi/ |
D | mpi-pow.c | 159 mpi_limb_t e; in mpi_powm() local 171 e = ep[i]; in mpi_powm() 172 c = count_leading_zeros(e); in mpi_powm() 173 e = (e << c) << 1; /* shift the exp bits to the left, lose msb */ in mpi_powm() 224 if ((mpi_limb_signed_t) e < 0) { in mpi_powm() 252 e <<= 1; in mpi_powm() 259 e = ep[i]; in mpi_powm()
|