Home
last modified time | relevance | path

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

/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_mips.h66 size_t psize; /* Allocated size of this structure. */ member
92 D->psize = psz; in dasm_init()
112 DASM_M_FREE(Dst, D, D->psize); in dasm_free()
H A Ddasm_ppc.h66 size_t psize; /* Allocated size of this structure. */ member
92 D->psize = psz; in dasm_init()
112 DASM_M_FREE(Dst, D, D->psize); in dasm_free()
H A Ddasm_arm.h67 size_t psize; /* Allocated size of this structure. */ member
93 D->psize = psz; in dasm_init()
113 DASM_M_FREE(Dst, D, D->psize); in dasm_free()
H A Ddasm_x86.h65 size_t psize; /* Allocated size of this structure. */ member
94 D->psize = psz; in dasm_init()
114 DASM_M_FREE(Dst, D, D->psize); in dasm_free()
H A Ddasm_arm64.h69 size_t psize; /* Allocated size of this structure. */ member
98 D->psize = psz; in dasm_init()
118 DASM_M_FREE(Dst, D, D->psize); in dasm_free()
/php-src/ext/fileinfo/libmagic/
H A Dfuncs.c551 size_t psize, len; in file_getbuffer() local
568 psize = len * 4 + 1; in file_getbuffer()
569 if ((pbuf = CAST(char *, erealloc(ms->o.pbuf, psize))) == NULL) { in file_getbuffer()
570 file_oomem(ms, psize); in file_getbuffer()
/php-src/ext/fileinfo/
H A Dlibmagic.patch2040 psize = len * 4 + 1;
2041 - if ((pbuf = CAST(char *, realloc(ms->o.pbuf, psize))) == NULL) {
2042 + if ((pbuf = CAST(char *, erealloc(ms->o.pbuf, psize))) == NULL) {
2043 file_oomem(ms, psize);

Completed in 36 milliseconds