Lines Matching refs:additionalBytes
498 _prepare(_sizeofFloat64, values.length, additionalBytes: _sizeofUint32);
528 _prepare(_sizeofInt64, values.length, additionalBytes: _sizeofUint32);
543 _prepare(_sizeofUint64, values.length, additionalBytes: _sizeofUint32);
588 _prepare(_sizeofUint32, 1, additionalBytes: 2 * values.length);
603 _prepare(_sizeofUint32, 1, additionalBytes: 2 * values.length);
623 _prepare(_sizeofUint32, 1, additionalBytes: values.length);
638 _prepare(_sizeofUint32, 1, additionalBytes: values.length);
668 _prepare(4, 1, additionalBytes: length + 1);
704 /// Additionally allocate the specified `additionalBytes`. Update the current
706 void _prepare(int size, int count, {int additionalBytes = 0}) {
712 int dataSize = size * count + additionalBytes;