/php-src/ext/fileinfo/libmagic/ |
H A D | encoding.c | 80 size_t nbytes = b->flen; in file_encoding() local 96 if (nbytes > ms->encoding_max) in file_encoding() 97 nbytes = ms->encoding_max; in file_encoding() 157 from_ebcdic(buf, nbytes, nbuf); in file_encoding() 271 for (i = 0; i < nbytes; i++) { \ 361 for (i = 0; i < nbytes; i++) { in file_looks_utf8() 403 if (i >= nbytes) in file_looks_utf8() 472 if (nbytes < 2) in looks_ucs16() 485 for (i = 2; i + 1 < nbytes; i += 2) { in looks_ucs16() 531 if (nbytes < 4) in looks_ucs32() [all …]
|
H A D | is_simh.c | 112 uint32_t nbytes, cbytes; in simh_parse() local 118 while (ue - uc >= CAST(ptrdiff_t, sizeof(nbytes))) { in simh_parse() 119 nbytes = getlen(&uc); in simh_parse() 120 if ((nt > 0 || nr > 0) && nbytes == 0xFFFFFFFF) in simh_parse() 123 if (nbytes == 0) { in simh_parse() 132 uc += nbytes; in simh_parse() 133 if (ue - uc < CAST(ptrdiff_t, sizeof(nbytes))) in simh_parse() 136 if (nbytes != cbytes) in simh_parse()
|
H A D | ascmagic.c | 62 trim_nuls(const unsigned char *buf, size_t nbytes) in trim_nuls() argument 64 while (nbytes > 1 && buf[nbytes - 1] == '\0') in trim_nuls() 65 nbytes--; in trim_nuls() 67 return nbytes; in trim_nuls() 111 size_t nbytes = b->flen; in file_ascmagic_with_encoding() local 133 nbytes = trim_nuls(buf, nbytes); in file_ascmagic_with_encoding() 136 if (nbytes <= 1) { in file_ascmagic_with_encoding()
|
H A D | is_tar.c | 66 size_t nbytes = b->flen; in file_is_tar() local 77 tar = is_tar(buf, nbytes); in file_is_tar() 99 is_tar(const unsigned char *buf, size_t nbytes) in is_tar() argument 110 if (nbytes < sizeof(*header)) in is_tar()
|
H A D | softmagic.c | 846 size_t nbytes = b->flen; in moffset() local 1343 if (offset > nbytes) in mcopy() 1412 if (offset >= nbytes) in mcopy() 1446 if (offset >= nbytes) { in mcopy() 1451 nbytes = nbytes - offset; in mcopy() 1453 nbytes = size; in mcopy() 1461 if (nbytes < sizeof(*p)) in mcopy() 1463 sizeof(*p) - nbytes); in mcopy() 1879 if (nbytes < offset) in mget() 1889 if (nbytes < offset) in mget() [all …]
|
H A D | magic.c | 201 ssize_t nbytes = 0; /* number of bytes read from a datafile */ in file_or_stream() local 251 if ((nbytes = php_stream_read(stream, (char *)buf, ms->bytes_max - nbytes)) < 0) { in file_or_stream() 256 (void)memset(buf + nbytes, 0, SLOP); /* NUL terminate */ in file_or_stream() 257 if (file_buffer(ms, stream, &sb, inname, buf, CAST(size_t, nbytes)) == -1) in file_or_stream()
|
H A D | der.c | 266 der_offs(struct magic_set *ms, struct magic *m, size_t nbytes) in der_offs() argument 269 size_t offs = 0, len = ms->search.s_len ? ms->search.s_len : nbytes; in der_offs() 295 if (offs + tlen > nbytes) in der_offs()
|
H A D | compress.c | 282 size_t nbytes = b->flen; in file_zmagic() local 291 if (nbytes < CAST(size_t, abs(compr[i].maglen))) in file_zmagic() 312 nsz = nbytes; in file_zmagic() 343 if (file_buffer(ms, NULL, NULL, NULL, buf, nbytes) == -1) in file_zmagic() 477 size_t nbytes) in file_pipe2file() argument 523 if (swrite(tfd, startbuf, nbytes) != CAST(ssize_t, nbytes)) in file_pipe2file()
|
H A D | readcdf.c | 534 size_t nbytes = b->flen; in file_trycdf() local 547 info.i_len = nbytes; in file_trycdf()
|
/php-src/ext/gd/libgd/ |
H A D | gd_jpeg.c | 613 ssize_t nbytes = 0; in fill_input_buffer() local 619 while (nbytes < INPUT_BUF_SIZE) { in fill_input_buffer() 620 int got = gdGetBuf(src->buffer + nbytes, INPUT_BUF_SIZE - nbytes, src->infile); in fill_input_buffer() 624 if (!nbytes) { in fill_input_buffer() 625 nbytes = -1; in fill_input_buffer() 629 nbytes += got; in fill_input_buffer() 632 if (nbytes <= 0) { in fill_input_buffer() 640 nbytes = 2; in fill_input_buffer() 644 src->pub.bytes_in_buffer = nbytes; in fill_input_buffer()
|
/php-src/ext/mbstring/ |
H A D | mbstring.h | 56 MBSTRING_API char *php_mb_safe_strrchr(const char *s, unsigned int c, size_t nbytes, const mbfl_enc…
|
H A D | mbstring.c | 6007 MBSTRING_API char *php_mb_safe_strrchr(const char *s, unsigned int c, size_t nbytes, const mbfl_enc… in php_mb_safe_strrchr() argument 6012 if (nbytes == (size_t)-1) { in php_mb_safe_strrchr() 6029 size_t bcnt = nbytes; in php_mb_safe_strrchr()
|
/php-src/ext/iconv/ |
H A D | iconv.c | 146 static php_iconv_err_t _php_iconv_strlen(size_t *pretval, const char *str, size_t nbytes, const cha… 148 static php_iconv_err_t _php_iconv_substr(smart_str *pretval, const char *str, size_t nbytes, zend_l… 547 static php_iconv_err_t _php_iconv_strlen(size_t *pretval, const char *str, size_t nbytes, const cha… in _php_iconv_strlen() argument 578 more = nbytes > 0; in _php_iconv_strlen() 580 for (in_p = str, in_left = nbytes, cnt = 0; more;) { in _php_iconv_strlen() 623 const char *str, size_t nbytes, zend_long offset, zend_long len, const char *enc) in _php_iconv_substr() argument 641 err = _php_iconv_strlen(&total_len, str, nbytes, enc); in _php_iconv_substr() 685 more = nbytes > 0 && len > 0; in _php_iconv_substr() 687 for (in_p = str, in_left = nbytes, cnt = 0; more; ++cnt) { in _php_iconv_substr()
|
/php-src/ext/fileinfo/ |
H A D | libmagic.patch | 1248 nsz = nbytes; 1267 - if (file_buffer(ms, -1, NULL, NULL, buf, nbytes) == -1) 1351 nbytes = ms->encoding_max; 1353 mlen = (nbytes + 1) * sizeof((*ubuf)[0]); 1362 mlen = (nbytes + 1) * sizeof(nbuf[0]); 2635 - while ((r = sread(fd, RCAST(void *, &buf[nbytes]), 2636 - CAST(size_t, ms->bytes_max - nbytes), 1)) > 0) { 2637 - nbytes += r; 2642 - if (nbytes == 0 && inname) { 2665 + if ((nbytes = php_stream_read(stream, (char *)buf, ms->bytes_max - nbytes)) < 0) { [all …]
|
/php-src/main/streams/ |
H A D | streams.c | 1650 size_t nbytes = (size_t)result; in _php_stream_copy_to_stream_ex() local 1651 haveread += nbytes; in _php_stream_copy_to_stream_ex() 1653 src->position += nbytes; in _php_stream_copy_to_stream_ex() 1654 dest->position += nbytes; in _php_stream_copy_to_stream_ex() 1656 if ((maxlen != PHP_STREAM_COPY_ALL && nbytes == maxlen) || php_stream_eof(src)) { in _php_stream_copy_to_stream_ex()
|
/php-src/ext/pgsql/ |
H A D | pgsql.c | 2719 int nbytes; in PHP_FUNCTION() local 2738 if ((nbytes = lo_read((PGconn *)pgsql->conn, pgsql->lofd, ZSTR_VAL(buf), ZSTR_LEN(buf)))<0) { in PHP_FUNCTION() 2743 ZSTR_VAL(buf)[nbytes] = '\0'; in PHP_FUNCTION() 2744 buf = zend_string_truncate(buf, nbytes, 0); in PHP_FUNCTION() 2756 size_t nbytes; in PHP_FUNCTION() local 2785 if ((nbytes = lo_write((PGconn *)pgsql->conn, pgsql->lofd, ZSTR_VAL(str), len)) == (size_t)-1) { in PHP_FUNCTION() 2789 RETURN_LONG(nbytes); in PHP_FUNCTION() 2798 volatile int nbytes; in PHP_FUNCTION() local 2810 while ((nbytes = lo_read((PGconn *)pgsql->conn, pgsql->lofd, buf, PGSQL_LO_READ_BUF_SIZE))>0) { in PHP_FUNCTION() 2811 PHPWRITE(buf, nbytes); in PHP_FUNCTION() [all …]
|
/php-src/ext/standard/ |
H A D | basic_functions.c | 1376 size_t nbytes; local 1395 nbytes = php_stream_write(stream, message, message_len); 1397 if (nbytes != message_len) {
|
/php-src/ext/odbc/ |
H A D | php_odbc.c | 1128 int fp, nbytes; in PHP_FUNCTION() local 1132 while ((nbytes = read(fp, &buf, 4096)) > 0) { in PHP_FUNCTION() 1133 SQLPutData(result->stmt, (void*)&buf, nbytes); in PHP_FUNCTION()
|