Lines Matching full:__p
14 private Table __p; field
15 public ByteBuffer ByteBuffer { get { return __p.bb; } }
19 public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } in __init()
22 …public string Id { get { int o = __p.__offset(4); return o != 0 ? __p.__string(o + __p.bb_pos) : n…
24 public Span<byte> GetIdBytes() { return __p.__vector_as_span<byte>(4, 1); } in GetIdBytes()
26 public ArraySegment<byte>? GetIdBytes() { return __p.__vector_as_arraysegment(4); } in GetIdBytes()
28 public byte[] GetIdArray() { return __p.__vector_as_array<byte>(4); } in GetIdArray()
29 …public long Val { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : …
30 …public bool MutateVal(long val) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutLong(o + __p.bb… in MutateVal()
31 …public ushort Count { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetUshort(o + __p.bb_p…
32 …public bool MutateCount(ushort count) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutUshort(o … in MutateCount()