Home
last modified time | relevance | path

Searched refs:pb (Results 1 – 11 of 11) sorted by relevance

/PHP-8.1/ext/fileinfo/libmagic/
H A Dfuncs.c432 file_pushbuf_t *pb; in file_buffer() local
685 file_pushbuf_t *pb; in file_push_buffer() local
690 if ((pb = (CAST(file_pushbuf_t *, emalloc(sizeof(*pb))))) == NULL) in file_push_buffer()
693 pb->buf = ms->o.buf; in file_push_buffer()
694 pb->blen = ms->o.blen; in file_push_buffer()
701 return pb; in file_push_buffer()
710 efree(pb->buf); in file_pop_buffer()
711 efree(pb); in file_pop_buffer()
717 ms->o.buf = pb->buf; in file_pop_buffer()
718 ms->o.blen = pb->blen; in file_pop_buffer()
[all …]
H A Dcompress.c253 file_pushbuf_t *pb; in file_zmagic() local
310 if ((pb = file_push_buffer(ms)) == NULL) in file_zmagic()
317 if (file_pop_buffer(ms, pb) != NULL) in file_zmagic()
321 if ((rbuf = file_pop_buffer(ms, pb)) != NULL) { in file_zmagic()
H A Dsoftmagic.c1558 file_pushbuf_t *pb; in mget() local
1825 if ((pb = file_push_buffer(ms)) == NULL) in mget()
1838 rbuf = file_pop_buffer(ms, pb); in mget()
/PHP-8.1/ext/opcache/jit/dynasm/
H A Ddasm_x86.h255 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; } in dasm_put() local
301 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link() local
459 int *pb = DASM_POS2PTR(D, n); if (*pb < 0) { n = pb[1]; goto rel_a; } in dasm_encode() local
460 n = *pb - ((int)(cp-base) + 4-shrink); in dasm_encode()
470 int *pb = DASM_POS2PTR(D, n); in dasm_encode() local
471 dasma(*pb < 0 ? (ptrdiff_t)pb[1] : (*pb + (ptrdiff_t)base)); in dasm_encode()
H A Ddasm_mips.h229 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; in dasm_put() local
279 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link() local
H A Ddasm_ppc.h229 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; in dasm_put() local
283 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link() local
H A Ddasm_arm.h238 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; in dasm_put() local
300 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link() local
H A Ddasm_arm64.h285 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; in dasm_put() local
369 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link() local
/PHP-8.1/win32/
H A Dglob.c288 const Char *pb; local
293 for (pb = pm++; *pm != RBRACKET && *pm != EOS; pm++)
300 pm = pb;
/PHP-8.1/ext/fileinfo/
H A Dlibmagic.patch2350 - if ((pb = (CAST(file_pushbuf_t *, malloc(sizeof(*pb))))) == NULL)
2351 + if ((pb = (CAST(file_pushbuf_t *, emalloc(sizeof(*pb))))) == NULL)
2354 pb->buf = ms->o.buf;
2359 - free(pb->buf);
2360 - free(pb);
2361 + efree(pb->buf);
2362 + efree(pb);
2367 ms->o.blen = pb->blen;
2368 ms->offset = pb->offset;
2370 - free(pb);
[all …]
/PHP-8.1/sapi/cli/
H A Dphp_cli_server.c286 const http_response_status_code_pair *pb = (const http_response_status_code_pair *) b; in status_comp() local
288 if (pa->code < pb->code) { in status_comp()
290 } else if (pa->code > pb->code) { in status_comp()

Completed in 63 milliseconds