From ca6003af1a7e1adb7d45879c2d5038bc05c2bb1a Mon Sep 17 00:00:00 2001 From: Ondrej Fabry Date: Fri, 2 Aug 2019 15:07:53 +0200 Subject: Migrate to modules, refactor Makefile and use Travis for CI - migrate to Go modules and remove vendor - refactor Makefile - add version package and store version - split extras from the rest - use travis for CI Change-Id: I81b35220653b0f7c9a0fcdd4c527d691ec1e96c1 Signed-off-by: Ondrej Fabry --- .../github.com/lunixbochs/struc/custom_float16.go | 78 ---------------------- 1 file changed, 78 deletions(-) delete mode 100644 vendor/github.com/lunixbochs/struc/custom_float16.go (limited to 'vendor/github.com/lunixbochs/struc/custom_float16.go') diff --git a/vendor/github.com/lunixbochs/struc/custom_float16.go b/vendor/github.com/lunixbochs/struc/custom_float16.go deleted file mode 100644 index 722be76..0000000 --- a/vendor/github.com/lunixbochs/struc/custom_float16.go +++ /dev/null @@ -1,78 +0,0 @@ -package struc - -import ( - "encoding/binary" - "io" - "math" - "strconv" -) - -type Float16 float64 - -func (f *Float16) Pack(p []byte, opt *Options) (int, error) { - order := opt.Order - if order == nil { - order = binary.BigEndian - } - sign := uint16(0) - if *f < 0 { - sign = 1 - } - var frac, exp uint16 - if math.IsInf(float64(*f), 0) { - exp = 0x1f - frac = 0 - } else if math.IsNaN(float64(*f)) { - exp = 0x1f - frac = 1 - } else { - bits := math.Float64bits(float64(*f)) - exp64 := (bits >> 52) & 0x7ff - if exp64 != 0 { - exp = uint16((exp64 - 1023 + 15) & 0x1f) - } - frac = uint16((bits >> 42) & 0x3ff) - } - var out uint16 - out |= sign << 15 - out |= exp << 10 - out |= frac & 0x3ff - order.PutUint16(p, out) - return 2, nil -} -func (f *Float16) Unpack(r io.Reader, length int, opt *Options) error { - order := opt.Order - if order == nil { - order = binary.BigEndian - } - var tmp [2]byte - if _, err := r.Read(tmp[:]); err != nil { - return err - } - val := order.Uint16(tmp[:2]) - sign := (val >> 15) & 1 - exp := int16((val >> 10) & 0x1f) - frac := val & 0x3ff - if exp == 0x1f { - if frac != 0 { - *f = Float16(math.NaN()) - } else { - *f = Float16(math.Inf(int(sign)*-2 + 1)) - } - } else { - var bits uint64 - bits |= uint64(sign) << 63 - bits |= uint64(frac) << 42 - if exp > 0 { - bits |= uint64(exp-15+1023) << 52 - } - *f = Float16(math.Float64frombits(bits)) - } - return nil -} -func (f *Float16) Size(opt *Options) int { - return 2 -} -func (f *Float16) String() string { - return strconv.FormatFloat(float64(*f), 'g', -1, 32) -} -- cgit 1.2.3-korg