Home
last modified time | relevance | path

Searched refs:bytes (Results 26 – 50 of 207) sorted by relevance

123456789

/PHP-5.5/ext/standard/tests/serialize/
H A Dbug67072_2.phpt37 Notice: unserialize(): Error at offset 26 of 66 bytes in %s on line 4
49 Notice: unserialize(): Error at offset 24 of 25 bytes in %s on line 9
54 Notice: unserialize(): Error at offset 26 of 27 bytes in %s on line 9
68 Notice: unserialize(): Error at offset 17 of 18 bytes in %s on line 9
/PHP-5.5/Zend/tests/
H A Dbug40770.phpt22 Fatal error: Allowed memory size of 8388608 bytes exhausted%s(tried to allocate %d bytes) in %s on …
H A Dbug54268.phpt35 Fatal error: Allowed memory size of %s bytes exhausted%s(tried to allocate %s bytes) in %s on line …
/PHP-5.5/tests/basic/
H A D025.phpt14 Warning: Unknown: POST Content-Length of 2050 bytes exceeds the limit of 1024 bytes in Unknown on l…
/PHP-5.5/ext/standard/tests/file/
H A Dfile_put_contents_variation8.phpt13 * Description: Write/Create a file with contents data and return the number of bytes written
42 echo "$res bytes written to: $names_arr[$i]\n";
55 9 bytes written to: -1
57 9 bytes written to: 1
71 9 bytes written to:
H A Dfile_put_contents_variation8-win32.phpt13 * Description: Write/Create a file with contents data and return the number of bytes written
41 echo "$res bytes written to: $value\n";
54 9 bytes written to: -1
57 9 bytes written to: 1
/PHP-5.5/ext/sockets/tests/
H A Dsocket_sentto_recvfrom_ipv4_udp.phpt32 die($bytes_sent . ' bytes have been sent instead of the ' . $len . ' bytes expected');
43 … die($bytes_received . ' bytes have been received instead of the ' . $len . ' bytes expected');
H A Dsocket_sentto_recvfrom_ipv6_udp.phpt34 die($bytes_sent . ' bytes have been sent instead of the ' . $len . ' bytes expected');
45 … die($bytes_received . ' bytes have been received instead of the ' . $len . ' bytes expected');
H A Dsocket_sentto_recvfrom_unix.phpt36 die($bytes_sent . ' bytes have been sent instead of the ' . $len . ' bytes expected');
47 … die($bytes_received . ' bytes have been received instead of the ' . $len . ' bytes expected');
H A Dsocket_sentto_recvfrom_ipv6_udp-win32.phpt34 die($bytes_sent . ' bytes have been sent instead of the ' . $len . ' bytes expected');
45 … die($bytes_received . ' bytes have been received instead of the ' . $len . ' bytes expected');
/PHP-5.5/ext/shmop/
H A Dshmop.c245 int bytes; in PHP_FUNCTION() local
265 bytes = count ? count : shmop->size - start; in PHP_FUNCTION()
267 return_string = emalloc(bytes+1); in PHP_FUNCTION()
268 memcpy(return_string, startaddr, bytes); in PHP_FUNCTION()
269 return_string[bytes] = 0; in PHP_FUNCTION()
271 RETURN_STRINGL(return_string, bytes, 0); in PHP_FUNCTION()
H A DREADME27 size - size of the block in bytes
36 count - how many bytes to read
46 returns bytes written
52 returns the size in bytes of the shm segment
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct_uri.phpt32 printf("[002] URI=%s, DSN=%s, File=%s (%d bytes, '%s'), %s\n",
49 printf("[003] URI=%s, DSN=%s, File=%s (%d bytes, '%s'), chr(0) test, %s\n",
72 [002] URI=uri:file:%spdomuri.tst, DSN=mysql%sdbname=%s, File=%spdomuri.tst (%d bytes, 'mysql%sdbnam…
75 [003] URI=uri:file:%spdomuri.tst, DSN=mysql%sdbname=%s, File=%spdomuri.tst (%d bytes, 'mysql%sdbnam…
/PHP-5.5/ext/standard/tests/streams/
H A Dbug60106.phpt15 preg_match("#maximum allowed length of (\d+) bytes#", $errmsg, $matches);
23 stream_socket_server(): socket path exceeded the maximum allowed length of %d bytes and was truncat…
/PHP-5.5/ext/mbstring/ucgendat/
H A Ducgendat.c1298 ac_uint4 bytes; in write_cdata() local
1356 bytes += 4 - (bytes & 3); in write_cdata()
1357 nprops = bytes / sizeof(ac_uint2); in write_cdata()
1358 bytes += sizeof(ac_uint4) * idx; in write_cdata()
1410 fwrite((char *) &bytes, sizeof(ac_uint4), 1, out); in write_cdata()
1566 bytes = comps_used * sizeof(_comp_t); in write_cdata()
1644 bytes = 0; in write_cdata()
1672 bytes = (sizeof(ac_uint4) * idx) + in write_cdata()
1737 bytes = 0; in write_cdata()
1765 bytes = (sizeof(ac_uint4) * idx) + in write_cdata()
[all …]
/PHP-5.5/ext/dom/tests/
H A DDOMDocument_saveHTMLFile_formatOutput.phpt23 $bytes = $doc->saveHTMLFile($filename);
24 var_dump($bytes);
H A DDOMDocument_saveHTMLFile_basic.phpt22 $bytes = $doc->saveHTMLFile($filename);
23 var_dump($bytes);
/PHP-5.5/ext/standard/
H A Dcrypt_sha256.c232 uint32_t bytes = ctx->buflen; in sha256_finish_ctx() local
237 ctx->total[0] += bytes; in sha256_finish_ctx()
238 if (ctx->total[0] < bytes) { in sha256_finish_ctx()
242 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes; in sha256_finish_ctx()
243 memcpy(&ctx->buffer[bytes], fillbuf, pad); in sha256_finish_ctx()
246 *(uint32_t *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3); in sha256_finish_ctx()
247 *(uint32_t *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) | in sha256_finish_ctx()
251 sha256_process_block(ctx->buffer, bytes + pad + 8, ctx); in sha256_finish_ctx()
H A Dcrypt_sha512.c259 uint64_t bytes = ctx->buflen; in sha512_finish_ctx() local
264 ctx->total[0] += bytes; in sha512_finish_ctx()
265 if (ctx->total[0] < bytes) { in sha512_finish_ctx()
269 pad = bytes >= 112 ? 128 + 112 - (size_t)bytes : 112 - (size_t)bytes; in sha512_finish_ctx()
270 memcpy(&ctx->buffer[bytes], fillbuf, pad); in sha512_finish_ctx()
273 *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP(ctx->total[0] << 3); in sha512_finish_ctx()
274 *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP((ctx->total[1] << 3) | in sha512_finish_ctx()
278 sha512_process_block(ctx->buffer, (size_t)(bytes + pad + 16), ctx); in sha512_finish_ctx()
/PHP-5.5/ext/session/tests/
H A Dbug72562.phpt41 Notice: unserialize(): Error at offset 0 of 1 bytes in %s/bug72562.php on line %d
43 Notice: unserialize(): Error at offset 4 of 4 bytes in %s/bug72562.php on line %d
/PHP-5.5/ext/standard/tests/strings/
H A Dstr_pad_variation5.phpt34 Fatal error: Allowed memory size of 134217728 bytes exhausted%s(tried to allocate 2147483648 bytes)…
H A Dbug50847.phpt2 Bug #50847 (strip_tags() removes all tags greater than 1023 bytes long)
/PHP-5.5/ext/mcrypt/tests/
H A Dmcrypt_encrypt_3des_cbc.phpt24 //test upto 32 bytes with unlimited strength
30 // tripledes uses keys upto 192 bits (24 bytes)
37 // tripledes is a block cipher of 64 bits (8 bytes)
/PHP-5.5/ext/oci8/tests/
H A Dpecl_bug10194.phpt54 Fatal error: Allowed memory size of 10485760 bytes exhausted%s(tried to allocate %d bytes) in %s on…
/PHP-5.5/ext/standard/tests/general_functions/
H A Descapeshellcmd_bug71270.phpt12 Fatal error: escapeshellcmd(): Command exceeds the allowed length of %d bytes in %s on line %d

Completed in 48 milliseconds

123456789