Buffer.getSizes

Get the total size of the memory blocks in b.

When not NULL, offset will contain the offset of the data in the first memory block in buffer and maxsize will contain the sum of the size and offset and the amount of extra padding on the last memory block. offset and maxsize can be used to resize the buffer memory blocks with Buffer.resize.

class Buffer
size_t
getSizes
(
out size_t offset
,
out size_t maxsize
)

Parameters

offset size_t

a pointer to the offset

maxsize size_t

a pointer to the maxsize

Return Value

Type: size_t

total size of the memory blocks in buffer.