/lib/fonts/ |
D | fonts.c | 120 const struct font_desc *f, *g; in get_default_font() local 125 f = fonts[i]; in get_default_font() 126 c = f->pref; in get_default_font() 129 if (MACH_IS_AMIGA && f->idx == PEARL8x8_IDX) in get_default_font() 133 if (MACH_IS_MAC && xres < 640 && f->idx == VGA6x11_IDX) in get_default_font() 137 if ((yres < 400) == (f->height <= 8)) in get_default_font() 140 if ((font_w & (1 << (f->width - 1))) && in get_default_font() 141 (font_h & (1 << (f->height - 1)))) in get_default_font() 146 g = f; in get_default_font()
|
/lib/ |
D | bch.c | 639 unsigned int a, b, c, d, e = 0, f, a2, b2, c2, e4; in find_poly_deg4_roots() local 656 f = gf_div(bch, c, a); in find_poly_deg4_roots() 657 l = a_log(bch, f); in find_poly_deg4_roots() 667 d = a_pow(bch, 2*l)^gf_mul(bch, b, f)^d; in find_poly_deg4_roots() 688 f = a ? gf_inv(bch, roots[i]) : roots[i]; in find_poly_deg4_roots() 689 roots[i] = a_ilog(bch, f^e); in find_poly_deg4_roots() 796 const struct gf_poly *f, struct gf_poly *z, in compute_trace_bk_mod() argument 808 memset(out, 0, GF_POLY_SZ(f->deg)); in compute_trace_bk_mod() 811 gf_poly_logrep(bch, f, bch->cache); in compute_trace_bk_mod() 826 gf_poly_mod(bch, z, f, bch->cache); in compute_trace_bk_mod() [all …]
|
D | kstrtox.c | 388 #define kstrto_from_user(f, g, type) \ argument 389 int f(const char __user *s, size_t count, unsigned int base, type *res) \ 400 EXPORT_SYMBOL(f)
|
D | inflate.c | 337 unsigned f; /* i repeats in table every f entries */ in huft_build() local 470 if ((f = 1 << (j = k - w)) > a + 1) /* try a k-w bit table */ in huft_build() 473 f -= a + 1; /* deduct codes from patterns left */ in huft_build() 478 if ((f <<= 1) <= *++xp) in huft_build() 480 f -= *xp; /* else deduct codes from patterns */ in huft_build() 534 f = 1 << (k - w); in huft_build() 535 for (j = i >> w; j < z; j += f) in huft_build()
|
D | halfmd4.c | 17 #define ROUND(f, a, b, c, d, x, s) \ argument 18 (a += f(b, c, d) + x, a = rol32(a, s))
|
D | test_firmware.c | 25 static ssize_t test_fw_misc_read(struct file *f, char __user *buf, in test_fw_misc_read() argument
|
D | md5.c | 10 #define MD5STEP(f, w, x, y, z, in, s) \ argument 11 (w += f(x, y, z) + in, w = (w<<s | w>>(32-s)) + x)
|
/lib/xz/ |
D | xz_dec_test.c | 64 static int xz_dec_test_open(struct inode *i, struct file *f) in xz_dec_test_open() argument 83 static int xz_dec_test_release(struct inode *i, struct file *f) in xz_dec_test_release() argument
|
/lib/zlib_deflate/ |
D | deftree.c | 422 ush f; /* frequency */ in gen_bitlen() local 444 f = tree[n].Freq; in gen_bitlen() 445 s->opt_len += (ulg)f * (bits + xbits); in gen_bitlen() 446 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits); in gen_bitlen()
|