Home
last modified time | relevance | path

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

/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_x86.h252 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; } in dasm_put() local
298 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link() local
478 int *pb = DASM_POS2PTR(D, n); if (*pb < 0) { n = pb[1]; goto rel_a; } in dasm_encode() local
479 n = *pb - ((int)(cp-base) + 4-shrink); in dasm_encode()
489 int *pb = DASM_POS2PTR(D, n); in dasm_encode() local
490 dasma(*pb < 0 ? (ptrdiff_t)pb[1] : (*pb + (ptrdiff_t)base)); in dasm_encode()
H A Ddasm_mips.h224 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; in dasm_put() local
274 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link() local
H A Ddasm_ppc.h224 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; in dasm_put() local
278 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } in dasm_link() local
H A Ddasm_arm.h233 while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; in dasm_put() local
295 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-src/ext/fileinfo/libmagic/
H A Dfuncs.c441 file_pushbuf_t *pb; in file_buffer() local
694 file_pushbuf_t *pb; in file_push_buffer() local
699 if ((pb = (CAST(file_pushbuf_t *, emalloc(sizeof(*pb))))) == NULL) in file_push_buffer()
702 pb->buf = ms->o.buf; in file_push_buffer()
703 pb->blen = ms->o.blen; in file_push_buffer()
710 return pb; in file_push_buffer()
719 efree(pb->buf); in file_pop_buffer()
720 efree(pb); in file_pop_buffer()
726 ms->o.buf = pb->buf; in file_pop_buffer()
727 ms->o.blen = pb->blen; in file_pop_buffer()
[all …]
H A Dcompress.c277 file_pushbuf_t *pb; in file_zmagic() local
337 if ((pb = file_push_buffer(ms)) == NULL) in file_zmagic()
345 if (file_pop_buffer(ms, pb) != NULL) in file_zmagic()
349 if ((rbuf = file_pop_buffer(ms, pb)) != NULL) { in file_zmagic()
H A Dsoftmagic.c1602 file_pushbuf_t *pb; in mget() local
1892 if ((pb = file_push_buffer(ms)) == NULL) in mget()
1916 rbuf = file_pop_buffer(ms, pb); in mget()
/php-src/win32/
H A Dglob.c277 const Char *pb; in globexp2() local
282 for (pb = pm++; *pm != RBRACKET && *pm != EOS; pm++) in globexp2()
289 pm = pb; in globexp2()
/php-src/ext/fileinfo/
H A Dlibmagic.patch2212 - if ((pb = (CAST(file_pushbuf_t *, malloc(sizeof(*pb))))) == NULL)
2213 + if ((pb = (CAST(file_pushbuf_t *, emalloc(sizeof(*pb))))) == NULL)
2216 pb->buf = ms->o.buf;
2221 - free(pb->buf);
2222 - free(pb);
2223 + efree(pb->buf);
2224 + efree(pb);
2229 ms->o.blen = pb->blen;
2230 ms->offset = pb->offset;
2232 - free(pb);
[all …]
/php-src/sapi/cli/
H A Dphp_cli_server.c294 const http_response_status_code_pair *pb = (const http_response_status_code_pair *) b; in status_comp() local
296 if (pa->code < pb->code) { in status_comp()
298 } else if (pa->code > pb->code) { in status_comp()

Completed in 50 milliseconds