Home
last modified time | relevance | path

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

123456

/PHP-7.4/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_interpolation.c75 # define floorf(x) ((float)(floor(x))) 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
373 const double x = x1 < 0.0 ? -x1 : x1; in filter_cubic_spline() local
391 const double x = x1 < 0.0 ? -x1 : x1; in filter_cubic_convolution() local
402 static double filter_box(double x) { in filter_box()
[all …]
H A Dgd_filter.c54 register int x, y; in gdImageScatterEx() local
116 int x, y; in gdImageNegate() local
149 int x, y; in gdImageGrayScale() local
189 int x, y; in gdImageBrightness() local
234 int x, y; in gdImageContrast() local
294 int x, y; in gdImageColor() local
337 int x, y, i, j, new_a; in gdImageConvolution() local
399 int x, y, i, j; in gdImageSelectiveBlur() local
H A Dgd.c657 int x, y, p; in gdImagePaletteCopy() local
1626 int x, y; in gdImageFilledArc() local
2165 int x, y; in _gdImageFilledHRectangle() local
2209 int x, y; in _gdImageFilledVRectangle() local
2259 int x, y; in gdImageCopy() local
2340 int x, y; in gdImageCopyMerge() local
2380 int x, y; in gdImageCopyMergeGray() local
2434 int x, y; in gdImageCopyResized() local
2543 int x, y; in gdImageCopyResampled() local
2866 int x, y; in gdImageCompare() local
[all …]
/PHP-7.4/ext/hash/
H A Dhash_sha3.c39 static inline unsigned char idx(unsigned char x, unsigned char y) { in idx()
44 static inline uint64_t load64(const unsigned char* x) { in load64()
53 static inline void store64(unsigned char* x, uint64_t val) { in store64()
60 static inline void xor64(unsigned char* x, uint64_t val) { in xor64()
67 # define readLane(x, y) load64(ctx->state+sizeof(uint64_t)*idx(x, y)) argument
71 # define readLane(x, y) (((uint64_t*)ctx->state)[idx(x,y)]) argument
72 # define writeLane(x, y, v) (((uint64_t*)ctx->state)[idx(x,y)] = v) argument
73 # define XORLane(x, y, v) (((uint64_t*)ctx->state)[idx(x,y)] ^= v) argument
97 unsigned char x, y; in permute() local
111 unsigned char x = 1, y = 0, t; in permute() local
[all …]
H A Dhash_sha.c161 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
162 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument
163 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
164 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument
221 uint32_t d = state[3], e = state[4], x[16], tmp; in SHA1Transform() local
429 #define ROTR32(b,x) ((x >> b) | (x << (32 - b))) argument
430 #define ROTR64(b,x) ((x >> b) | (x << (64 - b))) argument
431 #define SHR(b, x) (x >> b) argument
434 #define SHA256_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
482 uint32_t x[16], T1, T2, W[64]; in SHA256Transform() local
[all …]
H A Dhash_md.c229 #define F(x, y, z) (((x) & (y)) | ((~x) & (z))) argument
230 #define G(x, y, z) (((x) & (z)) | ((y) & (~z))) argument
231 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
232 #define I(x, y, z) ((y) ^ ((x) | (~z))) argument
241 #define FF(a, b, c, d, x, s, ac) { \ argument
246 #define GG(a, b, c, d, x, s, ac) { \ argument
251 #define HH(a, b, c, d, x, s, ac) { \ argument
256 #define II(a, b, c, d, x, s, ac) { \ argument
446 #define MD4_F(x,y,z) ((z) ^ ((x) & ((y) ^ (z)))) argument
447 #define MD4_G(x,y,z) (((x) & ((y) | (z))) | ((y) & (z))) argument
[all …]
H A Dhash_ripemd.c142 #define F0(x,y,z) ((x) ^ (y) ^ (z)) argument
143 #define F1(x,y,z) (((x) & (y)) | ((~(x)) & (z))) argument
144 #define F2(x,y,z) (((x) | (~(y))) ^ (z)) argument
145 #define F3(x,y,z) (((x) & (z)) | ((y) & (~(z)))) argument
146 #define F4(x,y,z) ((x) ^ ((y) | (~(z)))) argument
184 #define ROLS(j, x) (((x) << S[j]) | ((x) >> (32 - S[j]))) argument
186 #define ROL(n, x) (((x) << n) | ((x) >> (32 - n))) argument
209 uint32_t tmp, x[16]; in RIPEMD128Transform() local
300 uint32_t tmp, x[16]; in RIPEMD256Transform() local
398 uint32_t tmp, x[16]; in RIPEMD160Transform() local
[all …]
/PHP-7.4/ext/date/lib/
H A Dastro.c45 #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.4/ext/hash/sha3/generic32lc/
H A Dalign.h25 #define ALIGN(x) __attribute__ ((aligned(x))) argument
27 #define ALIGN(x) __declspec(align(x)) argument
29 #define ALIGN(x) __align(x) argument
31 #define ALIGN(x) argument
/PHP-7.4/ext/hash/sha3/generic64lc/
H A Dalign.h25 #define ALIGN(x) __attribute__ ((aligned(x))) argument
27 #define ALIGN(x) __declspec(align(x)) argument
29 #define ALIGN(x) __align(x) argument
31 #define ALIGN(x) argument
/PHP-7.4/ext/dba/
H A Dphp_dba.h94 #define DBA_OPEN_FUNC(x) \ argument
96 #define DBA_CLOSE_FUNC(x) \ argument
98 #define DBA_FETCH_FUNC(x) \ argument
100 #define DBA_UPDATE_FUNC(x) \ argument
102 #define DBA_EXISTS_FUNC(x) \ argument
104 #define DBA_DELETE_FUNC(x) \ argument
106 #define DBA_FIRSTKEY_FUNC(x) \ argument
108 #define DBA_NEXTKEY_FUNC(x) \ argument
112 #define DBA_SYNC_FUNC(x) \ argument
114 #define DBA_INFO_FUNC(x) \ argument
[all …]
/PHP-7.4/ext/session/
H A Dphp_session.h58 #define PS_OPEN_FUNC(x) int ps_open_##x(PS_OPEN_ARGS) argument
69 #define PS_FUNCS(x) \ argument
78 #define PS_MOD(x) \ argument
84 #define PS_FUNCS_SID(x) \ argument
95 #define PS_MOD_SID(x) \ argument
102 #define PS_FUNCS_UPDATE_TIMESTAMP(x) \ argument
113 #define PS_MOD_UPDATE_TIMESTAMP(x) \ argument
234 #define PS_SERIALIZER_ENCODE_FUNC(x) \ argument
236 #define PS_SERIALIZER_DECODE_FUNC(x) \ argument
239 #define PS_SERIALIZER_FUNCS(x) \ argument
[all …]
/PHP-7.4/ext/intl/dateformat/
H A Ddateformat.c37 #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.4/ext/intl/collator/
H A Dcollator.c41 #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.4/ext/intl/locale/
H A Dlocale.c40 #define LOCALE_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | CONST_CS) in locale_register_constants() argument
41 …#define LOCALE_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( Locale_ce_ptr, ZEND_STRS( #… in locale_register_constants() argument
/PHP-7.4/ext/intl/normalizer/
H A Dnormalizer.c40 #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.4/ext/intl/transliterator/
H A Dtransliterator.c38 …#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.4/win32/
H A Dparam.h18 #define howmany(x,y) (((x)+((y)-1))/(y)) argument
19 #define roundup(x,y) ((((x)+((y)-1))/(y))*(y)) argument
/PHP-7.4/ext/intl/formatter/
H A Dformatter.c39 #define FORMATTER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | CONST_CS) in formatter_register_constants() argument
40 …#define FORMATTER_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( NumberFormatter_ce_ptr, … in formatter_register_constants() argument
/PHP-7.4/ext/standard/
H A Dsha1.c118 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
119 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument
120 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
121 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument
125 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument
259 uint32_t d = state[3], e = state[4], x[16], tmp; local
H A Dmd5.c148 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
149 #define G(x, y, z) ((y) ^ ((z) & ((x) ^ (y)))) argument
150 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
151 #define I(x, y, z) ((y) ^ ((x) | ~(z))) argument
156 #define STEP(f, a, b, c, d, x, t, s) \ argument
/PHP-7.4/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.c541 ULong x[1]; member
589 int x; local
667 ULong *x; local
724 Long x, y; local
755 (x) ULong x; in hi0bits() argument
795 ULong x = *y; local
1210 (x) U *x; in ulp() argument
1329 ULong *x, y, z; local
1627 ULong c, x[2]; local
1705 ULong *x, *xe; local
[all …]

Completed in 92 milliseconds

123456