Home
last modified time | relevance | path

Searched refs:rbuf (Results 1 – 12 of 12) sorted by relevance

/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_mips.h49 #define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos))
56 int *rbuf; /* Biased buffer pointer (negative section bias). */ member
144 D->sections[i].rbuf = D->sections[i].buf - D->sections[i].pos; in dasm_setup()
175 sec->rbuf = sec->buf - DASM_POS2BIAS(pos); in dasm_put()
179 b = sec->rbuf; in dasm_put()
281 int *b = sec->rbuf; in dasm_link()
329 int *endb = sec->rbuf + sec->pos; in dasm_encode()
H A Ddasm_ppc.h49 #define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos))
56 int *rbuf; /* Biased buffer pointer (negative section bias). */ member
144 D->sections[i].rbuf = D->sections[i].buf - D->sections[i].pos; in dasm_setup()
175 sec->rbuf = sec->buf - DASM_POS2BIAS(pos); in dasm_put()
179 b = sec->rbuf; in dasm_put()
285 int *b = sec->rbuf; in dasm_link()
333 int *endb = sec->rbuf + sec->pos; in dasm_encode()
H A Ddasm_arm.h50 #define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos))
57 int *rbuf; /* Biased buffer pointer (negative section bias). */ member
145 D->sections[i].rbuf = D->sections[i].buf - D->sections[i].pos; in dasm_setup()
184 sec->rbuf = sec->buf - DASM_POS2BIAS(pos); in dasm_put()
188 b = sec->rbuf; in dasm_put()
302 int *b = sec->rbuf; in dasm_link()
351 int *endb = sec->rbuf + sec->pos; in dasm_encode()
H A Ddasm_x86.h48 #define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos))
55 int *rbuf; /* Biased buffer pointer (negative section bias). */ member
146 D->sections[i].rbuf = DASM_PTR_SUB(D->sections[i].buf, D->sections[i].pos); in dasm_setup()
177 sec->rbuf = sec->buf - DASM_POS2BIAS(pos); in dasm_put()
181 b = sec->rbuf; in dasm_put()
305 int *b = sec->rbuf; in dasm_link()
406 int *endb = DASM_PTR_ADD(sec->rbuf, sec->pos); in dasm_encode()
H A Ddasm_arm64.h52 #define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos))
59 int *rbuf; /* Biased buffer pointer (negative section bias). */ member
150 D->sections[i].rbuf = DASM_PTR_SUB(D->sections[i].buf, D->sections[i].pos); in dasm_setup()
231 sec->rbuf = sec->buf - DASM_POS2BIAS(pos); in dasm_put()
235 b = sec->rbuf; in dasm_put()
376 int *b = sec->rbuf; in dasm_link()
435 int *endb = DASM_PTR_ADD(sec->rbuf, sec->pos); in dasm_encode()
/php-src/ext/fileinfo/libmagic/
H A Dfuncs.c326 char *rbuf = NULL; in file_buffer() local
456 rbuf = file_pop_buffer(ms, pb); in file_buffer()
458 efree(rbuf); in file_buffer()
459 rbuf = NULL; in file_buffer()
471 if (m == 1 && rbuf) { in file_buffer()
472 if (file_printf(ms, "%s", rbuf) == -1) in file_buffer()
513 efree(rbuf); in file_buffer()
716 char *rbuf; in file_pop_buffer() local
724 rbuf = ms->o.buf; in file_pop_buffer()
731 return rbuf; in file_pop_buffer()
H A Dsoftmagic.c1604 char *rbuf; in mget() local
1916 rbuf = file_pop_buffer(ms, pb); in mget()
1924 if (rbuf) efree(rbuf); in mget()
1927 if (file_printf(ms, "%s", rbuf) == -1) { in mget()
1928 if (rbuf) efree(rbuf); in mget()
1932 if (rbuf) efree(rbuf); in mget()
1938 rbuf = m->value.s; in mget()
1939 if (*rbuf == '^') { in mget()
1940 rbuf++; in mget()
1943 if (file_magicfind(ms, rbuf, &ml) == -1) { in mget()
[all …]
H A Dcompress.c276 char *rbuf; in file_zmagic() local
349 if ((rbuf = file_pop_buffer(ms, pb)) != NULL) { in file_zmagic()
350 if (file_printf(ms, "%s", rbuf) == -1) { in file_zmagic()
351 efree(rbuf); in file_zmagic()
354 efree(rbuf); in file_zmagic()
/php-src/ext/standard/
H A Dphp_string.h53 PHPAPI size_t php_strip_tags(char *rbuf, size_t len, const char *allow, size_t allow_len);
54 PHPAPI size_t php_strip_tags_ex(char *rbuf, size_t len, const char *allow, size_t allow_len, bool a…
H A Dstring.c5098 PHPAPI size_t php_strip_tags(char *rbuf, size_t len, const char *allow, size_t allow_len) /* {{{ */ argument
5100 return php_strip_tags_ex(rbuf, len, allow, allow_len, 0);
5124 PHPAPI size_t php_strip_tags_ex(char *rbuf, size_t len, const char *allow, size_t allow_len, bool a… argument
5134 buf = estrndup(rbuf, len);
5138 rp = rbuf;
5431 if (rp < rbuf + len) {
5442 return (size_t)(rp - rbuf);
/php-src/ext/fileinfo/
H A Dlibmagic.patch1280 - free(rbuf);
2010 - free(rbuf);
2011 + efree(rbuf);
2023 - free(rbuf);
2024 + efree(rbuf);
2218 char *rbuf;
2234 return rbuf;
3154 + if (rbuf) efree(rbuf);
3159 + if (rbuf) efree(rbuf);
3163 - free(rbuf);
[all …]
/php-src/ext/session/
H A Dsession.c329 unsigned char rbuf[PS_MAX_SID_LENGTH]; in php_session_create_id() local
334 if (php_random_bytes_throw(rbuf, PS(sid_length)) == FAILURE) { in php_session_create_id()
340 rbuf, PS(sid_length), in php_session_create_id()

Completed in 68 milliseconds