Searched refs:psize (Results 1 – 4 of 4) sorted by relevance
/PHP-7.1/ext/mbstring/oniguruma/ |
H A D | regenc.c | 842 resize_property_list(int new_size, const OnigCodePoint*** plist, int* psize) in resize_property_list() argument 858 *psize = new_size; in resize_property_list() 866 int *psize) in onigenc_property_list_add_property() argument 872 if (*psize <= *pnum) { in onigenc_property_list_add_property() 873 int new_size = (*psize == 0 ? PROP_INIT_SIZE : *psize * 2); in onigenc_property_list_add_property() 874 r = resize_property_list(new_size, plist, psize); in onigenc_property_list_add_property()
|
H A D | regint.h | 824 …nigCodePoint* prop, hash_table_type **table, const OnigCodePoint*** plist, int *pnum, int *psize));
|
/PHP-7.1/ext/fileinfo/libmagic/ |
H A D | funcs.c | 327 size_t psize, len; in file_getbuffer() local 344 psize = len * 4 + 1; in file_getbuffer() 345 if ((ms->o.pbuf = CAST(char *, erealloc(ms->o.pbuf, psize))) == NULL) { in file_getbuffer() 346 file_oomem(ms, psize); in file_getbuffer()
|
/PHP-7.1/ext/fileinfo/ |
H A D | libmagic.patch | 2213 size_t psize, len; 2219 psize = len * 4 + 1; 2220 - if ((pbuf = CAST(char *, realloc(ms->o.pbuf, psize))) == NULL) { 2221 + if ((ms->o.pbuf = CAST(char *, erealloc(ms->o.pbuf, psize))) == NULL) { 2222 file_oomem(ms, psize);
|
Completed in 23 milliseconds