Home
last modified time | relevance | path

Searched refs:padding (Results 1 – 25 of 28) sorted by relevance

12

/PHP-7.4/ext/standard/
H A Dformatted_print.c127 ZSTR_VAL(*buffer)[(*pos)++] = padding; in php_sprintf_appendstring()
161 if(alignment==0 && padding=='0') padding=' '; in php_sprintf_appendint()
200 if (alignment == 0 && padding == '0') padding = ' '; in php_sprintf_appenduint()
221 size_t width, char padding, in php_sprintf_appenddouble() argument
398 char *format, *temppos, padding; in php_formatted_print() local
437 padding = ' '; in php_formatted_print()
471 padding = *format; in php_formatted_print()
480 padding = *format; in php_formatted_print()
546 width, precision, padding, in php_formatted_print()
557 width, padding, alignment, in php_formatted_print()
[all …]
H A Dbase64.c251 size_t i = 0, padding = 0, j = *outl; in php_base64_decode_impl() local
267 padding++; in php_base64_decode_impl()
283 if (ch == -2 || padding) { in php_base64_decode_impl()
314 if (strict && padding && (padding > 2 || (i + padding) % 4 != 0)) { in php_base64_decode_impl()
/PHP-7.4/ext/gd/libgd/
H A Dgd_bmp.c157 if (padding) { in gdImageBmpCtx()
158 padding = 4 - padding; in gdImageBmpCtx()
721 if (padding) { in bmp_read_direct()
722 padding = 4 - padding; in bmp_read_direct()
818 if (padding) { in bmp_read_1bit()
819 padding = 4 - padding; in bmp_read_1bit()
888 if (padding) { in bmp_read_4bit()
889 padding = 4 - padding; in bmp_read_4bit()
975 if (padding) { in bmp_read_8bit()
976 padding = 4 - padding; in bmp_read_8bit()
[all …]
/PHP-7.4/ext/standard/tests/strings/
H A Dmoney_format_basic1.phpt37 // Same again but use a '0' for padding character
38 echo "Format with 0 for padding character\n";
42 // Same again but use a '*' for padding character
43 echo "Format again with * for padding character\n";
75 Format with 0 for padding character
82 Format again with * for padding character
H A Dbug72264.phpt2 Bug #72264 (base64_decode $strict fails with whitespace between padding)
H A Dbug28633.phpt2 Bug #28633 (sprintf incorrectly adding padding to floats)
H A Dbug72263.phpt2 Bug #72263 (base64_decode skips a character after padding in strict mode)
H A Dsprintf_f_2.phpt65 var_dump(sprintf("[%010s]", $s)); // zero-padding works on strings too
66 var_dump(sprintf("[%'#10s]", $s)); // use the custom padding character '#'
H A Dstr_pad.phpt72 echo "\n--- padding string as null ---";
370 --- padding string as null ---
/PHP-7.4/ext/hash/sha3/generic32lc/
H A DKeccakSponge.inc85 … displayBytes(1, "Block to be absorbed (last few bits + first bit of padding)", delimitedData1, 1);
88 /* Last few bits, whose delimiter coincides with first bit of padding */
90 …/* If the first bit of padding is at position rate-1, we need a whole new block for the second bit…
93 /* Second bit of padding */
100 displayBytes(1, "Second bit of padding", block, rateInBytes);
225 … displayBytes(1, "Block to be absorbed (last few bits + first bit of padding)", delimitedData1, 1);
228 /* Last few bits, whose delimiter coincides with first bit of padding */
230 …/* If the first bit of padding is at position rate-1, we need a whole new block for the second bit…
233 /* Second bit of padding */
240 displayBytes(1, "Second bit of padding", block, rateInBytes);
/PHP-7.4/ext/hash/sha3/generic64lc/
H A DKeccakSponge.inc85 … displayBytes(1, "Block to be absorbed (last few bits + first bit of padding)", delimitedData1, 1);
88 /* Last few bits, whose delimiter coincides with first bit of padding */
90 …/* If the first bit of padding is at position rate-1, we need a whole new block for the second bit…
93 /* Second bit of padding */
100 displayBytes(1, "Second bit of padding", block, rateInBytes);
225 … displayBytes(1, "Block to be absorbed (last few bits + first bit of padding)", delimitedData1, 1);
228 /* Last few bits, whose delimiter coincides with first bit of padding */
230 …/* If the first bit of padding is at position rate-1, we need a whole new block for the second bit…
233 /* Second bit of padding */
240 displayBytes(1, "Second bit of padding", block, rateInBytes);
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_error_string_basic.phpt113 // private encrypt with unknown padding
116 // private decrypt with failed padding check
119 // public encrypt and decrypt with failed padding check and padding
122 expect_openssl_errors('openssl_private_(en|de)crypt padding', [$err_pem_no_start_line, '04068076', …
173 openssl_private_(en|de)crypt padding: ok
H A Dbug61124.phpt10 …passed is only 4 bytes long, cipher expects an IV of precisely 16 bytes, padding with \0 in %s on …
H A Dopenssl_decrypt_basic.phpt22 // if we want to manage our own padding
H A Dopenssl_encrypt_error.phpt24 // padding of the key is disabled
/PHP-7.4/ext/opcache/tests/
H A Dphi_remove_001.phpt16 $Distribution['padding'] = array();
45 getid3_lib::safe_inc($Distribution['padding'][intval($LongMPEGpaddingLookup[$head4])]);
/PHP-7.4/ext/standard/tests/general_functions/
H A D001.phpt15 echo("sprintf padding and align test: ");
58 sprintf padding and align test: passed
/PHP-7.4/ext/phar/
H A Dtar.h93 char padding[12]; /* unused zeroed bytes */ member
/PHP-7.4/ext/standard/tests/url/
H A Dbug52327.phpt2 Bug #52327 (base64_decode() improper handling of leading padding)
H A Dbase64_decode_basic_003.phpt2 Test base64_decode() function : basic functionality - padding and whitespace
/PHP-7.4/ext/standard/tests/file/
H A Dbug68532.phpt2 Bug #68532: convert.base64-encode omits padding bytes
/PHP-7.4/main/
H A Dfastcgi.c1049 int len, padding; in fcgi_read_request() local
1070 padding = hdr.paddingLength; in fcgi_read_request()
1079 padding = hdr.paddingLength; in fcgi_read_request()
1082 if (len + padding > FCGI_MAX_LENGTH) { in fcgi_read_request()
1091 if (safe_read(req, buf, len+padding) != len+padding) { in fcgi_read_request()
1129 padding = hdr.paddingLength; in fcgi_read_request()
1132 if (len + padding > FCGI_MAX_LENGTH) { in fcgi_read_request()
1136 if (safe_read(req, buf, len+padding) != len+padding) { in fcgi_read_request()
1152 padding = hdr.paddingLength; in fcgi_read_request()
1160 if (safe_read(req, buf, len+padding) != len+padding) { in fcgi_read_request()
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result_zerofill.phpt74 no padding/filling done. Neither with libmysql nor with mysqlnd.
/PHP-7.4/ext/openssl/
H A Dopenssl.c330 ZEND_ARG_INFO(0, padding)
337 ZEND_ARG_INFO(0, padding)
344 ZEND_ARG_INFO(0, padding)
351 ZEND_ARG_INFO(0, padding)
5745 zend_long padding = RSA_PKCS1_PADDING; in PHP_FUNCTION() local
5771 (int)padding) == cryptedlen); in PHP_FUNCTION()
5804 zend_long padding = RSA_PKCS1_PADDING; in PHP_FUNCTION() local
5832 (int)padding); in PHP_FUNCTION()
5873 zend_long padding = RSA_PKCS1_PADDING; in PHP_FUNCTION() local
5899 (int)padding) == cryptedlen); in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/dom/tests/
H A Dbug76738.phpt83 $root_div->setAttribute('style', 'margin: 0px; padding: 0px;');

Completed in 56 milliseconds

12