-
Notifications
You must be signed in to change notification settings - Fork 110
/
Uint16Vector.go
73 lines (62 loc) · 1.84 KB
/
Uint16Vector.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Code generated by the FlatBuffers compiler. DO NOT EDIT.
package tflite
import (
flatbuffers "github.com/google/flatbuffers/go"
)
type Uint16Vector struct {
_tab flatbuffers.Table
}
func GetRootAsUint16Vector(buf []byte, offset flatbuffers.UOffsetT) *Uint16Vector {
n := flatbuffers.GetUOffsetT(buf[offset:])
x := &Uint16Vector{}
x.Init(buf, n+offset)
return x
}
func GetSizePrefixedRootAsUint16Vector(buf []byte, offset flatbuffers.UOffsetT) *Uint16Vector {
n := flatbuffers.GetUOffsetT(buf[offset+flatbuffers.SizeUint32:])
x := &Uint16Vector{}
x.Init(buf, n+offset+flatbuffers.SizeUint32)
return x
}
func (rcv *Uint16Vector) Init(buf []byte, i flatbuffers.UOffsetT) {
rcv._tab.Bytes = buf
rcv._tab.Pos = i
}
func (rcv *Uint16Vector) Table() flatbuffers.Table {
return rcv._tab
}
func (rcv *Uint16Vector) Values(j int) uint16 {
o := flatbuffers.UOffsetT(rcv._tab.Offset(4))
if o != 0 {
a := rcv._tab.Vector(o)
return rcv._tab.GetUint16(a + flatbuffers.UOffsetT(j*2))
}
return 0
}
func (rcv *Uint16Vector) ValuesLength() int {
o := flatbuffers.UOffsetT(rcv._tab.Offset(4))
if o != 0 {
return rcv._tab.VectorLen(o)
}
return 0
}
func (rcv *Uint16Vector) MutateValues(j int, n uint16) bool {
o := flatbuffers.UOffsetT(rcv._tab.Offset(4))
if o != 0 {
a := rcv._tab.Vector(o)
return rcv._tab.MutateUint16(a+flatbuffers.UOffsetT(j*2), n)
}
return false
}
func Uint16VectorStart(builder *flatbuffers.Builder) {
builder.StartObject(1)
}
func Uint16VectorAddValues(builder *flatbuffers.Builder, values flatbuffers.UOffsetT) {
builder.PrependUOffsetTSlot(0, flatbuffers.UOffsetT(values), 0)
}
func Uint16VectorStartValuesVector(builder *flatbuffers.Builder, numElems int) flatbuffers.UOffsetT {
return builder.StartVector(2, numElems, 2)
}
func Uint16VectorEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT {
return builder.EndObject()
}