Searched refs:pad (Results 1 - 10 of 10) sorted by relevance
| /PHP_TRUNK/Zend/ |
| H A D | bench.php | 367 $pad = str_repeat(" ", 24-strlen($name)-strlen($num)); variable 369 echo $name.$pad.$num."\n"; 377 $pad = str_repeat("-", 24); variable 378 echo $pad."\n"; 380 $pad = str_repeat(" ", 24-strlen("Total")-strlen($num)); variable 381 echo "Total".$pad.$num."\n";
|
| H A D | micro_bench.php | 262 $pad = str_repeat(" ", 24-strlen($name)-strlen($num)); variable 264 echo $name.$pad.$num."\n"; 267 echo $name.$pad.$num." ".$num2."\n"; 276 $pad = str_repeat("-", 24); variable 277 echo $pad."\n"; 279 $pad = str_repeat(" ", 24-strlen("Total")-strlen($num)); variable 280 echo "Total".$pad.$num."\n";
|
| /PHP_TRUNK/ext/standard/ |
| H A D | crypt_sha256.c | 84 /* This array contains the bytes used to pad the buffer to the next 233 size_t pad; local 242 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes; 243 memcpy(&ctx->buffer[bytes], fillbuf, pad); 246 *(uint32_t *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3); 247 *(uint32_t *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) | 251 sha256_process_block(ctx->buffer, bytes + pad + 8, ctx);
|
| H A D | crypt_sha512.c | 86 /* This array contains the bytes used to pad the buffer to the next 260 size_t pad; local 269 pad = bytes >= 112 ? 128 + 112 - (size_t)bytes : 112 - (size_t)bytes; 270 memcpy(&ctx->buffer[bytes], fillbuf, pad); 273 *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP(ctx->total[0] << 3); 274 *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP((ctx->total[1] << 3) | 278 sha512_process_block(ctx->buffer, (size_t)(bytes + pad + 16), ctx);
|
| H A D | pack.c | 720 char pad = '\0'; local 733 if (input[inputpos + s] == pad)
|
| /PHP_TRUNK/win32/build/ |
| H A D | confutils.js | 405 pad = " ";
407 pad += " ";
409 STDOUT.WriteLine(" " + arg.arg + pad + word_wrap_and_indent(max_width + 5, arg.helptext));
|
| /PHP_TRUNK/main/ |
| H A D | snprintf.c | 66 static char * __cvt(double value, int ndigit, int *decpt, int *sign, int fmode, int pad) /* {{{ */ argument 100 if (pad && fmode) { 113 if (pad) {
|
| /PHP_TRUNK/sapi/cgi/ |
| H A D | fastcgi.c | 826 int pad = ((len + 7) & ~7) - len; local 830 hdr->paddingLength = (unsigned char)pad; 836 if (pad) { 837 memset(((unsigned char*)hdr) + sizeof(fcgi_header) + len, 0, pad); 839 return pad; 1403 int pad; local 1420 pad = (((len - pos) + 7) & ~7) - (len - pos); 1421 rest = pad ? 8 - pad : 0; 1433 if (pad) { [all...] |
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fastcgi.c | 359 int pad = ((len + 7) & ~7) - len; local 363 hdr->paddingLength = (unsigned char)pad; 369 if (pad) { 370 memset(((unsigned char*)hdr) + sizeof(fcgi_header) + len, 0, pad); 372 return pad; 996 int pad; local 1013 pad = (((len - pos) + 7) & ~7) - (len - pos); 1014 rest = pad ? 8 - pad : 0; 1026 if (pad) { [all...] |
| /PHP_TRUNK/ext/pgsql/ |
| H A D | pgsql.c | 6086 static inline int build_assignment_string(smart_str *querystr, HashTable *ht, int where_cond, const char *pad, int pad_len TSRMLS_DC) argument 6126 smart_str_appendl(querystr, pad, pad_len);
|
Completed in 25 milliseconds