Lines Matching refs:_space
34 private int _space; field in FlatBuffers.FlatBufferBuilder
65 _space = initialSize; in FlatBufferBuilder()
76 _space = buffer.Length; in FlatBufferBuilder()
85 _space = _bb.Length; in Clear()
106 public int Offset { get { return _bb.Length - _space; } }
110 _bb.PutByte(_space -= size, 0, size); in Pad()
133 ((~((int)_bb.Length - _space + additionalBytes)) + 1) & in Prep()
136 while (_space < alignSize + size + additionalBytes) in Prep()
140 _space += (int)_bb.Length - oldBufSize; in Prep()
149 _bb.PutByte(_space -= sizeof(byte), (byte)(x ? 1 : 0)); in PutBool()
154 _bb.PutSbyte(_space -= sizeof(sbyte), x); in PutSbyte()
159 _bb.PutByte(_space -= sizeof(byte), x); in PutByte()
164 _bb.PutShort(_space -= sizeof(short), x); in PutShort()
169 _bb.PutUshort(_space -= sizeof(ushort), x); in PutUshort()
174 _bb.PutInt(_space -= sizeof(int), x); in PutInt()
179 _bb.PutUint(_space -= sizeof(uint), x); in PutUint()
184 _bb.PutLong(_space -= sizeof(long), x); in PutLong()
189 _bb.PutUlong(_space -= sizeof(ulong), x); in PutUlong()
194 _bb.PutFloat(_space -= sizeof(float), x); in PutFloat()
206 _space = _bb.Put(_space, x); field
219 _space = _bb.Put(_space, x); field
225 _bb.PutDouble(_space -= sizeof(double), x); in PutDouble()
561 _bb.PutStringUTF8(_space -= utf8StringLen, s); in CreateString()
581 _space = _bb.Put(_space, chars); in CreateUTF8String()
657 int vt2 = _space; in EndTable()
675 _space = _bb.Length - vtableloc; in EndTable()
677 _bb.PutInt(_space, existingVtable - vtableloc); in EndTable()
727 AddInt(_bb.Length - _space); in Finish()
729 _bb.Position = _space; in Finish()