| /PHP_TRUNK/ext/phar/tests/files/ |
| H A D | pear2coverage.phar.php | 340 $percent = round(($covered / $total) * 100); 1156 return round(($coverage[0] / $coverage[1]) * 100);
|
| /PHP_TRUNK/ext/soap/interop/ |
| H A D | test.utility.php | 47 $f1 = round($f1, $d); 48 $f2 = round($f2, $d);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | crypt_freesec.c | 382 int shifts, round; local 432 for (round = 0; round < 16; round++) { 435 shifts += key_shifts[round]; 440 data->de_keysl[15 - round] = 441 data->en_keysl[round] = comp_maskl[0][(t0 >> 21) & 0x7f] 450 data->de_keysr[15 - round] = 451 data->en_keysr[round] = comp_maskr[0][(t0 >> 21) & 0x7f] 472 int round; local [all...] |
| H A D | math.c | 154 is returned, pre-round the result to the precision */ 182 /* round the temp value */ 185 /* see if it makes sense to use simple division to round the value */ 341 /* {{{ proto float round(float number [, int precision [, int mode]]) 343 PHP_FUNCTION(round)
|
| H A D | php_math.h | 57 PHP_FUNCTION(round); variable 156 /* Define rounding modes (all are round-to-nearest) */
|
| H A D | basic_functions.c | 2903 PHP_FE(round, arginfo_round)
|
| /PHP_TRUNK/scripts/dev/ |
| H A D | search_underscores.php | 79 printf("Errors: %5d (%.1f%%)\n", $err, round($err * 100 / $cnt, 1));
|
| /PHP_TRUNK/ext/hash/ |
| H A D | hash_gost.c | 30 #define round(k1, k2) \ macro 41 round(key[0], key[1]) \ 42 round(key[2], key[3]) \ 43 round(key[4], key[5]) \ 44 round(key[6], key[7]) \ 45 round(key[0], key[1]) \ 46 round(key[2], key[3]) \ 47 round(key[4], key[5]) \ 48 round(key[6], key[7]) \ 49 round(ke [all...] |
| H A D | hash_snefru.c | 26 #define round(L, C, N, SB) \ macro 72 round(B15, B00, B01, t0); 73 round(B00, B01, B02, t0); 74 round(B01, B02, B03, t1); 75 round(B02, B03, B04, t1); 76 round(B03, B04, B05, t0); 77 round(B04, B05, B06, t0); 78 round(B05, B06, B07, t1); 79 round(B06, B07, B08, t1); 80 round(B0 [all...] |
| H A D | hash_tiger.c | 42 #define round(a,b,c,x,mul) \ macro 55 round(a,b,c,x0,mul) \ 56 round(b,c,a,x1,mul) \ 57 round(c,a,b,x2,mul) \ 58 round(a,b,c,x3,mul) \ 59 round(b,c,a,x4,mul) \ 60 round(c,a,b,x5,mul) \ 61 round(a,b,c,x6,mul) \ 62 round(b,c,a,x7,mul)
|
| /PHP_TRUNK/ext/zlib/ |
| H A D | zlib.c | 347 int status, round = 0; local 363 fprintf(stderr, "\n%3d: %3d PRIOR: size=%7lu,\tfree=%7lu,\tused=%7lu,\tavail_in=%7lu,\tavail_out=%7lu\n", round, status, buffer.size, buffer.free, buffer.used, Z->avail_in, Z->avail_out); 370 fprintf(stderr, "%3d: %3d AFTER: size=%7lu,\tfree=%7lu,\tused=%7lu,\tavail_in=%7lu,\tavail_out=%7lu\n", round, status, buffer.size, buffer.free, buffer.used, Z->avail_in, Z->avail_out); 374 } while ((Z_BUF_ERROR == status || (Z_OK == status && Z->avail_in)) && ++round < 100);
|
| /PHP_TRUNK/ext/oci8/tests/ |
| H A D | conn_attr.inc | 106 //Do a round-trip here
|
| /PHP_TRUNK/ext/gmp/ |
| H A D | gmp.c | 71 ZEND_ARG_INFO(0, round) 77 ZEND_ARG_INFO(0, round) 83 ZEND_ARG_INFO(0, round) 1186 /* {{{ proto array gmp_div_qr(mixed a, mixed b [, int round]) 1191 long round = GMP_ROUND_ZERO; local 1193 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zz|l", &a_arg, &b_arg, &round) == FAILURE) { 1197 switch (round) { 1214 /* {{{ proto GMP gmp_div_r(mixed a, mixed b [, int round]) 1219 long round = GMP_ROUND_ZERO; local 1221 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zz|l", &a_arg, &b_arg, &round) 1247 long round = GMP_ROUND_ZERO; local [all...] |