func github.com/klauspost/compress/internal/le.Load32

12 uses

	github.com/klauspost/compress/internal/le (current package)
		unsafe_enabled.go#L26: func Load32[I Indexer](b []byte, i I) uint32 {

	github.com/klauspost/compress/flate
		deflate.go#L366: 	return hash4u(le.Load32(b, 0), hashBits)
		deflate.go#L381: 	hb := le.Load32(b, 0)
		fast_encoder.go#L62: 	return le.Load32(b, i)
		stateless.go#L169: 	return le.Load32(b, i)

	github.com/klauspost/compress/huff0
		bitreader.go#L70: 	low := le.Load32(b.in, b.off-4)
		bitreader.go#L90: 		low := le.Load32(b.in, b.off-4)
		bitreader.go#L177: 	low := le.Load32(b.in, b.off-4)
		bitreader.go#L196: 		low := le.Load32(b.in, b.off-4)

	github.com/klauspost/compress/zstd
		bitreader.go#L74: 	b.value = (b.value << 32) | uint64(le.Load32(b.in, b.cursor))
		bitreader.go#L92: 		b.value = (b.value << 32) | uint64(le.Load32(b.in, b.cursor))
		zstd.go#L114: 	return le.Load32(b, i)