/PHP-8.3/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 | 76 # define floorf(x) ((float)(floor(x))) argument 96 #define gd_ftofx(x) (long)((x) * 256) argument 99 #define gd_dtofx(x) (long)((x) * 256) argument 102 #define gd_fxtoi(x) ((x) >> 8) argument 105 # define gd_fxtof(x) ((float)(x) / 256) argument 108 #define gd_fxtod(x) ((double)(x) / 256) argument 111 #define gd_mulfx(x,y) (((x) * (y)) >> 8) argument 372 const double x = x1 < 0.0 ? -x1 : x1; in filter_cubic_spline() local 390 const double x = x1 < 0.0 ? -x1 : x1; in filter_cubic_convolution() local 401 static double filter_box(double x) { in filter_box() [all …]
|
H A D | gd_filter.c | 54 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 D | gd.c | 657 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 …]
|
H A D | gd_transform.c | 5 register int x, y; in gdImageFlipVertical() local 34 int x, y; in gdImageFlipHorizontal() local
|
/PHP-8.3/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-8.3/ext/hash/ |
H A D | hash_sha3.c | 37 static inline unsigned char idx(unsigned char x, unsigned char y) { in idx() 42 static inline uint64_t load64(const unsigned char* x) { in load64() 51 static inline void store64(unsigned char* x, uint64_t val) { in store64() 58 static inline void xor64(unsigned char* x, uint64_t val) { in xor64() 65 # define readLane(x, y) load64(ctx->state+sizeof(uint64_t)*idx(x, y)) argument 69 # define readLane(x, y) (((uint64_t*)ctx->state)[idx(x,y)]) argument 70 # define writeLane(x, y, v) (((uint64_t*)ctx->state)[idx(x,y)] = v) argument 71 # define XORLane(x, y, v) (((uint64_t*)ctx->state)[idx(x,y)] ^= v) argument 95 unsigned char x, y; in permute() local 109 unsigned char x = 1, y = 0, t; in permute() local [all …]
|
H A D | hash_sha.c | 112 #define ROTR32(b,x) ((x >> b) | (x << (32 - b))) argument 113 #define ROTR64(b,x) ((x >> b) | (x << (64 - b))) argument 114 #define SHR(b, x) (x >> b) argument 117 #define SHA256_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument 119 #define SHA256_F1(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument 125 #define SHA256_F4(x) (ROTR32( 7,(x)) ^ ROTR32(18,(x)) ^ SHR( 3,(x))) argument 165 uint32_t x[16], T1, T2, W[64]; in SHA256Transform() local 377 #define SHA512_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument 385 #define SHA512_F4(x) (ROTR64( 1, x) ^ ROTR64( 8, x) ^ SHR(7, x)) argument 387 #define SHA512_F5(x) (ROTR64(19, x) ^ ROTR64(61, x) ^ SHR(6, x)) argument [all …]
|
H A D | hash_ripemd.c | 156 #define F0(x,y,z) ((x) ^ (y) ^ (z)) argument 157 #define F1(x,y,z) (((x) & (y)) | ((~(x)) & (z))) argument 158 #define F2(x,y,z) (((x) | (~(y))) ^ (z)) argument 159 #define F3(x,y,z) (((x) & (z)) | ((y) & (~(z)))) argument 160 #define F4(x,y,z) ((x) ^ ((y) | (~(z)))) argument 198 #define ROLS(j, x) (((x) << S[j]) | ((x) >> (32 - S[j]))) argument 200 #define ROL(n, x) (((x) << n) | ((x) >> (32 - n))) argument 223 uint32_t tmp, x[16]; in RIPEMD128Transform() local 315 uint32_t tmp, x[16]; in RIPEMD256Transform() local 414 uint32_t tmp, x[16]; in RIPEMD160Transform() local [all …]
|
/PHP-8.3/ext/dba/ |
H A D | php_dba.h | 94 #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-8.3/ext/hash/sha3/generic32lc/ |
H A D | align.h | 25 #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-8.3/ext/hash/sha3/generic64lc/ |
H A D | align.h | 25 #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-8.3/ext/session/ |
H A D | php_session.h | 60 #define PS_GC_FUNC(x) zend_long ps_gc_##x(PS_GC_ARGS) argument 66 #define PS_FUNCS(x) \ argument 75 #define PS_MOD(x) \ argument 81 #define PS_FUNCS_SID(x) \ argument 92 #define PS_MOD_SID(x) \ argument 99 #define PS_FUNCS_UPDATE_TIMESTAMP(x) \ argument 110 #define PS_MOD_UPDATE_TIMESTAMP(x) \ argument 231 #define PS_SERIALIZER_ENCODE_FUNC(x) \ argument 233 #define PS_SERIALIZER_DECODE_FUNC(x) \ argument 236 #define PS_SERIALIZER_FUNCS(x) \ argument [all …]
|
/PHP-8.3/ext/opcache/jit/dynasm/ |
H A D | dasm_x86.h | 165 #define CK(x, st) \ argument 172 #define CK(x, st) ((void)0) argument 374 #define dasmb(x) *cp++ = (unsigned char)(x) argument 379 #define dasmw(x) \ argument 381 #define dasmd(x) \ argument 383 #define dasmq(x) \ argument 386 #define dasmw(x) do { dasmb(x); dasmb((x)>>8); } while (0) argument 387 #define dasmd(x) do { dasmw(x); dasmw((x)>>16); } while (0) argument 388 #define dasmq(x) do { dasmd(x); dasmd((x)>>32); } while (0) argument 390 static unsigned char *dasma_(unsigned char *cp, ptrdiff_t x) in dasma_() [all …]
|
/PHP-8.3/ext/standard/ |
H A D | sha1.c | 114 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument 115 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument 116 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument 117 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument 121 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument 254 uint32_t d = state[3], e = state[4], x[16], tmp; in SHA1Transform() local
|
H A D | md5.c | 144 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument 145 #define G(x, y, z) ((y) ^ ((z) & ((x) ^ (y)))) argument 146 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument 147 #define I(x, y, z) ((y) ^ ((x) | ~(z))) argument 152 #define STEP(f, a, b, c, d, x, t, s) \ argument
|
H A D | versioning.c | 48 #define isdig(x) (isdigit(x)&&(x)!='.') in php_canonicalize_version() argument 49 #define isndig(x) (!isdigit(x)&&(x)!='.') in php_canonicalize_version() argument 50 #define isspecialver(x) ((x)=='-'||(x)=='_'||(x)=='+') in php_canonicalize_version() argument
|
/PHP-8.3/win32/ |
H A D | param.h | 18 #define howmany(x,y) (((x)+((y)-1))/(y)) argument 19 #define roundup(x,y) ((((x)+((y)-1))/(y))*(y)) argument
|
/PHP-8.3/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 | 531 ULong x[1]; member 579 int x; local 657 ULong *x; local 714 Long x, y; local 745 (x) ULong x; in hi0bits() argument 785 ULong x = *y; local 1200 (x) U *x; in ulp() argument 1319 ULong *x, y, z; local 1617 ULong c, x[2]; local 1695 ULong *x, *xe; local [all …]
|
H A D | zend_strtod_int.h | 110 #define ACQUIRE_DTOA_LOCK(x) \ argument 117 #define FREE_DTOA_LOCK(x) \ argument
|
/PHP-8.3/main/ |
H A D | reentrancy.c | 41 #define local_lock(x) tsrm_mutex_lock(reentrant_locks[x]) argument 42 #define local_unlock(x) tsrm_mutex_unlock(reentrant_locks[x]) argument 46 #define local_lock(x) argument 47 #define local_unlock(x) argument
|
/PHP-8.3/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
|
/PHP-8.3/ext/hash/murmur/ |
H A D | PMurHash128.c | 66 #define ROTL32(x,y) _rotl(x,y) argument 67 #define ROTL64(x,y) _rotl64(x,y) argument 68 #define BIG_CONSTANT(x) (x) argument 72 #define ROTL32(x,r) (((uint32_t)x << r) | ((uint32_t)x >> (32 - r))) argument 73 #define ROTL64(x,r) (((uint64_t)x << r) | ((uint64_t)x >> (64 - r))) argument 74 #define BIG_CONSTANT(x) (x##LLU) argument
|