Searched refs:allocsz (Results 1 – 7 of 7) sorted by relevance
/PHP-7.0/ext/mbstring/libmbfl/mbfl/ |
H A D | mbfl_memory_device.c | 59 if (allocsz > MBFL_MEMORY_DEVICE_ALLOC_SIZE) { in mbfl_memory_device_init() 60 device->allocsz = allocsz; in mbfl_memory_device_init() 62 device->allocsz = MBFL_MEMORY_DEVICE_ALLOC_SIZE; in mbfl_memory_device_init() 80 if (allocsz > MBFL_MEMORY_DEVICE_ALLOC_SIZE) { in mbfl_memory_device_realloc() 81 device->allocsz = allocsz; in mbfl_memory_device_realloc() 83 device->allocsz = MBFL_MEMORY_DEVICE_ALLOC_SIZE; in mbfl_memory_device_realloc() 148 newlen = device->length + device->allocsz; in mbfl_memory_device_output() 175 newlen = device->length + device->allocsz; in mbfl_memory_device_output2() 204 newlen = device->length + device->allocsz; in mbfl_memory_device_output4() 338 device->allocsz = MBFL_MEMORY_DEVICE_ALLOC_SIZE; in mbfl_wchar_device_init() [all …]
|
H A D | mbfl_memory_device.h | 43 int allocsz; member 50 int allocsz; member 53 MBFLAPI extern void mbfl_memory_device_init(mbfl_memory_device *device, int initsz, int allocsz); 54 MBFLAPI extern void mbfl_memory_device_realloc(mbfl_memory_device *device, int initsz, int allocsz);
|
/PHP-7.0/ext/mbstring/libmbfl/tests/ |
H A D | strwidth.c | 61 if (dev.length + dev.allocsz < dev.length) { in main() 66 mbfl_memory_device_realloc(&dev, dev.length + dev.allocsz, in main() 67 dev.allocsz); in main()
|
H A D | emoji.c | 72 mbfl_memory_device_realloc(&dev, dev.length + dev.allocsz, dev.allocsz); in main() 101 mbfl_memory_device_realloc(&dev2, dev2.length + dev2.allocsz, dev2.allocsz); in main()
|
H A D | conv_kana.c | 127 if (dev.length + dev.allocsz < dev.length) { in main() 132 mbfl_memory_device_realloc(&dev, dev.length + dev.allocsz, in main() 133 dev.allocsz); in main()
|
H A D | conv_encoding.c | 81 if (dev.length + dev.allocsz < dev.length) { in main() 86 mbfl_memory_device_realloc(&dev, dev.length + dev.allocsz, in main() 87 dev.allocsz); in main()
|
H A D | strcut.c | 90 if (dev.length + dev.allocsz < dev.length) { in main() 95 mbfl_memory_device_realloc(&dev, dev.length + dev.allocsz, in main() 96 dev.allocsz); in main()
|
Completed in 13 milliseconds