Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 121) sorted by last modified time

12345

/PHP-5.3/win32/
H A Dparam.h15 #define howmany(x,y) (((x)+((y)-1))/(y)) argument
16 #define roundup(x,y) ((((x)+((y)-1))/(y))*(y)) argument
/PHP-5.3/sapi/thttpd/
H A Dthttpd.c53 #define PHP_SYS_CALL(x) do { x } while (n == -1 && errno == EINTR) argument
/PHP-5.3/scripts/dev/
H A Dfind_tested.php212 function filter_functions($x) {
216 function map_token_value($x) {
/PHP-5.3/sapi/embed/
H A Dphp_embed.h36 #define PHP_EMBED_START_BLOCK(x,y) { \ argument
47 #define PHP_EMBED_START_BLOCK(x,y) { \ argument
/PHP-5.3/sapi/fpm/fpm/
H A Dfpm_config.h14 # define __attribute__(x) /*NOTHING*/ argument
/PHP-5.3/sapi/apache2filter/
H A Dsapi_apache2.c408 #define safe_strdup(x) ((x)?strdup((x)):NULL) in php_apache_request_ctor() argument
/PHP-5.3/sapi/aolserver/
H A Daolserver.c441 #define safe_strdup(x) ((x)?strdup((x)):NULL) in php_ns_request_ctor() argument
/PHP-5.3/main/
H A Dwin95nt.h36 #define lstat(x, y) php_sys_lstat(x, y) argument
H A Dreentrancy.c46 #define local_lock(x) tsrm_mutex_lock(reentrant_locks[x]) argument
47 #define local_unlock(x) tsrm_mutex_unlock(reentrant_locks[x]) argument
51 #define local_lock(x) argument
52 #define local_unlock(x) argument
H A Dnetwork.c107 # define PHP_GAI_STRERROR(x) (gai_strerror(x)) argument
109 # define PHP_GAI_STRERROR(x) (php_gai_strerror(x)) argument
/PHP-5.3/ext/zip/lib/
H A Dzipint.h282 #define ZIP_ENTRY_DATA_CHANGED(x) \ argument
/PHP-5.3/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc.c210 #define XMLRPC_IS_NUMBER(x) if (x < '0' || x > '9') return -1; in date_from_ISO8601() argument
/PHP-5.3/ext/sybase_ct/
H A Dphp_sybase_ct.c250 #define efree_n(x) { efree(x); x = NULL; } argument
251 #define efree_if(x) if (x) efree_n(x) argument
/PHP-5.3/ext/standard/
H A Durl.c599 register int x, y; local
H A Durl_scanner_ex.c253 #define scdebug(x) printf x argument
255 #define scdebug(x) argument
H A Dversioning.c54 #define isdig(x) (isdigit(x)&&(x)!='.') in php_canonicalize_version() argument
55 #define isndig(x) (!isdigit(x)&&(x)!='.') in php_canonicalize_version() argument
56 #define isspecialver(x) ((x)=='-'||(x)=='_'||(x)=='+') in php_canonicalize_version() argument
H A Dstring.c293 #define REGISTER_NL_LANGINFO_CONSTANT(x) REGISTER_LONG_CONSTANT(#x, x, CONST_CS | CONST_PERSISTENT) in PHP_MINIT_FUNCTION() argument
H A Dscanf.c98 #define UCHAR(x) (zend_uchar)(x) argument
H A Dsha1.c124 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
125 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument
126 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
127 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument
131 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument
265 php_uint32 d = state[3], e = state[4], x[16], tmp; local
H A Dphp_smart_str.h31 #define smart_str_0(x) do { \ argument
H A Dmath.c229 static double php_acosh(double x) in php_acosh()
253 static double php_log1p(double x) in php_log1p()
265 static double php_expm1(double x) in php_expm1()
H A Dmd5.c146 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
147 #define G(x, y, z) ((y) ^ ((z) & ((x) ^ (y)))) argument
148 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
149 #define I(x, y, z) ((y) ^ ((x) | ~(z))) argument
154 #define STEP(f, a, b, c, d, x, t, s) \ argument
H A Dcrypt_blowfish.c446 static void BF_swap(BF_word *x, int count) in BF_swap()
H A Dcrypt_sha256.c148 #define Ch(x, y, z) ((x & y) ^ (~x & z)) in sha256_process_block() argument
149 #define Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) in sha256_process_block() argument
150 #define S0(x) (CYCLIC (x, 2) ^ CYCLIC (x, 13) ^ CYCLIC (x, 22)) in sha256_process_block() argument
151 #define S1(x) (CYCLIC (x, 6) ^ CYCLIC (x, 11) ^ CYCLIC (x, 25)) in sha256_process_block() argument
152 #define R0(x) (CYCLIC (x, 7) ^ CYCLIC (x, 18) ^ (x >> 3)) in sha256_process_block() argument
153 #define R1(x) (CYCLIC (x, 17) ^ CYCLIC (x, 19) ^ (x >> 10)) in sha256_process_block() argument
H A Dcrypt_sha512.c173 #define Ch(x, y, z) ((x & y) ^ (~x & z)) in sha512_process_block() argument
174 #define Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) in sha512_process_block() argument
175 #define S0(x) (CYCLIC (x, 28) ^ CYCLIC (x, 34) ^ CYCLIC (x, 39)) in sha512_process_block() argument
176 #define S1(x) (CYCLIC (x, 14) ^ CYCLIC (x, 18) ^ CYCLIC (x, 41)) in sha512_process_block() argument
177 #define R0(x) (CYCLIC (x, 1) ^ CYCLIC (x, 8) ^ (x >> 7)) in sha512_process_block() argument
178 #define R1(x) (CYCLIC (x, 19) ^ CYCLIC (x, 61) ^ (x >> 6)) in sha512_process_block() argument

Completed in 154 milliseconds

12345