Home
last modified time | relevance | path

Searched refs:psize (Results 1 – 7 of 7) sorted by relevance

/PHP-8.2/ext/opcache/jit/dynasm/
H A Ddasm_mips.h66 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 Ddasm_ppc.h66 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 Ddasm_arm.h67 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 Ddasm_arm64.h69 size_t psize; /* Allocated size of this structure. */ member
96 D->psize = psz; in dasm_init()
121 DASM_M_FREE(Dst, D, D->psize); in dasm_free()
H A Ddasm_x86.h65 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.2/ext/fileinfo/libmagic/
H A Dfuncs.c542 size_t psize, len; in file_getbuffer() local
559 psize = len * 4 + 1; in file_getbuffer()
560 if ((pbuf = CAST(char *, erealloc(ms->o.pbuf, psize))) == NULL) { in file_getbuffer()
561 file_oomem(ms, psize); in file_getbuffer()
/PHP-8.2/ext/fileinfo/
H A Dlibmagic.patch2245 psize = len * 4 + 1;
2246 - if ((pbuf = CAST(char *, realloc(ms->o.pbuf, psize))) == NULL) {
2247 + if ((pbuf = CAST(char *, erealloc(ms->o.pbuf, psize))) == NULL) {
2248 file_oomem(ms, psize);

Completed in 29 milliseconds