Searched refs:psize (Results 1 – 7 of 7) sorted by relevance
/PHP-8.0/ext/fileinfo/libmagic/ |
H A D | funcs.c | 501 size_t psize, len; in file_getbuffer() local 518 psize = len * 4 + 1; in file_getbuffer() 519 if ((pbuf = CAST(char *, erealloc(ms->o.pbuf, psize))) == NULL) { in file_getbuffer() 520 file_oomem(ms, psize); in file_getbuffer()
|
/PHP-8.0/ext/opcache/jit/dynasm/ |
H A D | dasm_mips.h | 66 size_t psize; /* Allocated size of this structure. */ member 93 D->psize = psz; in dasm_init() 118 DASM_M_FREE(Dst, D, D->psize); in dasm_free()
|
H A D | dasm_ppc.h | 66 size_t psize; /* Allocated size of this structure. */ member 93 D->psize = psz; in dasm_init() 118 DASM_M_FREE(Dst, D, D->psize); in dasm_free()
|
H A D | dasm_arm.h | 67 size_t psize; /* Allocated size of this structure. */ member 94 D->psize = psz; in dasm_init() 119 DASM_M_FREE(Dst, D, D->psize); in dasm_free()
|
H A D | dasm_arm64.h | 67 size_t psize; /* Allocated size of this structure. */ member 94 D->psize = psz; in dasm_init() 119 DASM_M_FREE(Dst, D, D->psize); in dasm_free()
|
H A D | dasm_x86.h | 65 size_t psize; /* Allocated size of this structure. */ member 95 D->psize = psz; in dasm_init() 120 DASM_M_FREE(Dst, D, D->psize); in dasm_free()
|
/PHP-8.0/ext/fileinfo/ |
H A D | libmagic.patch | 2502 psize = len * 4 + 1; 2503 - if ((pbuf = CAST(char *, realloc(ms->o.pbuf, psize))) == NULL) { 2504 + if ((pbuf = CAST(char *, erealloc(ms->o.pbuf, psize))) == NULL) { 2505 file_oomem(ms, psize);
|
Completed in 25 milliseconds