• Home
  • Raw
  • Download

Lines Matching +full:- +full:- +full:force

21 // GetByte decodes a little-endian byte from a byte slice.
26 // GetBool decodes a little-endian bool from a byte slice.
31 // GetUint8 decodes a little-endian uint8 from a byte slice.
37 // GetUint16 decodes a little-endian uint16 from a byte slice.
39 _ = buf[1] // Force one bounds check. See: golang.org/issue/14808
45 // GetUint32 decodes a little-endian uint32 from a byte slice.
47 _ = buf[3] // Force one bounds check. See: golang.org/issue/14808
55 // GetUint64 decodes a little-endian uint64 from a byte slice.
57 _ = buf[7] // Force one bounds check. See: golang.org/issue/14808
69 // GetInt8 decodes a little-endian int8 from a byte slice.
75 // GetInt16 decodes a little-endian int16 from a byte slice.
77 _ = buf[1] // Force one bounds check. See: golang.org/issue/14808
83 // GetInt32 decodes a little-endian int32 from a byte slice.
85 _ = buf[3] // Force one bounds check. See: golang.org/issue/14808
93 // GetInt64 decodes a little-endian int64 from a byte slice.
95 _ = buf[7] // Force one bounds check. See: golang.org/issue/14808
107 // GetFloat32 decodes a little-endian float32 from a byte slice.
113 // GetFloat64 decodes a little-endian float64 from a byte slice.
119 // GetUOffsetT decodes a little-endian UOffsetT from a byte slice.
124 // GetSOffsetT decodes a little-endian SOffsetT from a byte slice.
129 // GetVOffsetT decodes a little-endian VOffsetT from a byte slice.
134 // WriteByte encodes a little-endian uint8 into a byte slice.
139 // WriteBool encodes a little-endian bool into a byte slice.
147 // WriteUint8 encodes a little-endian uint8 into a byte slice.
152 // WriteUint16 encodes a little-endian uint16 into a byte slice.
154 _ = buf[1] // Force one bounds check. See: golang.org/issue/14808
159 // WriteUint32 encodes a little-endian uint32 into a byte slice.
161 _ = buf[3] // Force one bounds check. See: golang.org/issue/14808
168 // WriteUint64 encodes a little-endian uint64 into a byte slice.
170 _ = buf[7] // Force one bounds check. See: golang.org/issue/14808
181 // WriteInt8 encodes a little-endian int8 into a byte slice.
186 // WriteInt16 encodes a little-endian int16 into a byte slice.
188 _ = buf[1] // Force one bounds check. See: golang.org/issue/14808
193 // WriteInt32 encodes a little-endian int32 into a byte slice.
195 _ = buf[3] // Force one bounds check. See: golang.org/issue/14808
202 // WriteInt64 encodes a little-endian int64 into a byte slice.
204 _ = buf[7] // Force one bounds check. See: golang.org/issue/14808
215 // WriteFloat32 encodes a little-endian float32 into a byte slice.
220 // WriteFloat64 encodes a little-endian float64 into a byte slice.
225 // WriteVOffsetT encodes a little-endian VOffsetT into a byte slice.
230 // WriteSOffsetT encodes a little-endian SOffsetT into a byte slice.
235 // WriteUOffsetT encodes a little-endian UOffsetT into a byte slice.