/PHP-5.6/ext/simplexml/tests/ |
H A D | 026.phpt | 13 function traverse_xml($xml, $pad = '') 16 echo "$pad<$name"; 24 traverse_xml($node, $pad.' '); 26 echo $pad."</$name>\n";
|
H A D | 028.phpt | 11 function traverse_xml($xml, $pad = '') 14 echo "$pad<$name"; 22 traverse_xml($node, $pad.' '); 24 echo $pad."</$name>\n";
|
H A D | 018.phpt | 30 function traverse_xml($pad,$xml) { 32 echo $pad."<$name"; 37 traverse_xml($pad." ",$node); 38 echo $pad."</$name>\n";
|
H A D | 027.phpt | 11 function traverse_xml($xml, $pad = '') 14 echo "$pad<$name"; 22 traverse_xml($node, $pad.' '); 24 echo $pad."</$name>\n";
|
/PHP-5.6/Zend/ |
H A D | micro_bench.php | 262 $pad = str_repeat(" ", 24-strlen($name)-strlen($num)); 264 echo $name.$pad.$num."\n"; 267 echo $name.$pad.$num." ".$num2."\n"; 276 $pad = str_repeat("-", 24); 277 echo $pad."\n"; 279 $pad = str_repeat(" ", 24-strlen("Total")-strlen($num)); 280 echo "Total".$pad.$num."\n";
|
H A D | bench.php | 367 $pad = str_repeat(" ", 24-strlen($name)-strlen($num)); 369 echo $name.$pad.$num."\n"; 377 $pad = str_repeat("-", 24); 378 echo $pad."\n"; 380 $pad = str_repeat(" ", 24-strlen("Total")-strlen($num)); 381 echo "Total".$pad.$num."\n";
|
/PHP-5.6/ext/gd/tests/ |
H A D | bug66590_1.phpt | 2 Bug #66590 (imagewebp() doesn't pad to even length) - segfault
|
H A D | bug66590.phpt | 2 Bug #66590 (imagewebp() doesn't pad to even length)
|
/PHP-5.6/ext/standard/tests/url/ |
H A D | bug55273.phpt | 2 Bug #55273 (base64_decode() with strict rejects whitespace after pad)
|
H A D | bug47174.phpt | 2 Bug #47174 (base64_decode() interprets pad char in mid string as terminator)
|
/PHP-5.6/sapi/fpm/fpm/ |
H A D | fastcgi.c | 366 int pad = ((len + 7) & ~7) - len; in fcgi_make_header() local 370 hdr->paddingLength = (unsigned char)pad; in fcgi_make_header() 376 if (pad) { in fcgi_make_header() 377 memset(((unsigned char*)hdr) + sizeof(fcgi_header) + len, 0, pad); in fcgi_make_header() 379 return pad; in fcgi_make_header() 1029 int pad; local 1046 pad = (((len - pos) + 7) & ~7) - (len - pos); 1047 rest = pad ? 8 - pad : 0; 1059 if (pad) {
|
/PHP-5.6/ext/standard/tests/strings/ |
H A D | str_pad.phpt | 19 echo "\n#### variations with input string and pad-length ####\n"; 53 echo "\n#### variation with pad string ####\n"; 89 #### variations with input string and pad-length #### 331 #### variation with pad string ####
|
/PHP-5.6/ext/standard/ |
H A D | crypt_sha256.c | 227 size_t pad; in sha256_finish_ctx() local 236 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes; in sha256_finish_ctx() 237 memcpy(&ctx->buffer[bytes], fillbuf, pad); in sha256_finish_ctx() 240 *(uint32_t *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3); in sha256_finish_ctx() 241 *(uint32_t *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) | in sha256_finish_ctx() 245 sha256_process_block(ctx->buffer, bytes + pad + 8, ctx); in sha256_finish_ctx()
|
H A D | crypt_sha512.c | 254 size_t pad; in sha512_finish_ctx() local 263 pad = bytes >= 112 ? 128 + 112 - (size_t)bytes : 112 - (size_t)bytes; in sha512_finish_ctx() 264 memcpy(&ctx->buffer[bytes], fillbuf, pad); in sha512_finish_ctx() 267 *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP(ctx->total[0] << 3); in sha512_finish_ctx() 268 *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP((ctx->total[1] << 3) | in sha512_finish_ctx() 272 sha512_process_block(ctx->buffer, (size_t)(bytes + pad + 16), ctx); in sha512_finish_ctx()
|
H A D | pack.c | 789 char pad = '\0'; in PHP_FUNCTION() local 802 if (input[inputpos + s] == pad) in PHP_FUNCTION()
|
/PHP-5.6/sapi/cgi/ |
H A D | fastcgi.c | 834 int pad = ((len + 7) & ~7) - len; in fcgi_make_header() local 838 hdr->paddingLength = (unsigned char)pad; in fcgi_make_header() 844 if (pad) { in fcgi_make_header() 845 memset(((unsigned char*)hdr) + sizeof(fcgi_header) + len, 0, pad); in fcgi_make_header() 847 return pad; in fcgi_make_header() 1414 int pad; local 1431 pad = (((len - pos) + 7) & ~7) - (len - pos); 1432 rest = pad ? 8 - pad : 0; 1444 if (pad) {
|
/PHP-5.6/ext/standard/tests/array/ |
H A D | array_pad.phpt | 96 Warning: array_pad(): You may only pad up to 1048576 elements at a time in %s on line %d
|
H A D | array_pad_variation2.phpt | 140 Warning: array_pad(): You may only pad up to 1048576 elements at a time in %s on line %d 144 Warning: array_pad(): You may only pad up to 1048576 elements at a time in %s on line %d
|
/PHP-5.6/main/ |
H A D | snprintf.c | 71 static char * __cvt(double value, int ndigit, int *decpt, int *sign, int fmode, int pad) /* {{{ */ in __cvt() argument 105 if (pad && fmode) { in __cvt() 118 if (pad) { in __cvt()
|
/PHP-5.6/win32/build/ |
H A D | confutils.js | 409 pad = " "; 411 pad += " "; 413 STDOUT.WriteLine(" " + arg.arg + pad + word_wrap_and_indent(max_width + 5, arg.helptext));
|
/PHP-5.6/ext/pgsql/ |
H A D | pgsql.c | 6748 … *pg_link, smart_str *querystr, HashTable *ht, int where_cond, const char *pad, int pad_len, ulong… argument 6806 smart_str_appendl(querystr, pad, pad_len);
|
/PHP-5.6/ |
H A D | NEWS | 1170 . Fixed bug #66590 (imagewebp() doesn't pad to even length). (cmb) 5394 pad). (Ilia) 8103 - Fixed bug #47174 (base64_decode() interprets pad char in mid string as 8576 - Fixed bug #43482 (array_pad() does not warn on very small pad numbers). (Ilia)
|