Home
last modified time | relevance | path

Searched refs:h (Results 1 – 7 of 7) sorted by relevance

/lib/
Dinflate.c336 int h; /* table level */ in huft_build() local
442 h = -1; /* no tables yet--level -1 */ in huft_build()
462 h++; in huft_build()
487 if (h) in huft_build()
496 u[h] = ++q; /* table starts after link */ in huft_build()
500 if (h) in huft_build()
502 x[h] = i; /* save pattern for backing up */ in huft_build()
507 u[h-1][j] = r; /* connect to last table */ in huft_build()
541 while ((i & ((1 << w) - 1)) != x[h]) in huft_build()
543 h--; /* don't need to update q */ in huft_build()
[all …]
D.gitignore5 crc32table.h
DMakefile88 clean-files := crc32table.h
90 $(obj)/crc32.o: $(obj)/crc32table.h
95 $(obj)/crc32table.h: $(obj)/gen_crc32table
Dplist.c65 # define plist_check_head(h) do { } while (0) argument
DKconfig.debug109 __init, __devinit etc. (see full list in include/linux/init.h)
/lib/zlib_deflate/
Ddeftree.c418 int h; /* heap index */ in gen_bitlen() local
432 for (h = s->heap_max+1; h < HEAP_SIZE; h++) { in gen_bitlen()
433 n = s->heap[h]; in gen_bitlen()
474 m = s->heap[--h]; in gen_bitlen()
Ddeflate.c142 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask) argument