Lines Matching refs:bytes_max
229 ms->bytes_max = FILE_BYTES_MAX;
718 - * #define offsetcheck {if (offset > ms->bytes_max -1)
719 + * #define offsetcheck {if (offset > ms->bytes_max -1)
1938 - if ((*newch = CAST(unsigned char *, malloc(bytes_max + 1))) == NULL)
1939 + if ((*newch = CAST(unsigned char *, emalloc(bytes_max + 1))) == NULL)
1981 - *newch = CAST(unsigned char *, malloc(bytes_max + 1));
1982 + *newch = CAST(unsigned char *, emalloc(bytes_max + 1));
3519 - if ((buf = CAST(unsigned char *, malloc(ms->bytes_max + SLOP))) == NULL)
3520 + if ((buf = CAST(unsigned char *, emalloc(ms->bytes_max + SLOP))) == NULL)
3595 * try looking at the first ms->bytes_max bytes
3601 - (size_t)(ms->bytes_max - nbytes), 1)) > 0) {
3620 - ms->bytes_max;
3629 + if ((nbytes = php_stream_read(stream, (char *)buf, ms->bytes_max - nbytes)) < 0) {