Home
last modified time | relevance | path

Searched refs:total (Results 1 – 25 of 47) sorted by relevance

12

/PHP-7.1/ext/gd/libgd/
H A Dgd_pixelate.c27 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 Dgd_topal.c726 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.1/ext/openssl/tests/
H A Dbug72333.phpt17 $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 Dbug74159.phpt87 $total = $written;
90 $total += $written;
94 printf("Written %d bytes\n", $total);
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_status.h15 int total; member
24 void fpm_status_update_activity(struct fpm_shm_s *shm, int idle, int active, int total, unsigned cu…
/PHP-7.1/ext/standard/tests/array/
H A Dbug24980.phpt2 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.1/ext/sqlite3/tests/
H A Dsqlite3_25_create_aggregate.phpt13 $context = array('total' => 0, 'values' => array());
15 $context['total'] += intval($string);
16 $context['values'][] = $context['total'];
/PHP-7.1/ext/xml/tests/
H A Dbug72714.phpt16 $xml = '<ns1:total>867</ns1:total>';
H A Dbug50576.phpt14 <ns1:total>867</ns1:total>
/PHP-7.1/ext/standard/
H A Dcrypt_sha256.c66 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 Dcrypt_sha512.c60 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.1/Zend/
H A Dmicro_bench.php255 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 Dbench.php362 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.1/sapi/cli/tests/
H A Dupload_2G.phpt53 $total = $length + strlen($prev) + strlen($post);
59 Content-Length: {$total}
/PHP-7.1/ext/pdo_oci/tests/
H A Dbug60994.phpt31 $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.1/ext/sysvshm/
H A Dphp_sysvshm.h64 zend_long total; member
/PHP-7.1/ext/enchant/
H A Denchant.c239 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.1/ext/mysqli/tests/
H A Dmysqli_pconn_max_links.phpt208 ["total"]=>
216 ["total"]=>
230 ["total"]=>
242 ["total"]=>
250 ["total"]=>
265 ["total"]=>
/PHP-7.1/sapi/fpm/tests/
H A Dstatus-basic.phpt27 'total processes' => 1,
/PHP-7.1/ext/standard/tests/file/
H A Dfile.inc163 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 Ddisk_total_space_basic.phpt8 * return the total number of bytes on the corresponding filesyatem
H A Ddisk_total_space_error.phpt13 * will return the total number of bytes on the corresponding
H A Ddisk_total_space_error-win32.phpt13 * will return the total number of bytes on the corresponding
H A Ddisk_total_space_variation.phpt8 * will return the total number of bytes on the corresponding
/PHP-7.1/ext/standard/tests/network/
H A Dsetcookie.phpt68 : 'A total of '.$i.' errors found.';

Completed in 47 milliseconds

12