Home
last modified time | relevance | path

Searched refs:nb (Results 1 – 24 of 24) sorted by relevance

/PHP-5.3/ext/fileinfo/libmagic/
H A Dfuncs.c162 size_t nb) in file_buffer() argument
175 if (nb == 0) { in file_buffer()
181 } else if (nb == 1) { in file_buffer()
190 looks_text = file_encoding(ms, ubuf, nb, &u8buf, &ulen, in file_buffer()
196 switch (file_os2_apptype(ms, inname, buf, nb)) { in file_buffer()
217 if ((m = file_is_tar(ms, ubuf, nb)) != 0) { in file_buffer()
228 if ((m = file_trycdf(ms, fd, ubuf, nb)) != 0) { in file_buffer()
238 if ((m = file_softmagic(ms, ubuf, nb, BINTEST, in file_buffer()
244 nb > 5 && fd != -1) { in file_buffer()
254 if ((m = file_tryelf(ms, fd, ubuf, nb)) != 0) in file_buffer()
[all …]
H A Dapptype.c46 size_t nb) in file_os2_apptype() argument
72 if (fwrite(buf, 1, nb, fp) != nb) { in file_os2_apptype()
H A Dmagic.c470 magic_buffer(struct magic_set *ms, const void *buf, size_t nb) in magic_buffer() argument
478 if (file_buffer(ms, NULL, NULL, buf, nb) == -1) { in magic_buffer()
/PHP-5.3/ext/pcre/pcrelib/testdata/
H A Dtestinput966 a\nb
541 a\nb
543 a\r\nb
554 a\nb
556 a\r\nb
564 a\nb
576 a\nb
627 a\nb
635 a\nb
645 a\nb
[all …]
H A Dtestinput5162 a\nb
164 a\r\nb
175 a\nb
177 a\r\nb
185 a\nb
197 a\nb
251 a\nb
259 a\nb
269 a\nb
277 a\nb
[all …]
H A Dtestinput81897 a\nb
1956 a\nb
2331 a\nb
3767 a\nb
3770 a\nb
4149 a\nb
4161 a\nb
4172 a\nb
4182 a\nb
4194 a\nb
[all …]
H A Dtestinput21962 a\nb
1980 a\nb
1991 a\nb
2001 a\nb
2013 a\nb
2027 a\nb
2069 a\nb
2273 a\nb
2278 a\nb
2317 a\nb
[all …]
H A Dtestoutput5629 a\nb
633 a\r\nb
653 a\nb
657 a\r\nb
671 a\nb
693 a\nb
813 a\nb
831 a\nb
853 a\nb
871 a\nb
[all …]
H A Dtestoutput82985 a\nb
3071 a\nb
3805 a\nb
6099 a\nb
6103 a\nb
6800 a\nb
6830 a\nb
6850 a\nb
6868 a\nb
6890 a\nb
[all …]
H A Dtestoutput9108 a\nb
1044 a\nb
1048 a\r\nb
1068 a\nb
1072 a\r\nb
1086 a\nb
1108 a\nb
1202 a\nb
1220 a\nb
1242 a\nb
[all …]
H A Dtestinput11520 a\nb
1901 a\nb
1910 a\nb
1914 a\nb
1931 x\nb\n
3398 a\nb\n
3401 a\nb\n
3404 a\nb\n
3407 a\nb\n
3544 a\nb
[all …]
H A Dtestoutput12222 a\nb
2926 a\nb
2940 a\nb
2946 a\nb
2984 x\nb\n
5506 a\nb\n
5510 a\nb\n
5515 a\nb\n
5520 a\nb\n
5752 a\nb
[all …]
H A Dtestoutput27860 a\nb
7899 a\nb
7919 a\nb
7937 a\nb
7959 a\nb
7985 a\nb
8067 a\nb
8809 a\nb
8817 a\nb
8892 a\nb
[all …]
H A Dtestinput410 a\nb
H A Dtestoutput414 a\nb
/PHP-5.3/ext/ftp/
H A Dftp.h75 int nb; /* "nonblocking" transfer in progress */ member
H A Dftp.c146 ftp->nb = 0; in ftp_open()
357 ftp->nb = 0; in ftp_reinit()
1747 ftp->nb = 1; in ftp_nb_get()
1811 ftp->nb = 0; in ftp_nb_continue_read()
1814 ftp->nb = 0; in ftp_nb_continue_read()
1863 ftp->nb = 1; in ftp_nb_put()
1917 ftp->nb = 0; in ftp_nb_continue_write()
1921 ftp->nb = 0; in ftp_nb_continue_write()
H A Dphp_ftp.c993 if (!ftp->nb) { in PHP_FUNCTION()
/PHP-5.3/ext/mbstring/tests/
H A Dmb_split.phpt27 == mb_split( b"[[:space:]]", b"a\nb\tc\nd e f g" ) );
/PHP-5.3/ext/fileinfo/tests/
H A Dbug61964.phpt32 file_put_contents($dir . "/test2.txt", "a\nb\n");
H A Dmagic10456 # .nb files
/PHP-5.3/ext/fileinfo/
H A Dlibmagic.patch1769 - const void *buf, size_t nb)
1771 + size_t nb)
1782 switch (file_os2_apptype(ms, inname, buf, nb)) {
1793 - if ((m = file_zmagic(ms, fd, inname, ubuf, nb)) != 0) {
1794 + if ((m = file_zmagic(ms, stream, inname, ubuf, nb)) != 0) {
1803 - if ((m = file_trycdf(ms, fd, ubuf, nb)) != 0) {
1811 + if ((m = file_trycdf(ms, fd, ubuf, nb)) != 0) {
2314 - if (file_buffer(ms, -1, NULL, buf, nb) == -1) {
2315 + if (file_buffer(ms, NULL, NULL, buf, nb) == -1) {
/PHP-5.3/ext/mbstring/
H A Dmbstring.c4445 size_t nb = 0; in php_mb_safe_strrchr_ex() local
4448 if (nb == 0) { in php_mb_safe_strrchr_ex()
4452 nb = php_mb_mbchar_bytes_ex(p, enc); in php_mb_safe_strrchr_ex()
4453 if (nb == 0) { in php_mb_safe_strrchr_ex()
4457 --nb; in php_mb_safe_strrchr_ex()
/PHP-5.3/ext/pcre/pcrelib/doc/
H A Dpcre.txt4600 changes the convention to CR. That pattern matches "a\nb" because LF is

Completed in 270 milliseconds