Lines Matching refs:tmp

71 	unsigned char *tmp;  in mbfl_memory_device_realloc()  local
75 tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, initsz); in mbfl_memory_device_realloc()
76 if (tmp != NULL) { in mbfl_memory_device_realloc()
77 device->buffer = tmp; in mbfl_memory_device_realloc()
147 unsigned char *tmp; in mbfl_memory_device_output() local
155 tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, newlen); in mbfl_memory_device_output()
156 if (tmp == NULL) { in mbfl_memory_device_output()
160 device->buffer = tmp; in mbfl_memory_device_output()
175 unsigned char *tmp; in mbfl_memory_device_output2() local
183 tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, newlen); in mbfl_memory_device_output2()
184 if (tmp == NULL) { in mbfl_memory_device_output2()
188 device->buffer = tmp; in mbfl_memory_device_output2()
205 unsigned char *tmp; in mbfl_memory_device_output4() local
213 tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, newlen); in mbfl_memory_device_output4()
214 if (tmp == NULL) { in mbfl_memory_device_output4()
218 device->buffer = tmp; in mbfl_memory_device_output4()
243 unsigned char *tmp; in mbfl_memory_device_strncat() local
252 tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, newlen); in mbfl_memory_device_strncat()
253 if (tmp == NULL) { in mbfl_memory_device_strncat()
258 device->buffer = tmp; in mbfl_memory_device_strncat()
306 unsigned int *tmp; in mbfl_wchar_device_output() local
319 tmp = (unsigned int *)mbfl_realloc((void *)device->buffer, newlen*sizeof(int)); in mbfl_wchar_device_output()
320 if (tmp == NULL) { in mbfl_wchar_device_output()
324 device->buffer = tmp; in mbfl_wchar_device_output()