Lines Matching refs:allocsz
41 mbfl_memory_device_init(mbfl_memory_device *device, size_t initsz, size_t allocsz) in mbfl_memory_device_init() argument
51 if (allocsz > MBFL_MEMORY_DEVICE_ALLOC_SIZE) { in mbfl_memory_device_init()
52 device->allocsz = allocsz; in mbfl_memory_device_init()
54 device->allocsz = MBFL_MEMORY_DEVICE_ALLOC_SIZE; in mbfl_memory_device_init()
60 mbfl_memory_device_realloc(mbfl_memory_device *device, size_t initsz, size_t allocsz) in mbfl_memory_device_realloc() argument
67 if (allocsz > MBFL_MEMORY_DEVICE_ALLOC_SIZE) { in mbfl_memory_device_realloc()
68 device->allocsz = allocsz; in mbfl_memory_device_realloc()
70 device->allocsz = MBFL_MEMORY_DEVICE_ALLOC_SIZE; in mbfl_memory_device_realloc()
134 if (device->length > SIZE_MAX - device->allocsz) { in mbfl_memory_device_output()
139 newlen = device->length + device->allocsz; in mbfl_memory_device_output()
194 device->allocsz = MBFL_MEMORY_DEVICE_ALLOC_SIZE; in mbfl_wchar_device_init()
220 if (device->length > SIZE_MAX - device->allocsz) { in mbfl_wchar_device_output()
225 newlen = device->length + device->allocsz; in mbfl_wchar_device_output()