Home
last modified time | relevance | path

Searched refs:bytes (Results 101 – 125 of 315) sorted by relevance

12345678910>>...13

/PHP-8.0/ext/standard/
H A Dcrypt_sha256.c217 uint32_t bytes = ctx->buflen; in sha256_finish_ctx() local
222 ctx->total[0] += bytes; in sha256_finish_ctx()
223 if (ctx->total[0] < bytes) { in sha256_finish_ctx()
227 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes; in sha256_finish_ctx()
228 memcpy(&ctx->buffer[bytes], fillbuf, pad); in sha256_finish_ctx()
231 *(uint32_t *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3); in sha256_finish_ctx()
232 *(uint32_t *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) | in sha256_finish_ctx()
236 sha256_process_block(ctx->buffer, bytes + pad + 8, ctx); in sha256_finish_ctx()
H A Dcrypt_sha512.c244 uint64_t bytes = ctx->buflen; in sha512_finish_ctx() local
249 ctx->total[0] += bytes; in sha512_finish_ctx()
250 if (ctx->total[0] < bytes) { in sha512_finish_ctx()
254 pad = bytes >= 112 ? 128 + 112 - (size_t)bytes : 112 - (size_t)bytes; in sha512_finish_ctx()
255 memcpy(&ctx->buffer[bytes], fillbuf, pad); in sha512_finish_ctx()
258 *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP(ctx->total[0] << 3); in sha512_finish_ctx()
259 *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP((ctx->total[1] << 3) | in sha512_finish_ctx()
263 sha512_process_block(ctx->buffer, (size_t)(bytes + pad + 16), ctx); in sha512_finish_ctx()
/PHP-8.0/ext/standard/tests/serialize/
H A Dbug74111.phpt9 Notice: unserialize(): Error at offset 25 of 23 bytes in %s on line %d
H A Dbug74300.phpt13 Notice: unserialize(): Error at offset 0 of 8 bytes in %s on line %d
H A Dbug73052.phpt17 Notice: unserialize(): Error at offset 13 of 13 bytes in %sbug73052.php on line %d
H A Dsplobjectstorage_negative_count.phpt17 Error at offset 24 of 25 bytes
H A Dbug73825.phpt11 Notice: unserialize(): Error at offset 13 of 15 bytes in %sbug73825.php on line %d
H A Dbug67072.phpt11 Notice: unserialize(): Error at offset 24 of 64 bytes in %sbug67072.php on line %d
/PHP-8.0/ext/standard/tests/general_functions/
H A Descapeshellarg_bug71270.phpt12 Fatal error: escapeshellarg(): Argument exceeds the allowed length of %d bytes in %s on line %d
H A Descapeshellcmd_bug71270.phpt12 Fatal error: escapeshellcmd(): Command exceeds the allowed length of %d bytes in %s on line %d
H A Dbug49847.phpt2 Bug #49847 (exec() fails on lines larger then 4095 bytes)
/PHP-8.0/ext/gmp/tests/
H A Dbug74670.phpt9 Notice: unserialize(): Error at offset 13 of 29 bytes in %s on line %d
/PHP-8.0/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-8.0/Zend/tests/generators/
H A Dgh9801.phpt14 Fatal error: Allowed memory size of %d bytes exhausted %s
/PHP-8.0/ext/spl/tests/
H A Dbug73029.phpt15 Error at offset 10 of 19 bytes
H A Dbug70068.phpt13 Error at offset 10 of 20 bytes
/PHP-8.0/ext/standard/tests/file/
H A Dis_file_variation1.phpt18 echo "\n-- Testing is_file() after truncating filesize to zero bytes --\n";
45 -- Testing is_file() after truncating filesize to zero bytes --
H A Dfread_fwrite_basic.phpt43 echo "last bytes: ".fread($h, strlen($out))."\n";
61 last bytes: xtra
/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct_uri.phpt31 printf("[002] URI=%s, DSN=%s, File=%s (%d bytes, '%s'), %s\n",
47 printf("[003] URI=%s, DSN=%s, File=%s (%d bytes, '%s'), %s\n",
/PHP-8.0/ext/gd/tests/
H A Dimagegif_nullbyte_injection.phpt17 imagegif(): Argument #2 ($file) must not contain null bytes
H A Dimagegd2_nullbyte_injection.phpt17 imagegd(): Argument #2 ($file) must not contain any null bytes
H A Dimagegd_nullbyte_injection.phpt17 imagegd(): Argument #2 ($file) must not contain any null bytes
H A Dimagexbm_nullbyte_injection.phpt17 imagexbm(): Argument #2 ($filename) must not contain any null bytes
/PHP-8.0/ext/standard/tests/image/
H A Dbug13213.phpt8 Warning: getimagesize(): Corrupt JPEG data: 2 extraneous bytes before marker in %s%ebug13213.php on…
/PHP-8.0/ext/curl/tests/
H A Dbug68089.phpt22 curl_setopt(): cURL option must not contain any null bytes

Completed in 28 milliseconds

12345678910>>...13