/PHP-7.0/ext/gd/libgd/ |
H A D | gdtestft.c | 6 #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 D | gdhelpers.h | 32 #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 D | gd_interpolation.c | 75 # define floorf(x) ((float)(floor(x))) argument 94 #define gd_itofx(x) ((x) << 8) argument 97 #define gd_ftofx(x) (long)((x) * 256) argument 100 #define gd_dtofx(x) (long)((x) * 256) argument 103 #define gd_fxtoi(x) ((x) >> 8) argument 106 # define gd_fxtof(x) ((float)(x) / 256) argument 109 #define gd_fxtod(x) ((double)(x) / 256) argument 112 #define gd_mulfx(x,y) (((x) * (y)) >> 8) argument 115 #define gd_divfx(x,y) (((x) << 8) / (y)) argument 398 static double filter_box(double x) { in filter_box() [all …]
|
H A D | gd_filter.c | 18 int x, y; in gdImageNegate() local 51 int x, y; in gdImageGrayScale() local 91 int x, y; in gdImageBrightness() local 136 int x, y; in gdImageContrast() local 196 int x, y; in gdImageColor() local 239 int x, y, i, j, new_a; in gdImageConvolution() local 300 int x, y, i, j; in gdImageSelectiveBlur() local
|
H A D | gd.c | 619 int x, y, p; in gdImagePaletteCopy() local 1677 int x, y; in gdImageFilledArc() local 2106 int x, y; in _gdImageFilledHRectangle() local 2150 int x, y; in _gdImageFilledVRectangle() local 2200 int x, y; in gdImageCopy() local 2281 int x, y; in gdImageCopyMerge() local 2321 int x, y; in gdImageCopyMergeGray() local 2375 int x, y; in gdImageCopyResized() local 2484 int x, y; in gdImageCopyResampled() local 2822 int x, y; in gdImageCompare() local [all …]
|
H A D | gd_transform.c | 5 register int x, y; in gdImageFlipVertical() local 34 int x, y; in gdImageFlipHorizontal() local
|
/PHP-7.0/ext/date/lib/ |
H A D | astro.c | 45 #define sind(x) sin((x)*DEGRAD) argument 46 #define cosd(x) cos((x)*DEGRAD) argument 47 #define tand(x) tan((x)*DEGRAD) argument 49 #define atand(x) (RADEG*atan(x)) argument 50 #define asind(x) (RADEG*asin(x)) argument 51 #define acosd(x) (RADEG*acos(x)) argument 52 #define atan2d(y,x) (RADEG*atan2(y,x)) argument 74 static double astro_revolution(double x) in astro_revolution() 82 static double astro_rev180( double x ) in astro_rev180() 140 x, y, /* x, y coordinates in orbit */ in astro_sunpos() local [all …]
|
/PHP-7.0/ext/dba/ |
H A D | php_dba.h | 96 #define DBA_OPEN_FUNC(x) \ argument 98 #define DBA_CLOSE_FUNC(x) \ argument 100 #define DBA_FETCH_FUNC(x) \ argument 102 #define DBA_UPDATE_FUNC(x) \ argument 104 #define DBA_EXISTS_FUNC(x) \ argument 106 #define DBA_DELETE_FUNC(x) \ argument 108 #define DBA_FIRSTKEY_FUNC(x) \ argument 110 #define DBA_NEXTKEY_FUNC(x) \ argument 114 #define DBA_SYNC_FUNC(x) \ argument 116 #define DBA_INFO_FUNC(x) \ argument [all …]
|
/PHP-7.0/ext/hash/ |
H A D | hash_sha.c | 165 #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 D | hash_md.c | 231 #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 D | hash_ripemd.c | 140 #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-7.0/ext/session/ |
H A D | php_session.h | 68 #define PS_GC_FUNC(x) int ps_gc_##x(PS_GC_ARGS) argument 74 #define PS_FUNCS(x) \ argument 83 #define PS_MOD(x) \ argument 89 #define PS_FUNCS_SID(x) \ argument 100 #define PS_MOD_SID(x) \ argument 107 #define PS_FUNCS_UPDATE_TIMESTAMP(x) \ argument 118 #define PS_MOD_UPDATE_TIMESTAMP(x) \ argument 241 #define PS_SERIALIZER_ENCODE_FUNC(x) \ argument 243 #define PS_SERIALIZER_DECODE_FUNC(x) \ argument 246 #define PS_SERIALIZER_FUNCS(x) \ argument [all …]
|
/PHP-7.0/ext/intl/dateformat/ |
H A D | dateformat.c | 37 #define DATEFORMATTER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | CONST_CS) in dateformat_register_constants() argument 38 …#define DATEFORMATTER_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( IntlDateFormatter_ce… in dateformat_register_constants() argument 41 …#define DATEFORMATTER_EXPOSE_UCAL_CLASS_CONST(x) zend_declare_class_constant_long( IntlDateFormatt… in dateformat_register_constants() argument
|
/PHP-7.0/win32/ |
H A D | param.h | 15 #define howmany(x,y) (((x)+((y)-1))/(y)) argument 16 #define roundup(x,y) ((((x)+((y)-1))/(y))*(y)) argument
|
/PHP-7.0/ext/intl/collator/ |
H A D | collator.c | 41 #define COLLATOR_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | 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-7.0/ext/intl/locale/ |
H A D | locale.c | 42 #define LOCALE_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | 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-7.0/ext/intl/normalizer/ |
H A D | normalizer.c | 40 #define NORMALIZER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | 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-7.0/ext/intl/transliterator/ |
H A D | transliterator.c | 38 …#define TRANSLITERATOR_EXPOSE_CONST( x ) REGISTER_LONG_CONSTANT( #x, x, CONST_PERSISTENT | CONST_C… in transliterator_register_constants() argument 39 …#define TRANSLITERATOR_EXPOSE_CLASS_CONST( x ) zend_declare_class_constant_long( Transliterator_ce… in transliterator_register_constants() argument
|
/PHP-7.0/ext/intl/formatter/ |
H A D | formatter.c | 43 #define FORMATTER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | 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-7.0/Zend/ |
H A D | zend_build.h | 22 #define ZEND_TOSTR_(x) #x argument 23 #define ZEND_TOSTR(x) ZEND_TOSTR_(x) argument
|
H A D | zend_strtod.c | 541 ULong x[1]; member 586 int x; local 664 ULong *x; local 721 Long x, y; local 752 (x) ULong x; in hi0bits() argument 792 ULong x = *y; local 1207 (x) U *x; in ulp() argument 1326 ULong *x, y, z; local 1624 ULong c, x[2]; local 1702 ULong *x, *xe; local [all …]
|
/PHP-7.0/ext/standard/ |
H A D | sha1.c | 119 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument 120 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument 121 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument 122 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument 126 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument 260 php_uint32 d = state[3], e = state[4], x[16], tmp; local
|
H A D | md5.c | 149 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument 150 #define G(x, y, z) ((y) ^ ((z) & ((x) ^ (y)))) argument 151 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument 152 #define I(x, y, z) ((y) ^ ((x) | ~(z))) argument 157 #define STEP(f, a, b, c, d, x, t, s) \ argument
|
H A D | versioning.c | 54 #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-7.0/sapi/phpdbg/ |
H A D | phpdbg_sigsafe.c | 6 #define STR(x) #x in ZEND_EXTERN_MODULE_GLOBALS() argument 7 #define EXP_STR(x) STR(x) in ZEND_EXTERN_MODULE_GLOBALS() argument
|