OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:code_t
(Results
1 - 1
of
1
) sorted by null
/external/zlib/src/examples/
enough.c
95
needed to represent the symbols in a flat code. The
code_t
type identifies
108
typedef unsigned long long
code_t
; /* type for bit pattern counting */
typedef
231
most = (((
code_t
)left << (max - len)) - syms) /
232
(((
code_t
)1 << (max - len)) - 1);
367
most = (((
code_t
)left << (max - len)) - syms) /
368
(((
code_t
)1 << (max - len)) - 1);
489
/* determine the number of bits in a
code_t
*/
491
while (((
code_t
)1 << n) != 0)
495
if (max > n || syms - 2 >= (((
code_t
)0 - 1) >> (max - 1))) {
501
if (syms - 1 > ((
code_t
)1 << max) - 1)
[
all
...]
Completed in 1655 milliseconds