Searched refs:allocsz (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_3/ext/mbstring/libmbfl/mbfl/ |
| H A D | mbfl_memory_device.c | 47 mbfl_memory_device_init(mbfl_memory_device *device, int initsz, int allocsz) argument 59 if (allocsz > MBFL_MEMORY_DEVICE_ALLOC_SIZE) { 60 device->allocsz = allocsz; 62 device->allocsz = MBFL_MEMORY_DEVICE_ALLOC_SIZE; 68 mbfl_memory_device_realloc(mbfl_memory_device *device, int initsz, int allocsz) argument 80 if (allocsz > MBFL_MEMORY_DEVICE_ALLOC_SIZE) { 81 device->allocsz = allocsz; 83 device->allocsz [all...] |
| H A D | mbfl_memory_device.h | 43 int allocsz; member in struct:_mbfl_memory_device 50 int allocsz; member in struct:_mbfl_wchar_device 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_5_3/ext/mbstring/libmbfl/tests/ |
| H A D | conv_encoding.c | 81 if (dev.length + dev.allocsz < dev.length) { 86 mbfl_memory_device_realloc(&dev, dev.length + dev.allocsz, 87 dev.allocsz);
|
| H A D | conv_kana.c | 127 if (dev.length + dev.allocsz < dev.length) { 132 mbfl_memory_device_realloc(&dev, dev.length + dev.allocsz, 133 dev.allocsz);
|
| H A D | strcut.c | 90 if (dev.length + dev.allocsz < dev.length) { 95 mbfl_memory_device_realloc(&dev, dev.length + dev.allocsz, 96 dev.allocsz);
|
| H A D | strwidth.c | 61 if (dev.length + dev.allocsz < dev.length) { 66 mbfl_memory_device_realloc(&dev, dev.length + dev.allocsz, 67 dev.allocsz);
|
Completed in 3 milliseconds