Home | History | Annotate | Download | only in lzw

Lines Matching full:uint32

34 	// A code is a 12 bit value, stored as a uint32 when encoding to avoid
42 // A hash table entry is a uint32. Zero is an invalid entry since the
54 write func(*encoder, uint32) error
55 bits uint32
62 hi, overflow uint32
65 savedCode uint32
73 table [tableSize]uint32
77 func (e *encoder) writeLSB(c uint32) error {
91 func (e *encoder) writeMSB(c uint32) error {
118 clear := uint32(1) << e.litWidth
153 code, p = uint32(p[0]), p[1:]
157 literal := uint32(x)
219 eof := uint32(1)<<e.litWidth + 1
242 var write func(*encoder, uint32) error