]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/ulikunitz/xz/bits.go
deps: github.com/hashicorp/terraform@sdk-v0.11-with-go-modules
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / ulikunitz / xz / bits.go
CommitLineData
15c0b25d
AP
1// Copyright 2014-2017 Ulrich Kunitz. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package xz
6
7import (
8 "errors"
9 "io"
10)
11
12// putUint32LE puts the little-endian representation of x into the first
13// four bytes of p.
14func putUint32LE(p []byte, x uint32) {
15 p[0] = byte(x)
16 p[1] = byte(x >> 8)
17 p[2] = byte(x >> 16)
18 p[3] = byte(x >> 24)
19}
20
21// putUint64LE puts the little-endian representation of x into the first
22// eight bytes of p.
23func putUint64LE(p []byte, x uint64) {
24 p[0] = byte(x)
25 p[1] = byte(x >> 8)
26 p[2] = byte(x >> 16)
27 p[3] = byte(x >> 24)
28 p[4] = byte(x >> 32)
29 p[5] = byte(x >> 40)
30 p[6] = byte(x >> 48)
31 p[7] = byte(x >> 56)
32}
33
34// uint32LE converts a little endian representation to an uint32 value.
35func uint32LE(p []byte) uint32 {
36 return uint32(p[0]) | uint32(p[1])<<8 | uint32(p[2])<<16 |
37 uint32(p[3])<<24
38}
39
40// putUvarint puts a uvarint representation of x into the byte slice.
41func putUvarint(p []byte, x uint64) int {
42 i := 0
43 for x >= 0x80 {
44 p[i] = byte(x) | 0x80
45 x >>= 7
46 i++
47 }
48 p[i] = byte(x)
49 return i + 1
50}
51
52// errOverflow indicates an overflow of the 64-bit unsigned integer.
53var errOverflowU64 = errors.New("xz: uvarint overflows 64-bit unsigned integer")
54
55// readUvarint reads a uvarint from the given byte reader.
56func readUvarint(r io.ByteReader) (x uint64, n int, err error) {
57 var s uint
58 i := 0
59 for {
60 b, err := r.ReadByte()
61 if err != nil {
62 return x, i, err
63 }
64 i++
65 if b < 0x80 {
66 if i > 10 || i == 10 && b > 1 {
67 return x, i, errOverflowU64
68 }
69 return x | uint64(b)<<s, i, nil
70 }
71 x |= uint64(b&0x7f) << s
72 s += 7
73 }
74}