Home
last modified time | relevance | path

Searched defs:y (Results 1 – 25 of 62) sorted by relevance

123

/PHP-7.2/ext/date/lib/
H A Ddow.c31 static timelib_sll positive_mod(timelib_sll x, timelib_sll y) in positive_mod()
48 static timelib_sll timelib_day_of_week_ex(timelib_sll y, timelib_sll m, timelib_sll d, int iso) in timelib_day_of_week_ex()
67 timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d) in timelib_day_of_week()
72 timelib_sll timelib_iso_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d) in timelib_iso_day_of_week()
83 timelib_sll timelib_day_of_year(timelib_sll y, timelib_sll m, timelib_sll d) in timelib_day_of_year()
88 timelib_sll timelib_days_in_month(timelib_sll y, timelib_sll m) in timelib_days_in_month()
93 void timelib_isoweek_from_date(timelib_sll y, timelib_sll m, timelib_sll d, timelib_sll *iw, timeli… in timelib_isoweek_from_date()
141 void timelib_isodate_from_date(timelib_sll y, timelib_sll m, timelib_sll d, timelib_sll *iy, timeli… in timelib_isodate_from_date()
147 …ib_sll timelib_daynr_from_weeknr_ex(timelib_sll iy, timelib_sll iw, timelib_sll id, timelib_sll *y) in timelib_daynr_from_weeknr_ex()
169 void timelib_date_from_isodate(timelib_sll iy, timelib_sll iw, timelib_sll id, timelib_sll *y, time… in timelib_date_from_isodate()
[all …]
H A Dtm2unixtime.c60 static void inc_month(timelib_sll *y, timelib_sll *m) in inc_month()
69 static void dec_month(timelib_sll *y, timelib_sll *m) in dec_month()
78 static void do_range_limit_days_relative(timelib_sll *base_y, timelib_sll *base_m, timelib_sll *y, … in do_range_limit_days_relative()
120 static int do_range_limit_days(timelib_sll *y, timelib_sll *m, timelib_sll *d) in do_range_limit_days()
211 timelib_sll y, ddd, mi, mm, dd, g; in magic_date_calc() local
H A Dastro.c33 #define days_since_2000_Jan_0(y,m,d) \ argument
52 #define atan2d(y,x) (RADEG*atan2(y,x)) argument
140 x, y, /* x, y coordinates in orbit */ in astro_sunpos() local
162 double lon, obl_ecl, x, y, z; in astro_sun_RA_dec() local
/PHP-7.2/ext/hash/
H A Dhash_sha3.c39 static inline unsigned char idx(unsigned char x, unsigned char y) { in idx()
67 # define readLane(x, y) load64(ctx->state+sizeof(uint64_t)*idx(x, y)) argument
68 # define writeLane(x, y, v) store64(ctx->state+sizeof(uint64_t)*idx(x, y), v) argument
69 # define XORLane(x, y, v) xor64(ctx->state+sizeof(uint64_t)*idx(x, y), v) 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
126 unsigned char x, y; in permute() local
H A Dhash_md.c234 #define F(x, y, z) (((x) & (y)) | ((~x) & (z))) argument
235 #define G(x, y, z) (((x) & (z)) | ((y) & (~z))) argument
236 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
237 #define I(x, y, z) ((y) ^ ((x) | (~z))) argument
451 #define MD4_F(x,y,z) ((z) ^ ((x) & ((y) ^ (z)))) argument
452 #define MD4_G(x,y,z) (((x) & ((y) | (z))) | ((y) & (z))) argument
453 #define MD4_H(x,y,z) ((x) ^ (y) ^ (z)) argument
H A Dhash_sha.c166 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
167 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument
168 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
169 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument
439 #define SHA256_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
441 #define SHA256_F1(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument
697 #define SHA512_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
699 #define SHA512_F1(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument
H A Dhash_ripemd.c144 #define F0(x,y,z) ((x) ^ (y) ^ (z)) argument
145 #define F1(x,y,z) (((x) & (y)) | ((~(x)) & (z))) argument
146 #define F2(x,y,z) (((x) | (~(y))) ^ (z)) argument
147 #define F3(x,y,z) (((x) & (z)) | ((y) & (~(z)))) argument
148 #define F4(x,y,z) ((x) ^ ((y) | (~(z)))) argument
/PHP-7.2/ext/gd/libgd/
H A Dgdtestft.c8 #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
H A Dgd_filter.c18 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 Dgd.c657 int x, y, p; in gdImagePaletteCopy() local
1622 int x, y; in gdImageFilledArc() local
2159 int x, y; in _gdImageFilledHRectangle() local
2203 int x, y; in _gdImageFilledVRectangle() local
2253 int x, y; in gdImageCopy() local
2334 int x, y; in gdImageCopyMerge() local
2374 int x, y; in gdImageCopyMergeGray() local
2428 int x, y; in gdImageCopyResized() local
2537 int x, y; in gdImageCopyResampled() local
2680 int y; in gdImageFilledPolygon() local
[all …]
H A Dgd_transform.c5 register int x, y; in gdImageFlipVertical() local
34 int x, y; in gdImageFlipHorizontal() local
H A Dgd_crop.c46 int y; in gdImageCrop() local
119 int x,y; in gdImageCropAuto() local
227 int x,y; in gdImageCropThreshold() local
H A Dgd_xbm.c46 int bit, x = 0, y = 0; in gdImageCreateFromXbm() local
181 int x, y, c, b, sx, sy, p; in gdImageXbmCtx() local
H A Dgd_color_match.c20 int x,y; in gdImageColorMatch() local
H A Dgdparttopng.c15 int x, y, w, h; in main() local
H A Dgdft.c40 double ptsize, double angle, int x, int y, char *string) in gdImageStringTTF()
49 double ptsize, double angle, int x, int y, char *string, in gdImageStringFTEx()
57 double ptsize, double angle, int x, int y, char *string) in gdImageStringFT()
630 int x, y, row, col, pc, pcr; local
811 double ptsize, double angle, int x, int y, char *string)
817 …, int *brect, int fg, char *fontlist, double ptsize, double angle, int x, int y, char *string, gdF…
H A Dgd_gd.c168 int x, y; in gdImageCreateFromGdCtx() local
249 int x, y; in _gdImageGd() local
/PHP-7.2/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.2/ext/standard/
H A Dmd5.c153 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
154 #define G(x, y, z) ((y) ^ ((z) & ((x) ^ (y)))) argument
155 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
156 #define I(x, y, z) ((y) ^ ((x) | ~(z))) argument
H A Dsha1.c123 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
124 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument
125 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
126 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument
/PHP-7.2/ext/fileinfo/libmagic/
H A Dcdf_time.c41 #define isleap(y) ((((y) % 4) == 0) && \ argument
55 int y; in cdf_getdays() local
/PHP-7.2/sapi/embed/
H A Dphp_embed.h30 #define PHP_EMBED_START_BLOCK(x,y) { \ argument
/PHP-7.2/ext/pcre/pcrelib/
H A Dpcre_xclass.c102 pcre_uint32 x, y; in PRIV() local
/PHP-7.2/Zend/
H A Dzend_strtod.c665 ULLong carry, y; local
667 ULong carry, *x, y; local
721 Long x, y; local
786 (y) ULong *y; in lo0bits() argument
858 ULong y; local
1122 ULLong borrow, y; local
1124 ULong borrow, y; local
1254 ULong *xa, *xa0, w, y, z; local
1326 ULong *x, y, z; local
1737 ULong *x, *x1, *xe, y; local
[all …]
H A Dzend_alloc_sizes.h32 #define ZEND_MM_BINS_INFO(_, x, y) \ argument

Completed in 76 milliseconds

123