Home
last modified time | relevance | path

Searched defs:x (Results 51 – 75 of 145) sorted by relevance

123456

/php-src/ext/gd/libgd/
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()
640 int x, y, row, col, pc, pcr; local
821 double ptsize, double angle, int x, int y, char *string)
827 …ge * im, int *brect, int fg, char *fontlist, double ptsize, double angle, int x, int y, char *stri…
H A Dgd2time.c17 int x, y, w, h; in main() local
H A Dgd_webp.c45 int x, y; in gdImageCreateFromWebpCtx() local
106 int x, y; in gdImageWebpCtx() local
H A Dgd_pixelate.c5 int x, y; in gdImagePixelate() local
H A Dgd_intern.h11 #define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x))) argument
H A Dwebpng.c190 int maxx, maxy, x, y, alpha, pix, nalpha = 0; in main() local
H A Dgd.h269 double x, y; member
314 int x, y; member
504 int x, y; member
785 #define gdImagePalettePixel(im, x, y) (im)->pixels[(y)][(x)] argument
786 #define gdImageTrueColorPixel(im, x, y) (im)->tpixels[(y)][(x)] argument
945 #define gdImageBoundsSafe(im, x, y) (!((((y) < (im)->cy1) || ((y) > (im)->cy2)) || (((x) < (im)->cx… argument
/php-src/Zend/
H A Dzend_alloc_sizes.h32 #define ZEND_MM_BINS_INFO(_, x, y) \ argument
H A Dzend_portability.h81 # define __has_attribute(x) 0 argument
84 # define __has_builtin(x) 0 argument
87 # define __has_feature(x) 0 argument
133 # define ZEND_IGNORE_VALUE(x) (({ __typeof__ (x) __x = (x); (void) __x; })) argument
135 # define ZEND_IGNORE_VALUE(x) ((void) (x)) argument
487 #define ZEND_TRUTH(x) ((x) ? 1 : 0) argument
764 #define __ZEND_DO_PRAGMA(x) _Pragma(#x) argument
765 #define _ZEND_DO_PRAGMA(x) __ZEND_DO_PRAGMA(x) argument
/php-src/ext/opcache/jit/ir/
H A Dgen_ir_fold_hash.c44 #define ir_rol(x, n) (((x)<<(n)) | ((x)>>(-(int)(n)&(8*sizeof(x)-1)))) argument
45 #define ir_ror(x, n) (((x)<<(-(int)(n)&(8*sizeof(x)-1))) | ((x)>>(n))) argument
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_ppc.h151 #define CK(x, st) \ argument
158 #define CK(x, st) ((void)0) argument
315 #define CK(x, st) \ argument
318 #define CK(x, st) ((void)0) argument
H A Ddasm_mips.h151 #define CK(x, st) \ argument
158 #define CK(x, st) ((void)0) argument
311 #define CK(x, st) \ argument
314 #define CK(x, st) ((void)0) argument
H A Ddasm_arm.h152 #define CK(x, st) \ argument
159 #define CK(x, st) ((void)0) argument
333 #define CK(x, st) \ argument
336 #define CK(x, st) ((void)0) argument
/php-src/ext/dom/lexbor/lexbor/core/
H A Ddiyfp.h75 #define nxt_leading_zeros64(x) (((x) == 0) ? 64 : __builtin_clzll(x)) argument
80 lexbor_diyfp_leading_zeros64(uint64_t x) in lexbor_diyfp_leading_zeros64()
/php-src/ext/gd/
H A Dgd.stub.php590 function imagecreatefromgd2part(string $filename, int $x, int $y, int $width, int $height): GdImage…
644 function imagecolorat(GdImage $image, int $x, int $y): int|false {}
666 function imagesetpixel(GdImage $image, int $x, int $y, int $color): bool {}
680 function imagefilltoborder(GdImage $image, int $x, int $y, int $border_color, int $color): bool {}
682 function imagefill(GdImage $image, int $x, int $y, int $color): bool {}
700 function imagechar(GdImage $image, GdFont|int $font, int $x, int $y, string $char, int $color): boo…
702 function imagecharup(GdImage $image, GdFont|int $font, int $x, int $y, string $char, int $color): b…
704 function imagestring(GdImage $image, GdFont|int $font, int $x, int $y, string $string, int $color):…
706 function imagestringup(GdImage $image, GdFont|int $font, int $x, int $y, string $string, int $color…
739 function imagefttext(GdImage $image, float $size, float $angle, int $x, int $y, int $color, string …
[all …]
/php-src/sapi/phpdbg/
H A Dtest.php21 function test($x, $y = 0) {
/php-src/ext/hash/xxhash/
H A Dxxhash.h606 # define XXH_HAS_ATTRIBUTE(x) 0 argument
613 # define XXH_HAS_C_ATTRIBUTE(x) 0 argument
619 # define XXH_HAS_CPP_ATTRIBUTE(x) 0 argument
1789 # define XXH_HAS_BUILTIN(x) 0 argument
1811 # define XXH_rotl32(x,r) _rotl(x,r) argument
1812 # define XXH_rotl64(x,r) _rotl64(x,r) argument
1831 static xxh_u32 XXH_swap32 (xxh_u32 x) in XXH_swap32()
2375 static xxh_u64 XXH_swap64(xxh_u64 x) in XXH_swap64()
2737 # define XXH_likely(x) (x) argument
2738 # define XXH_unlikely(x) (x) argument
[all …]
/php-src/ext/fileinfo/libmagic/
H A Dapprentice.c137 #define swap2(x) bswap_16(x) argument
138 #define swap4(x) bswap_32(x) argument
139 #define swap8(x) bswap_64(x) argument
141 #define swap2(x) bswap16(x) argument
142 #define swap4(x) bswap32(x) argument
143 #define swap8(x) bswap64(x) argument
2441 goodchar(unsigned char x, const char *extra) in goodchar()
2867 uint64_t x; in getvalue() local
3531 uintmax_t x = 0; local
/php-src/ext/odbc/
H A Dphp_odbc_includes.h270 #define IS_SQL_LONG(x) (x == SQL_LONGVARBINARY || x == SQL_LONGVARCHAR || x == SQL_WLONGVARCHAR) argument
277 #define IS_SQL_LONG(x) (x == SQL_LONGVARBINARY || x == SQL_LONGVARCHAR) argument
284 #define IS_SQL_BINARY(x) (x == SQL_BINARY || x == SQL_VARBINARY || x == SQL_LONGVARBINARY) argument
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitLir.c383 #define CHECK_ARGUMENT(x) \ argument
392 #define CHECK(x) \ argument
400 #define CHECK_PTR(x) \ argument
408 #define CHECK_REG_INDEX(x) \ argument
424 #define CHECK(x) x argument
425 #define CHECK_PTR(x) x argument
433 #define CHECK(x) x argument
434 #define CHECK_PTR(x) x argument
440 #define CHECK(x) argument
441 #define CHECK_PTR(x) argument
[all …]
H A DsljitConfigInternal.h165 #define SLJIT_LIKELY(x) __builtin_expect((x), 1) argument
166 #define SLJIT_UNLIKELY(x) __builtin_expect((x), 0) argument
863 #define SLJIT_ASSERT(x) \ argument
889 #define SLJIT_ASSERT(x) \ argument
898 #define SLJIT_COMPILE_ASSERT(x, description) \ argument
/php-src/ext/standard/
H A Dexec.c282 size_t x, y; in php_escape_shell_cmd() local
392 size_t x, y = 0; in php_escape_shell_arg() local
/php-src/ext/bcmath/libbcmath/src/
H A Dprivate.h41 #define SWAR_REPEAT(x) (SWAR_ONES * (x)) argument
/php-src/ext/sodium/
H A Dlibsodium.stub.php549 function sodium_crypto_aead_aes256gcm_decrypt(string $ciphertext, string $additional_data, string $… argument
/php-src/sapi/fpm/fpm/
H A Dfpm_config.h13 # define __attribute__(x) /*NOTHING*/ argument

Completed in 113 milliseconds

123456