github.com/klauspost/compress/zstd.Header.DictionaryID (field)

5 uses

	github.com/klauspost/compress/zstd (current package)
		decodeheader.go#L29: 	DictionaryID uint32
		decodeheader.go#L169: 			h.DictionaryID = uint32(b[0])
		decodeheader.go#L171: 			h.DictionaryID = uint32(b[0]) | (uint32(b[1]) << 8)
		decodeheader.go#L173: 			h.DictionaryID = uint32(b[0]) | (uint32(b[1]) << 8) | (uint32(b[2]) << 16) | (uint32(b[3]) << 24)
		decodeheader.go#L258: 		DictID:        h.DictionaryID,