Home
last modified time | relevance | path

Searched refs:max_code (Results 1 – 5 of 5) sorted by relevance

/linux-3.4.99/lib/zlib_deflate/
Ddeftree.c139 static void gen_codes (ct_data *tree, int max_code, ush *bl_count);
141 static void scan_tree (deflate_state *s, ct_data *tree, int max_code);
142 static void send_tree (deflate_state *s, ct_data *tree, int max_code);
413 int max_code = desc->max_code; in gen_bitlen() local
439 if (n > max_code) continue; /* not a leaf node */ in gen_bitlen()
475 if (m > max_code) continue; in gen_bitlen()
497 int max_code, /* largest code with non zero frequency */ in gen_codes() argument
517 Tracev((stderr,"\ngen_codes: max_code %d ", max_code)); in gen_codes()
519 for (n = 0; n <= max_code; n++) { in gen_codes()
547 int max_code = -1; /* largest code with non zero frequency */ in build_tree() local
[all …]
Ddefutil.h60 int max_code; /* largest code with non zero frequency */ member
/linux-3.4.99/drivers/input/misc/
Dtwl6040-vibra.c137 int vpk, max_code; in twl6040_vibra_code() local
145 max_code = vpk / 50; in twl6040_vibra_code()
146 if (max_code > TWL6040_VIBDAT_MAX) in twl6040_vibra_code()
147 max_code = TWL6040_VIBDAT_MAX; in twl6040_vibra_code()
150 vibdat = (u8)((speed * max_code) / USHRT_MAX); in twl6040_vibra_code()
/linux-3.4.99/net/ipv6/netfilter/
Dip6_tables.c2127 icmp6_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code, in icmp6_type_code_match() argument
2131 return (type == test_type && code >= min_code && code <= max_code) in icmp6_type_code_match()
/linux-3.4.99/net/ipv4/netfilter/
Dip_tables.c2119 icmp_type_code_match(u_int8_t test_type, u_int8_t min_code, u_int8_t max_code, in icmp_type_code_match() argument
2124 (type == test_type && code >= min_code && code <= max_code)) in icmp_type_code_match()