(data []byte, offset int)
| 329 | } |
| 330 | |
| 331 | func readLE32(data []byte, offset int) uint32 { |
| 332 | if offset < 0 || offset+4 > len(data) { |
| 333 | return 0 |
| 334 | } |
| 335 | return binary.LittleEndian.Uint32(data[offset : offset+4]) |
| 336 | } |
| 337 | |
| 338 | // Hand-written commonData decoding functions. Each extracts the original values |
| 339 | // from the 6-bit commonData that were packed by the corresponding |
no test coverage detected