Lines Matching refs:_space
33 private int _space; field in FlatBuffers.FlatBufferBuilder
61 _space = initialSize; in FlatBufferBuilder()
70 _space = _bb.Length; in Clear()
91 public int Offset { get { return _bb.Length - _space; } }
95 _bb.PutByte(_space -= size, 0, size); in Pad()
129 ((~((int)_bb.Length - _space + additionalBytes)) + 1) & in Prep()
132 while (_space < alignSize + size + additionalBytes) in Prep()
136 _space += (int)_bb.Length - oldBufSize; in Prep()
145 _bb.PutByte(_space -= sizeof(byte), (byte)(x ? 1 : 0)); in PutBool()
150 _bb.PutSbyte(_space -= sizeof(sbyte), x); in PutSbyte()
155 _bb.PutByte(_space -= sizeof(byte), x); in PutByte()
160 _bb.PutShort(_space -= sizeof(short), x); in PutShort()
165 _bb.PutUshort(_space -= sizeof(ushort), x); in PutUshort()
170 _bb.PutInt(_space -= sizeof(int), x); in PutInt()
175 _bb.PutUint(_space -= sizeof(uint), x); in PutUint()
180 _bb.PutLong(_space -= sizeof(long), x); in PutLong()
185 _bb.PutUlong(_space -= sizeof(ulong), x); in PutUlong()
190 _bb.PutFloat(_space -= sizeof(float), x); in PutFloat()
195 _bb.PutDouble(_space -= sizeof(double), x); in PutDouble()
478 Encoding.UTF8.GetBytes(s, 0, s.Length, _bb.Data, _space -= utf8StringLen); in CreateString()
523 int vt2 = _space; in EndObject()
541 _space = _bb.Length - vtableloc; in EndObject()
543 _bb.PutInt(_space, existingVtable - vtableloc); in EndObject()
589 _bb.Position = _space; in Finish()