/php-src/ext/random/tests/01_functions/ |
H A D | bug75170.phpt | 10 $total = 10000; 13 for ($i = 0; $i < $total; $i++) { 16 printf("%.1f%% vs. %.1f%%\n", 100. * $halves[0] / $total, 100. * $halves[1] / $total); 21 $total = 10000; 24 for ($i = 0; $i < $total; $i++) { 27 printf("%.1f%% vs. %.1f%%\n", 100. * $halves[0] / $total, 100. * $halves[1] / $total);
|
/php-src/ext/gd/libgd/ |
H A D | gd_pixelate.c | 27 int total; in gdImagePixelate() local 30 a = r = g = b = c = total = 0; in gdImagePixelate() 42 total++; in gdImagePixelate() 46 if (total > 0) { in gdImagePixelate() 47 c = gdImageColorResolveAlpha(im, r / total, g / total, b / total, a / total); in gdImagePixelate()
|
/php-src/ext/openssl/tests/ |
H A D | bug72333.phpt | 20 $total = 100000; 21 $result = fread($conn, $total); 30 $total += strlen($result); 31 if ($total >= 4000000) { 49 $total = 0; 55 $total += $result; 56 if ($total >= strlen($buf)) { 57 return $total; 59 $buf = substr($buf, $total);
|
H A D | bug74159.phpt | 93 $total = $written; 96 $total += $written; 100 printf("Written %%d bytes\n", $total);
|
/php-src/ext/standard/tests/serialize/ |
H A D | bug78438.phpt | 76 …echo "> Unserialized total node count was $count, expected $expectedSize: ".($expectedSize === $co… 86 > Unserialized total node count was 1, expected 1: CORRECT! 91 > Unserialized total node count was 4, expected 4: CORRECT! 96 > Unserialized total node count was 13, expected 13: CORRECT! 101 > Unserialized total node count was 40, expected 40: CORRECT! 106 > Unserialized total node count was 121, expected 121: CORRECT! 111 > Unserialized total node count was 364, expected 364: CORRECT! 116 > Unserialized total node count was 1093, expected 1093: CORRECT! 121 > Unserialized total node count was 3280, expected 3280: CORRECT!
|
/php-src/sapi/fpm/fpm/ |
H A D | fpm_status.h | 14 int total; member 23 void fpm_status_update_activity(struct fpm_shm_s *shm, int idle, int active, int total, unsigned cu…
|
/php-src/ext/standard/tests/array/ |
H A D | bug24980.phpt | 2 Bug #24980 (array_reduce() uses first element as default running total) 14 $total = array_reduce($numbers, 'add_up'); 15 print "Total is $total\n";
|
/php-src/ext/pdo_sqlite/tests/subclasses/ |
H A D | pdo_sqlite_createaggregate_trampoline.phpt | 22 $context = ['total' => 0, 'values' => []]; 24 $context['total'] += (int) $arguments[2]; 25 $context['values'][] = $context['total'];
|
/php-src/sapi/cli/tests/ |
H A D | sapi_windows_set_ctrl_handler.phpt | 50 $max = 5000; $total = 0; $step = 100; 51 while(proc_get_status($proc)["running"] && $max > $total) { 53 $total += $step; 64 echo "Child $child_pid exit with status ", $status["exitcode"], " after {$total}us\n";
|
H A D | upload_2G.phpt | 63 $total = $length + strlen($prev) + strlen($post); 69 Content-Length: {$total}
|
/php-src/ext/sqlite3/tests/ |
H A D | sqlite3_25_create_aggregate.phpt | 13 $context = array('total' => 0, 'values' => array()); 15 $context['total'] += intval($string); 16 $context['values'][] = $context['total'];
|
H A D | sqlite3_trampoline_create_aggregate.phpt | 18 $context = ['total' => 0, 'values' => []]; 20 $context['total'] += (int) $arguments[2]; 21 $context['values'][] = $context['total'];
|
H A D | sqlite3_trampoline_create_aggregate_no_leak.phpt | 18 $context = ['total' => 0, 'values' => []]; 20 $context['total'] += (int) $arguments[2]; 21 $context['values'][] = $context['total'];
|
/php-src/ext/xml/tests/ |
H A D | bug72714.phpt | 18 $xml = '<ns1:total>867</ns1:total>';
|
H A D | bug50576.phpt | 12 <ns1:total>867</ns1:total>
|
/php-src/sapi/fpm/tests/ |
H A D | proc-idle-timeout.phpt | 35 'total processes' => 2, 40 'total processes' => 1,
|
H A D | bug77023-pm-dynamic-blocking-sigquit.phpt | 43 'total processes' => 2, 52 'total processes' => 1,
|
/php-src/ext/standard/ |
H A D | crypt_sha256.c | 51 uint32_t total[2]; member 108 ctx->total[0] += (uint32_t)len; in sha256_process_block() 109 if (ctx->total[0] < len) { in sha256_process_block() 110 ++ctx->total[1]; in sha256_process_block() 199 ctx->total[0] = ctx->total[1] = 0; in sha256_init_ctx() 216 ctx->total[0] += bytes; in sha256_finish_ctx() 217 if (ctx->total[0] < bytes) { in sha256_finish_ctx() 218 ++ctx->total[1]; in sha256_finish_ctx() 225 *(uint32_t *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3); in sha256_finish_ctx() 226 *(uint32_t *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) | in sha256_finish_ctx() [all …]
|
H A D | crypt_sha512.c | 49 uint64_t total[2]; member 136 ctx->total[0] += len; in sha512_process_block() 137 if (ctx->total[0] < len) { in sha512_process_block() 138 ++ctx->total[1]; in sha512_process_block() 230 ctx->total[0] = ctx->total[1] = 0; in sha512_init_ctx() 247 ctx->total[0] += bytes; in sha512_finish_ctx() 248 if (ctx->total[0] < bytes) { in sha512_finish_ctx() 249 ++ctx->total[1]; in sha512_finish_ctx() 256 *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP(ctx->total[0] << 3); in sha512_finish_ctx() 257 *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP((ctx->total[1] << 3) | in sha512_finish_ctx() [all …]
|
/php-src/ext/fileinfo/tests/upstream/ |
H A D | uf2.result | 1 UF2 firmware image, family ESP32-S2, address 00000000, 4829 total blocks
|
/php-src/Zend/ |
H A D | micro_bench.php | 255 global $total; 260 $total += $last_time; 273 function total() function 275 global $total; 278 $num = number_format($total,3); 358 total($t0, "Total");
|
H A D | bench.php | 362 global $total; 365 $total += $end-$start; 374 function total() function 376 global $total; 379 $num = number_format($total,3); 421 total();
|
/php-src/Zend/tests/float_to_int/ |
H A D | warnings_float_literals.phpt | 7 // 8 Warnings generated in total 26 // 2 warnings in total 34 // 2 warnings in total 41 // 2 warnings in total
|
/php-src/ext/sysvshm/ |
H A D | php_sysvshm.h | 54 zend_long total; member
|
/php-src/ext/date/tests/ |
H A D | bug52480.phpt | 8 // If the DateInterval object was created by DateTime::diff(), then this is the total
|