Home
last modified time | relevance | path

Searched defs:AddByte (Results 1 – 1 of 1) sorted by relevance

/third_party/flatbuffers/net/FlatBuffers/
DFlatBufferBuilder.cs274 public void AddByte(byte x) { Prep(sizeof(byte), 0); PutByte(x); } in AddByte() method in Google.FlatBuffers.FlatBufferBuilder
564 …public void AddByte(int o, byte x, byte d) { if (ForceDefaults || x != d) { AddByte(x); Slot(o); }… in AddByte() method in Google.FlatBuffers.FlatBufferBuilder
572 public void AddByte(int o, byte? x) { if (x.HasValue) { AddByte(x.Value); Slot(o); } } in AddByte() method in Google.FlatBuffers.FlatBufferBuilder