Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 121) sorted by relevance

12345

/PHP-5.3/ext/gd/libgd/
H A Dgdtestft.c6 #define DEG2RAD(x) ((x)*PI/180.) argument
8 #define MAX(x,y) ((x) > (y) ? (x) : (y)) argument
9 #define MIN(x,y) ((x) < (y) ? (x) : (y)) argument
11 #define MAX4(x,y,z,w) \ argument
13 #define MIN4(x,y,z,w) \ argument
16 #define MAXX(x) MAX4(x[0],x[2],x[4],x[6]) argument
17 #define MINX(x) MIN4(x[0],x[2],x[4],x[6]) argument
18 #define MAXY(x) MAX4(x[1],x[3],x[5],x[7]) argument
19 #define MINY(x) MIN4(x[1],x[3],x[5],x[7]) argument
H A Dgdhelpers.h32 #define gdMutexDeclare(x) MUTEX_T x argument
33 #define gdMutexSetup(x) x = tsrm_mutex_alloc() argument
34 #define gdMutexShutdown(x) tsrm_mutex_free(x) argument
35 #define gdMutexLock(x) tsrm_mutex_lock(x) argument
36 #define gdMutexUnlock(x) tsrm_mutex_unlock(x) argument
38 #define gdMutexDeclare(x) argument
39 #define gdMutexSetup(x) argument
40 #define gdMutexShutdown(x) argument
41 #define gdMutexLock(x) argument
42 #define gdMutexUnlock(x) argument
H A Dgd_filter.c18 int x, y; in gdImageNegate() local
51 int x, y; in gdImageGrayScale() local
84 int x, y; in gdImageBrightness() local
129 int x, y; in gdImageContrast() local
189 int x, y; in gdImageColor() local
232 int x, y, i, j, new_a; in gdImageConvolution() local
293 int x, y, i, j; in gdImageSelectiveBlur() local
H A Dgd.c30 # define fabsf(x) ((float)(fabs(x))) argument
610 int x, y, p; in gdImagePaletteCopy() local
1288 long x, y, inc; in gdImageAALine() local
1705 int x, y; in gdImageFilledArc() local
2108 int x, y; in gdImageFilledRectangle() local
2154 int x, y; in gdImageCopy() local
2253 int x, y; in gdImageCopyMerge() local
2293 int x, y; in gdImageCopyMergeGray() local
2347 int x, y; in gdImageCopyResized() local
2459 int x, y; in gdImageCopyResampled() local
[all …]
/PHP-5.3/ext/date/lib/
H A Dastro.c40 #define sind(x) sin((x)*DEGRAD) argument
41 #define cosd(x) cos((x)*DEGRAD) argument
42 #define tand(x) tan((x)*DEGRAD) argument
44 #define atand(x) (RADEG*atan(x)) argument
45 #define asind(x) (RADEG*asin(x)) argument
46 #define acosd(x) (RADEG*acos(x)) argument
47 #define atan2d(y,x) (RADEG*atan2(y,x)) argument
69 static double astro_revolution(double x) in astro_revolution()
77 static double astro_rev180( double x ) in astro_rev180()
135 x, y, /* x, y coordinates in orbit */ in astro_sunpos() local
[all …]
/PHP-5.3/ext/dba/
H A Dphp_dba.h93 #define DBA_OPEN_FUNC(x) \ argument
95 #define DBA_CLOSE_FUNC(x) \ argument
97 #define DBA_FETCH_FUNC(x) \ argument
99 #define DBA_UPDATE_FUNC(x) \ argument
101 #define DBA_EXISTS_FUNC(x) \ argument
103 #define DBA_DELETE_FUNC(x) \ argument
105 #define DBA_FIRSTKEY_FUNC(x) \ argument
107 #define DBA_NEXTKEY_FUNC(x) \ argument
111 #define DBA_SYNC_FUNC(x) \ argument
113 #define DBA_INFO_FUNC(x) \ argument
[all …]
/PHP-5.3/ext/hash/
H A Dhash_sha.c165 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
166 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument
167 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
168 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument
225 php_hash_uint32 d = state[3], e = state[4], x[16], tmp; in SHA1Transform() local
431 #define ROTR32(b,x) ((x >> b) | (x << (32 - b))) argument
432 #define ROTR64(b,x) ((x >> b) | (x << (64 - b))) argument
433 #define SHR(b, x) (x >> b) argument
436 #define SHA256_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
484 php_hash_uint32 x[16], T1, T2, W[64]; in SHA256Transform() local
[all …]
H A Dphp_hash_types.h34 #define L64(x) x argument
44 #define L64(x) x##LL argument
57 #define L64(x) x##i64 argument
H A Dhash_md.c231 #define F(x, y, z) (((x) & (y)) | ((~x) & (z))) argument
232 #define G(x, y, z) (((x) & (z)) | ((y) & (~z))) argument
233 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
234 #define I(x, y, z) ((y) ^ ((x) | (~z))) argument
243 #define FF(a, b, c, d, x, s, ac) { \ argument
248 #define GG(a, b, c, d, x, s, ac) { \ argument
253 #define HH(a, b, c, d, x, s, ac) { \ argument
258 #define II(a, b, c, d, x, s, ac) { \ argument
448 #define MD4_F(x,y,z) ((z) ^ ((x) & ((y) ^ (z)))) argument
449 #define MD4_G(x,y,z) (((x) & ((y) | (z))) | ((y) & (z))) argument
[all …]
H A Dhash_ripemd.c140 #define F0(x,y,z) ((x) ^ (y) ^ (z)) argument
141 #define F1(x,y,z) (((x) & (y)) | ((~(x)) & (z))) argument
142 #define F2(x,y,z) (((x) | (~(y))) ^ (z)) argument
143 #define F3(x,y,z) (((x) & (z)) | ((y) & (~(z)))) argument
144 #define F4(x,y,z) ((x) ^ ((y) | (~(z)))) argument
182 #define ROLS(j, x) (((x) << S[j]) | ((x) >> (32 - S[j]))) argument
184 #define ROL(n, x) (((x) << n) | ((x) >> (32 - n))) argument
207 php_hash_uint32 tmp, x[16]; in RIPEMD128Transform() local
298 php_hash_uint32 tmp, x[16]; in RIPEMD256Transform() local
396 php_hash_uint32 tmp, x[16]; in RIPEMD160Transform() local
[all …]
/PHP-5.3/ext/session/
H A Dphp_session.h57 #define PS_OPEN_FUNC(x) int ps_open_##x(PS_OPEN_ARGS) argument
59 #define PS_READ_FUNC(x) int ps_read_##x(PS_READ_ARGS) argument
62 #define PS_GC_FUNC(x) int ps_gc_##x(PS_GC_ARGS) argument
65 #define PS_FUNCS(x) \ argument
74 #define PS_MOD(x) \ argument
79 #define PS_FUNCS_SID(x) \ argument
88 #define PS_MOD_SID(x) \ argument
173 #define PS_SERIALIZER_ENCODE_FUNC(x) \ argument
175 #define PS_SERIALIZER_DECODE_FUNC(x) \ argument
178 #define PS_SERIALIZER_FUNCS(x) \ argument
[all …]
/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/ext/intl/collator/
H A Dcollator.c41 #define COLLATOR_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_CS) in collator_register_constants() argument
42 …#define COLLATOR_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( Collator_ce_ptr, ZEND_STR… in collator_register_constants() argument
/PHP-5.3/ext/intl/locale/
H A Dlocale.c42 #define LOCALE_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_CS) in locale_register_constants() argument
43 …#define LOCALE_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( Locale_ce_ptr, ZEND_STRS( #… in locale_register_constants() argument
/PHP-5.3/ext/intl/normalizer/
H A Dnormalizer.c40 #define NORMALIZER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_CS) in normalizer_register_constants() argument
41 …#define NORMALIZER_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( Normalizer_ce_ptr, ZEND… in normalizer_register_constants() argument
/PHP-5.3/ext/intl/formatter/
H A Dformatter.c43 #define FORMATTER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_CS) in formatter_register_constants() argument
44 …#define FORMATTER_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( NumberFormatter_ce_ptr, … in formatter_register_constants() argument
/PHP-5.3/Zend/
H A Dzend_build.h22 #define ZEND_TOSTR_(x) #x argument
23 #define ZEND_TOSTR(x) ZEND_TOSTR_(x) argument
H A Dzend_strtod.c278 #define value(x) ((x).d) argument
280 #define word0(x) ((x).ul[1]) argument
422 ULong x[1]; member
479 int x; in Balloc() local
552 ULong *x, y; in multadd() local
620 ULong x = *y; in lo0bits() local
759 Long x, y; in s2b() local
834 ULong *x, *x1, *xe, z; in lshift() local
994 volatile _double x; in ulp() local
1101 ULong *x, y, z; in d2b() local
[all …]
/PHP-5.3/ext/standard/
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 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 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
/PHP-5.3/ext/intl/dateformat/
H A Ddateformat.c40 #define DATEFORMATTER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_CS) in dateformat_register_constants() argument
41 …#define DATEFORMATTER_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( IntlDateFormatter_ce… in dateformat_register_constants() argument
44 …#define DATEFORMATTER_EXPOSE_UCAL_CLASS_CONST(x) zend_declare_class_constant_long( IntlDateFormatt… in dateformat_register_constants() argument
/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/ext/sqlite/libsqlite/src/
H A Ddate.c401 DateTime x, y; in localtimeOffset() local
614 int x, y; in parseModifier() local
672 DateTime x; in juliandayFunc() local
685 DateTime x; in datetimeFunc() local
701 DateTime x; in timeFunc() local
716 DateTime x; in dateFunc() local
745 DateTime x; in strftimeFunc() local
/PHP-5.3/ext/mbstring/oniguruma/win32/
H A Dconfig.h19 #define TOKEN_PASTE(x,y) x##y argument
23 #define NORETURN(x) __declspec(noreturn) x argument
25 #define NORETURN(x) x argument
79 #define RSHIFT(x,y) ((x)>>(int)y) argument

Completed in 62 milliseconds

12345