| /PHP_5_5/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 | php_math.h | 57 PHP_FUNCTION(round); variable 156 /* Define rounding modes (all are round-to-nearest) */
|
| /PHP_5_5/ext/gmp/ |
| H A D | gmp.c | 73 ZEND_ARG_INFO(0, round) 79 ZEND_ARG_INFO(0, round) 85 ZEND_ARG_INFO(0, round) 878 /* {{{ proto array gmp_div_qr(resource a, resource b [, int round]) 883 long round = GMP_ROUND_ZERO; local 885 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ZZ|l", &a_arg, &b_arg, &round) == FAILURE) { 889 switch (round) { 904 /* {{{ proto resource gmp_div_r(resource a, resource b [, int round]) 909 long round = GMP_ROUND_ZERO; local 911 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ZZ|l", &a_arg, &b_arg, &round) 934 long round = GMP_ROUND_ZERO; local [all...] |
| /PHP_5_5/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_5_5/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);
|