Searched refs:pb (Results 1 – 11 of 11) sorted by relevance
/PHP-8.0/ext/fileinfo/libmagic/ |
H A D | funcs.c | 392 file_pushbuf_t *pb; in file_buffer() local 644 file_pushbuf_t *pb; in file_push_buffer() local 649 if ((pb = (CAST(file_pushbuf_t *, emalloc(sizeof(*pb))))) == NULL) in file_push_buffer() 652 pb->buf = ms->o.buf; in file_push_buffer() 653 pb->blen = ms->o.blen; in file_push_buffer() 660 return pb; in file_push_buffer() 669 efree(pb->buf); in file_pop_buffer() 670 efree(pb); in file_pop_buffer() 676 ms->o.buf = pb->buf; in file_pop_buffer() 677 ms->o.blen = pb->blen; in file_pop_buffer() [all …]
|
H A D | compress.c | 253 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 D | softmagic.c | 1554 file_pushbuf_t *pb; in mget() local 1820 if ((pb = file_push_buffer(ms)) == NULL) in mget() 1833 rbuf = file_pop_buffer(ms, pb); in mget()
|
/PHP-8.0/ext/opcache/jit/dynasm/ |
H A D | dasm_x86.h | 253 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; } in dasm_put() local 299 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link() local 438 int *pb = DASM_POS2PTR(D, n); if (*pb < 0) { n = pb[1]; goto rel_a; } in dasm_encode() local 439 n = *pb - ((int)(cp-base) + 4-shrink); in dasm_encode() 447 int *pb = DASM_POS2PTR(D, n); in dasm_encode() local 448 n = *pb < 0 ? pb[1] : (*pb + (int)(ptrdiff_t)base); in dasm_encode() 457 int *pb = DASM_POS2PTR(D, n); in dasm_encode() local 458 dasmq(*pb < 0 ? pb[1] : (*pb + (ptrdiff_t)base)); in dasm_encode()
|
H A D | dasm_mips.h | 229 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 D | dasm_ppc.h | 229 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 D | dasm_arm.h | 238 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; in dasm_put() local 299 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link() local
|
H A D | dasm_arm64.h | 278 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; in dasm_put() local 354 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link() local
|
/PHP-8.0/win32/ |
H A D | glob.c | 288 const Char *pb; local 293 for (pb = pm++; *pm != RBRACKET && *pm != EOS; pm++) 300 pm = pb;
|
/PHP-8.0/ext/fileinfo/ |
H A D | libmagic.patch | 2641 - if ((pb = (CAST(file_pushbuf_t *, malloc(sizeof(*pb))))) == NULL) 2642 + if ((pb = (CAST(file_pushbuf_t *, emalloc(sizeof(*pb))))) == NULL) 2645 pb->buf = ms->o.buf; 2650 - free(pb->buf); 2651 - free(pb); 2652 + efree(pb->buf); 2653 + efree(pb); 2658 ms->o.blen = pb->blen; 2659 ms->offset = pb->offset; 2661 - free(pb); [all …]
|
/PHP-8.0/sapi/cli/ |
H A D | php_cli_server.c | 286 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 39 milliseconds