/PHP-7.0/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()
|
H A D | gd_topal.c | 726 long total = 0; local 746 total += count; 758 cinfo->colormap[0][icolor] = (JSAMPLE) ((c0total + (total >> 1)) / total); 759 cinfo->colormap[1][icolor] = (JSAMPLE) ((c1total + (total >> 1)) / total); 760 cinfo->colormap[2][icolor] = (JSAMPLE) ((c2total + (total >> 1)) / total); 763 if (total) 765 nim->red[icolor] = (int) ((c0total + (total >> 1)) / total); 766 nim->green[icolor] = (int) ((c1total + (total >> 1)) / total); 767 nim->blue[icolor] = (int) ((c2total + (total >> 1)) / total);
|
/PHP-7.0/ext/openssl/tests/ |
H A D | bug72333.phpt | 17 $total = 100000; 18 $result = fread($conn, $total); 27 $total += strlen($result); 28 if ($total >= 4000000) { 44 $total = 0; 50 $total += $result; 51 if ($total >= strlen($buf)) { 52 return $total; 54 $buf = substr($buf, $total);
|
H A D | bug74159.phpt | 88 $total = $written; 91 $total += $written; 95 printf("Written %d bytes\n", $total);
|
/PHP-7.0/sapi/fpm/fpm/ |
H A D | fpm_status.h | 16 int total; member 25 void fpm_status_update_activity(struct fpm_shm_s *shm, int idle, int active, int total, unsigned cu…
|
/PHP-7.0/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-7.0/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'];
|
/PHP-7.0/ext/xml/tests/ |
H A D | bug72714.phpt | 16 $xml = '<ns1:total>867</ns1:total>';
|
H A D | bug50576.phpt | 14 <ns1:total>867</ns1:total>
|
/PHP-7.0/ext/standard/ |
H A D | crypt_sha256.c | 66 uint32_t total[2]; member 123 ctx->total[0] += (uint32_t)len; in sha256_process_block() 124 if (ctx->total[0] < len) { in sha256_process_block() 125 ++ctx->total[1]; in sha256_process_block() 214 ctx->total[0] = ctx->total[1] = 0; in sha256_init_ctx() 231 ctx->total[0] += bytes; in sha256_finish_ctx() 232 if (ctx->total[0] < bytes) { in sha256_finish_ctx() 233 ++ctx->total[1]; 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() [all …]
|
H A D | crypt_sha512.c | 60 uint64_t total[2]; member 147 ctx->total[0] += len; in sha512_process_block() 148 if (ctx->total[0] < len) { in sha512_process_block() 149 ++ctx->total[1]; in sha512_process_block() 241 ctx->total[0] = ctx->total[1] = 0; in sha512_init_ctx() 258 ctx->total[0] += bytes; in sha512_finish_ctx() 259 if (ctx->total[0] < bytes) { in sha512_finish_ctx() 260 ++ctx->total[1]; 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() [all …]
|
/PHP-7.0/sapi/fpm/tests/ |
H A D | 010.phpt | 8 018+ total processes: 1 10 018- total processes: 2 74 total processes: 1
|
/PHP-7.0/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($t0, "Total");
|
/PHP-7.0/sapi/cli/tests/ |
H A D | upload_2G.phpt | 53 $total = $length + strlen($prev) + strlen($post); 59 Content-Length: {$total}
|
/PHP-7.0/ext/pdo_oci/tests/ |
H A D | bug60994.phpt | 31 $string1 = 'abc' . str_repeat('j', 8187) . 'xyz'; // 8193 chars total works fine here (even 1 milli… 48 $string2 = 'abc' . str_repeat('£', 8187) . 'xyz'; // 8193 chars total is when it breaks 65 $string3 = 'abc' . str_repeat('Җ', 8187) . 'xyz'; // 8193 chars total is when it breaks 82 $string4 = 'abc' . str_repeat('の', 8187) . 'xyz'; // 8193 chars total is when it breaks
|
/PHP-7.0/ext/sysvshm/ |
H A D | php_sysvshm.h | 64 zend_long total; member
|
/PHP-7.0/ext/enchant/ |
H A D | enchant.c | 239 int total; in php_enchant_broker_free() local 240 total = broker->dictcnt-1; in php_enchant_broker_free() 242 if (broker->dict[total]) { in php_enchant_broker_free() 243 enchant_dict *pdict = broker->dict[total]; in php_enchant_broker_free() 244 broker->dict[total] = NULL; in php_enchant_broker_free() 248 total--; in php_enchant_broker_free() 249 } while (total>=0); in php_enchant_broker_free()
|
/PHP-7.0/ext/mysqli/tests/ |
H A D | mysqli_pconn_max_links.phpt | 208 ["total"]=> 216 ["total"]=> 230 ["total"]=> 242 ["total"]=> 250 ["total"]=> 265 ["total"]=>
|
/PHP-7.0/ext/standard/tests/file/ |
H A D | file.inc | 163 Integer, Count of total files permission changed. 207 $count = total no. of files to be created, default = 1 221 $flag = specifiy if size has to be treated as no of total bytes or 229 created => total file created 230 filled => total files filled 231 perms_changed => total files permission changed 329 $link_count = total no. of links to be created to given file, default = 1 346 created => total file created 347 filled => total files filled, always returned as 1 348 perms_changed => total files permission changed
|
H A D | disk_total_space_basic.phpt | 8 * return the total number of bytes on the corresponding filesyatem
|
H A D | disk_total_space_error.phpt | 13 * will return the total number of bytes on the corresponding
|
H A D | disk_total_space_error-win32.phpt | 13 * will return the total number of bytes on the corresponding
|
H A D | disk_total_space_variation.phpt | 8 * will return the total number of bytes on the corresponding
|
/PHP-7.0/ext/standard/tests/network/ |
H A D | setcookie.phpt | 68 : 'A total of '.$i.' errors found.';
|