Searched refs:max_code (Results 1 – 4 of 4) sorted by relevance
/linux-2.6.39/lib/zlib_deflate/ |
D | deftree.c | 139 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 …]
|
D | defutil.h | 60 int max_code; /* largest code with non zero frequency */ member
|
/linux-2.6.39/net/ipv4/netfilter/ |
D | ip_tables.c | 2121 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 2126 (type == test_type && code >= min_code && code <= max_code)) in icmp_type_code_match()
|
/linux-2.6.39/net/ipv6/netfilter/ |
D | ip6_tables.c | 2135 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 2139 return (type == test_type && code >= min_code && code <= max_code) in icmp6_type_code_match()
|