Lines Matching refs:newlen

145 		int newlen;  in mbfl_memory_device_output()  local
148 newlen = device->length + device->allocsz; in mbfl_memory_device_output()
149 tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, newlen*sizeof(unsigned char)); in mbfl_memory_device_output()
153 device->length = newlen; in mbfl_memory_device_output()
168 int newlen; in mbfl_memory_device_output2() local
171 newlen = device->length + device->allocsz; in mbfl_memory_device_output2()
172 tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, newlen*sizeof(unsigned char)); in mbfl_memory_device_output2()
176 device->length = newlen; in mbfl_memory_device_output2()
193 int newlen; in mbfl_memory_device_output4() local
196 newlen = device->length + device->allocsz; in mbfl_memory_device_output4()
197 tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, newlen*sizeof(unsigned char)); in mbfl_memory_device_output4()
201 device->length = newlen; in mbfl_memory_device_output4()
229 int newlen = device->length + (len + MBFL_MEMORY_DEVICE_ALLOC_SIZE)*sizeof(unsigned char); in mbfl_memory_device_strcat() local
230 …unsigned char *tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, newlen*sizeof(unsigned … in mbfl_memory_device_strcat()
234 device->length = newlen; in mbfl_memory_device_strcat()
256 int newlen = device->length + len + MBFL_MEMORY_DEVICE_ALLOC_SIZE; in mbfl_memory_device_strncat() local
257 …unsigned char *tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, newlen*sizeof(unsigned … in mbfl_memory_device_strncat()
261 device->length = newlen; in mbfl_memory_device_strncat()
283 int newlen = dest->length + src->pos + MBFL_MEMORY_DEVICE_ALLOC_SIZE; in mbfl_memory_device_devcat() local
284 …unsigned char *tmp = (unsigned char *)mbfl_realloc((void *)dest->buffer, newlen*sizeof(unsigned ch… in mbfl_memory_device_devcat()
288 dest->length = newlen; in mbfl_memory_device_devcat()
335 int newlen; in mbfl_wchar_device_output() local
338 newlen = device->length + device->allocsz; in mbfl_wchar_device_output()
339 tmp = (unsigned int *)mbfl_realloc((void *)device->buffer, newlen*sizeof(int)); in mbfl_wchar_device_output()
343 device->length = newlen; in mbfl_wchar_device_output()