• Home
  • Raw
  • Download

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()
110 public int Offset { get { return _bb.Length - _space; } }
114 _bb.PutByte(_space -= size, 0, size); in Pad()
137 ((~((int)_bb.Length - _space + additionalBytes)) + 1) & in Prep()
140 while (_space < alignSize + size + additionalBytes) in Prep()
144 _space += (int)_bb.Length - oldBufSize; in Prep()
153 _bb.PutByte(_space -= sizeof(byte), (byte)(x ? 1 : 0)); in PutBool()
158 _bb.PutSbyte(_space -= sizeof(sbyte), x); in PutSbyte()
163 _bb.PutByte(_space -= sizeof(byte), x); in PutByte()
168 _bb.PutShort(_space -= sizeof(short), x); in PutShort()
173 _bb.PutUshort(_space -= sizeof(ushort), x); in PutUshort()
178 _bb.PutInt(_space -= sizeof(int), x); in PutInt()
183 _bb.PutUint(_space -= sizeof(uint), x); in PutUint()
188 _bb.PutLong(_space -= sizeof(long), x); in PutLong()
193 _bb.PutUlong(_space -= sizeof(ulong), x); in PutUlong()
198 _bb.PutFloat(_space -= sizeof(float), x); in PutFloat()
210 _space = _bb.Put(_space, x); field
223 _space = _bb.Put(_space, x); field
229 _bb.PutDouble(_space -= sizeof(double), x); in PutDouble()
658 _bb.PutStringUTF8(_space -= utf8StringLen, s); in CreateString()
678 _space = _bb.Put(_space, chars); in CreateUTF8String()
759 int vt2 = _space; in EndTable()
777 _space = _bb.Length - vtableloc; in EndTable()
779 _bb.PutInt(_space, existingVtable - vtableloc); in EndTable()
829 AddInt(_bb.Length - _space); in Finish()
831 _bb.Position = _space; in Finish()