Home
last modified time | relevance | path

Searched refs:bytes (Results 251 – 275 of 291) sorted by relevance

1...<<1112

/PHP-7.4/ext/standard/tests/file/
H A Dfile_put_contents_variation7-win32.phpt13 * Description: Write/Create a file with contents data and return the number of bytes written
H A Ddisk_free_space_variation.phpt8 * will return the number of bytes available on the corresponding
H A Dfseek_ftell_rewind_variation5.phpt39 ,5,"bytes",".tmp"); //create a file with 512 bytes size
H A Dfwrite_variation3.phpt14 If the length arquement is given,writing will stop after length bytes have been
16 fwrite() returns the number of bytes written or FALSE on error
H A Dfwrite_variation3-win32.phpt14 If the length arquement is given,writing will stop after length bytes have been
16 fwrite() returns the number of bytes written or FALSE on error
H A Dfseek_ftell_rewind_variation1.phpt39 ,1,"bytes",".tmp"); //create a file with 512 bytes size
H A Dfseek_ftell_rewind_variation3.phpt41 3, "bytes", ".tmp"); //create a file with 512 bytes size
H A Dfseek_ftell_rewind_basic1.phpt36 ,1,"bytes",".tmp"); //create a file with 512 bytes size
H A Dfile.inc220 if $flag is specified as "byte", then then given size is taken in bytes
221 $flag = specify if size has to be treated as no of total bytes or
224 "byte" = take size in terms of bytes
H A Duserstreams.phpt76 die("tmpfile stored $n bytes; should be $DATALEN!");
/PHP-7.4/ext/dom/
H A Ddocument.c1588 int bytes, format, saveempty = 0; in PHP_FUNCTION() local
1614 bytes = xmlSaveFormatFileEnc(file, docp, NULL, format); in PHP_FUNCTION()
1618 if (bytes == -1) { in PHP_FUNCTION()
1621 RETURN_LONG(bytes); in PHP_FUNCTION()
2137 int bytes, format; in PHP_FUNCTION() local
2160 bytes = htmlSaveFileFormat(file, docp, encoding, format); in PHP_FUNCTION()
2162 if (bytes == -1) { in PHP_FUNCTION()
2165 RETURN_LONG(bytes); in PHP_FUNCTION()
H A Dnode.c1858 int bytes; in dom_canonicalization() local
1860 bytes = xmlOutputBufferClose(buf); in dom_canonicalization()
1862 RETURN_LONG(bytes); in dom_canonicalization()
/PHP-7.4/ext/hash/sha3/generic64lc/
H A DKeccakP-1600-opt64.c340 void fromWordToBytes(UINT8 *bytes, const UINT64 word) in fromWordToBytes() argument
345 bytes[i] = (word >> (8*i)) & 0xFF; in fromWordToBytes()
/PHP-7.4/ext/pdo_odbc/tests/
H A Dlong_columns.phpt58 // the driver reads columns in blocks of 255 bytes and then reassembles those blocks into a single …
84 printf("Expected %d bytes, got %d\n", strlen($expect), strlen($row['data']));
/PHP-7.4/ext/standard/tests/serialize/
H A D005.phpt159 Notice: unserialize(): Error at offset 19 of 20 bytes in %s005.php on line %d
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_debug_append.phpt39 … printf("[003] Trace file '%s' is very small. filesize() reports only %d bytes. Please check.\n",
H A Dmysqli_fetch_array_large.phpt30 myslqnd - [1153] Got a packet bigger than 'max_allowed_packet' bytes
H A Dmysqli_stmt_bind_param.phpt84 …"[009] Function seems to be leaking, because it used %d bytes. During tests it used only 92 bytes.…
/PHP-7.4/main/
H A Drfc1867.c609 static size_t multipart_buffer_read(multipart_buffer *self, char *buf, size_t bytes, int *end) in multipart_buffer_read() argument
615 if (bytes > (size_t)self->bytes_in_buffer) { in multipart_buffer_read()
630 len = max < bytes-1 ? max : bytes-1; in multipart_buffer_read()
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます573 # which is 8 bytes (2 bytes type + 2 bytes header size + 4 bytes size).
2756 # TODO: idarc says "bytes 0-2 == bytes 3-5"
2808 # 2 bytes: length of unknown data + mentioned bytes
2874 # 2 bytes: length of data + mentioned bytes
3683 >6 belong x (%d bytes)
4840 # 1 space char after "bytes" to get phrase "bytes RIFF"
10637 # DOS names like NTLDR,CMLDR,$LDR$ are 8 right space padded bytes+3 bytes
12138 >>8 belong x %d bytes,
12161 >>8 lelong x %d bytes,
12721 # form width in bytes
[all …]
H A Dmagic573 # which is 8 bytes (2 bytes type + 2 bytes header size + 4 bytes size).
2756 # TODO: idarc says "bytes 0-2 == bytes 3-5"
2808 # 2 bytes: length of unknown data + mentioned bytes
2874 # 2 bytes: length of data + mentioned bytes
3683 >6 belong x (%d bytes)
4840 # 1 space char after "bytes" to get phrase "bytes RIFF"
10637 # DOS names like NTLDR,CMLDR,$LDR$ are 8 right space padded bytes+3 bytes
12138 >>8 belong x %d bytes,
12161 >>8 lelong x %d bytes,
12721 # form width in bytes
[all …]
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_prompt.c469 int bytes = 0; in PHPDBG_COMMAND() local
474 PHPDBG_G(input_buflen) += bytes; in PHPDBG_COMMAND()
506 …} while ((bytes = phpdbg_mixed_read(PHPDBG_G(io)[PHPDBG_STDIN].fd, PHPDBG_G(input_buffer) + PHPDBG… in PHPDBG_COMMAND()
508 if (bytes < 0) { in PHPDBG_COMMAND()
/PHP-7.4/main/streams/
H A Dstreams.c1248 ssize_t bytes; in _php_stream_write() local
1261 bytes = _php_stream_write_filtered(stream, buf, count, PSFS_FLAG_NORMAL); in _php_stream_write()
1263 bytes = _php_stream_write_buffer(stream, buf, count); in _php_stream_write()
1266 if (bytes) { in _php_stream_write()
1270 return bytes; in _php_stream_write()
/PHP-7.4/win32/
H A Dioutil.c1036 DWORD bytes; in php_win32_ioutil_readlink_int() local
1044 &bytes, in php_win32_ioutil_readlink_int()
/PHP-7.4/ext/standard/
H A Dfile.c1093 zend_long bytes = 0; in PHP_FUNCTION() local
1104 Z_PARAM_LONG(bytes) in PHP_FUNCTION()
1111 if (bytes <= 0) { in PHP_FUNCTION()
1116 len = (size_t) bytes; in PHP_FUNCTION()

Completed in 202 milliseconds

1...<<1112