Home
last modified time | relevance | path

Searched defs:x (Results 26 – 50 of 145) sorted by relevance

123456

/php-src/ext/standard/
H A Dcrypt_sha256.c127 #define Ch(x, y, z) ((x & y) ^ (~x & z)) in sha256_process_block() argument
128 #define Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) in sha256_process_block() argument
129 #define S0(x) (CYCLIC (x, 2) ^ CYCLIC (x, 13) ^ CYCLIC (x, 22)) in sha256_process_block() argument
130 #define S1(x) (CYCLIC (x, 6) ^ CYCLIC (x, 11) ^ CYCLIC (x, 25)) in sha256_process_block() argument
131 #define R0(x) (CYCLIC (x, 7) ^ CYCLIC (x, 18) ^ (x >> 3)) in sha256_process_block() argument
132 #define R1(x) (CYCLIC (x, 17) ^ CYCLIC (x, 19) ^ (x >> 10)) in sha256_process_block() argument
H A Dcrypt_sha512.c156 #define Ch(x, y, z) ((x & y) ^ (~x & z)) in sha512_process_block() argument
157 #define Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) in sha512_process_block() argument
158 #define S0(x) (CYCLIC (x, 28) ^ CYCLIC (x, 34) ^ CYCLIC (x, 39)) in sha512_process_block() argument
159 #define S1(x) (CYCLIC (x, 14) ^ CYCLIC (x, 18) ^ CYCLIC (x, 41)) in sha512_process_block() argument
160 #define R0(x) (CYCLIC (x, 1) ^ CYCLIC (x, 8) ^ (x >> 7)) in sha512_process_block() argument
161 #define R1(x) (CYCLIC (x, 19) ^ CYCLIC (x, 61) ^ (x >> 6)) in sha512_process_block() argument
H A Dpack.c1020 uint8_t x = input[inputpos]; in PHP_FUNCTION() local
1033 uint16_t x = *((unaligned_uint16_t*) &input[inputpos]); in PHP_FUNCTION() local
1052 int x = *((unaligned_int*) &input[inputpos]); in PHP_FUNCTION() local
1055 unsigned int x = *((unaligned_uint*) &input[inputpos]); in PHP_FUNCTION() local
1069 uint32_t x = *((unaligned_uint32_t*) &input[inputpos]); in PHP_FUNCTION() local
1091 uint64_t x = *((unaligned_uint64_t*) &input[inputpos]); in PHP_FUNCTION() local
H A Dnet.c153 # define MALLOC(x) HeapAlloc(GetProcessHeap(), 0, (x)) in PHP_FUNCTION() argument
154 # define FREE(x) HeapFree(GetProcessHeap(), 0, (x)) in PHP_FUNCTION() argument
/php-src/ext/random/
H A Dgammasection.c37 static double gamma_low(double x) in gamma_low()
42 static double gamma_high(double x) in gamma_high()
47 static double gamma_max(double x, double y) in gamma_max()
/php-src/scripts/dev/
H A Dfind_tested.php219 function filter_functions($x) {
223 function map_token_value($x) {
/php-src/ext/hash/
H A Dhash_md.c109 #define MD4_F(x,y,z) ((z) ^ ((x) & ((y) ^ (z)))) argument
110 #define MD4_G(x,y,z) (((x) & ((y) | (z))) | ((y) & (z))) argument
111 #define MD4_H(x,y,z) ((x) ^ (y) ^ (z)) argument
121 uint32_t a = state[0], b = state[1], c = state[2], d = state[3], x[16]; in MD4Transform() local
H A Dhash_haval.c135 #define ROTR(x,n) (((x) >> (n)) | ((x) << (32 - (n)))) argument
142 uint32_t x[32]; in PHP_3HAVALTransform() local
175 uint32_t x[32]; in PHP_4HAVALTransform() local
211 uint32_t x[32]; in PHP_5HAVALTransform() local
H A Dhash_gost.c85 #define A(x, l, r) \ argument
97 #define AA(x, l, r) \ argument
111 #define C(x) \ argument
/php-src/ext/opcache/jit/ir/dynasm/
H A Dminilua.c143 #define LUA_QL(x)"'"x"'" argument
214 #define UNUSED(x)((void)(x)) argument
220 #define condhardstacktests(x)((void)0) argument
368 #define twoto(x)((size_t)1<<(x)) argument
371 #define ceillog2(x)(luaO_log2((x)-1)+1) argument
561 #define setbits(x,m)((x)|=(m)) argument
562 #define testbits(x,m)((x)&(m)) argument
565 #define l_setbit(x,b)setbits(x,bitmask(b)) argument
605 static int luaO_int2fb(unsigned int x){ in luaO_int2fb()
614 static int luaO_fb2int(int x){ in luaO_fb2int()
[all …]
H A Ddasm_arm64.h157 #define CK(x, st) \ argument
164 #define CK(x, st) ((void)0) argument
178 static int dasm_ffs(unsigned long long x) in dasm_ffs()
408 #define CK_REL(x, o) \ argument
413 #define CK_REL(x, o) CK(x, RANGE_REL) argument
417 #define CK(x, st) \ argument
420 #define CK(x, st) ((void)0) argument
/php-src/ext/opcache/jit/ir/
H A Dir_gdb.c289 #define DB(x) (*p++ = (x)) argument
290 #define DI8(x) (*(int8_t *)p = (x), p++) argument
291 #define DU16(x) (*(unaligned_uint16_t *)p = (x), p += 2) argument
292 #define DU32(x) (*(unaligned_uint32_t *)p = (x), p += 4) argument
293 #define DADDR(x) (*(unaligned_uintptr_t *)p = (x), p += sizeof(uintptr_t)) argument
294 #define DUV(x) (ctx->p = p, ir_gdbjit_uleb128(ctx, (x)), p = ctx->p) argument
295 #define DSV(x) (ctx->p = p, ir_gdbjit_sleb128(ctx, (x)), p = ctx->p) argument
/php-src/Zend/
H A Dzend_signal.c321 size_t x; in zend_signal_activate() local
339 size_t x; in zend_signal_deactivate() local
376 size_t x; in zend_signal_globals_ctor() local
/php-src/ext/gd/libgd/
H A Dgd_xbm.c44 int bit, x = 0, y = 0; in gdImageCreateFromXbm() local
179 int x, y, c, b, sx, sy, p; in gdImageXbmCtx() local
H A Dgd_crop.c84 int x,y; in gdImageCropAuto() local
186 int x,y; in gdImageCropThreshold() local
H A Dgd_color_match.c15 int x,y; in gdImageColorMatch() local
H A Dgdparttopng.c15 int x, y, w, h; in main() local
H A Dgd_gd.c168 int x, y; in gdImageCreateFromGdCtx() local
249 int x, y; in _gdImageGd() local
/php-src/ext/fileinfo/libmagic/
H A Dcdf.c83 #define CDF_TOLE8(x) \ argument
85 #define CDF_TOLE4(x) \ argument
87 #define CDF_TOLE2(x) \ argument
89 #define CDF_TOLE(x) (/*CONSTCOND*/sizeof(x) == 2 ? \ argument
94 #define CDF_GETUINT32(x, y) cdf_getuint32(x, y) argument
101 # define _cdf_tole2(x) bswap_16(x) argument
102 # define _cdf_tole4(x) bswap_32(x) argument
103 # define _cdf_tole8(x) bswap_64(x) argument
105 # define _cdf_tole2(x) bswap16(x) argument
106 # define _cdf_tole4(x) bswap32(x) argument
[all …]
/php-src/ext/hash/murmur/
H A DPMurHash.c74 #define ROTL32(x,y) _rotl(x,y) argument
78 #define ROTL32(x,r) (((uint32_t)x << r) | ((uint32_t)x >> (32 - r))) argument
/php-src/sapi/embed/
H A Dphp_embed.h27 #define PHP_EMBED_START_BLOCK(x,y) { \ argument
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_maketables.c142 int x = 0; local
H A Dpcre2_xclass.c103 uint32_t x, y; in PRIV() local
/php-src/sapi/phpdbg/
H A Dphpdbg_lexer.l13 #define YYSETCONDITION(x) LEX(state) = x; argument
/php-src/ext/mysqlnd/
H A Dmysqlnd_charset.c74 #define ENUMERATOR_ENUM(x) x##_id, argument
452 #define UTF16_HIGH_HEAD(x) ((((zend_uchar) (x)) & 0xFC) == 0xD8) argument
453 #define UTF16_LOW_HEAD(x) ((((zend_uchar) (x)) & 0xFC) == 0xDC) argument
558 #define ENUMERATOR_DISPATCH(x) case x##_id: return x(c); in mysqlnd_mbcharlen_dispatch() argument
568 #define ENUMERATOR_DISPATCH(x) case x##_id: return x(start, end); in mysqlnd_mbvalid_dispatch() argument

Completed in 71 milliseconds

123456