Home
last modified time | relevance | path

Searched defs:b (Results 101 – 125 of 155) sorted by last modified time

1234567

/PHP-7.4/ext/hash/
H A Dhash.c904 #define PHP_HASH_HAVAL_REGISTER(p,b) php_hash_register_algo("haval" #b "," #p , &php_hash_##p##hava… argument
H A Dhash_haval.c250 #define PHP_HASH_HAVAL_INIT(p,b) \ argument
H A Dhash_md.c241 #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
356 uint32_t a = state[0], b = state[1], c = state[2], d = state[3], x[16]; local
452 #define MD4_R1(a,b,c,d,k,s) a = ROTL32(s, a + MD4_F(b,c,d) + x[k]) argument
453 #define MD4_R2(a,b,c,d,k,s) a = ROTL32(s, a + MD4_G(b,c,d) + x[k] + 0x5A827999) argument
454 #define MD4_R3(a,b,c,d,k,s) a = ROTL32(s, a + MD4_H(b,c,d) + x[k] + 0x6ED9EBA1) argument
458 uint32_t a = state[0], b = state[1], c = state[2], d = state[3], x[16]; in MD4Transform() local
H A Dhash_ripemd.c207 uint32_t a = state[0], b = state[1], c = state[2], d = state[3]; in RIPEMD128Transform() local
298 uint32_t a = state[0], b = state[1], c = state[2], d = state[3]; in RIPEMD256Transform() local
396 uint32_t a = state[0], b = state[1], c = state[2], d = state[3], e = state[4]; in RIPEMD160Transform() local
495 uint32_t a = state[0], b = state[1], c = state[2], d = state[3], e = state[4]; in RIPEMD320Transform() local
H A Dhash_sha.c177 #define FF(a, b, c, d, e, w) { \ argument
182 #define GG(a, b, c, d, e, w) { \ argument
187 #define HH(a, b, c, d, e, w) { \ argument
192 #define II(a, b, c, d, e, w) { \ argument
220 uint32_t a = state[0], b = state[1], c = state[2]; 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
480 uint32_t a = state[0], b = state[1], c = state[2], d = state[3]; in SHA256Transform() local
790 uint64_t a = state[0], b = state[1], c = state[2], d = state[3]; in SHA512Transform() local
H A Dhash_sha3.c36 static inline uint64_t rol64(uint64_t v, unsigned char b) { in rol64()
H A Dhash_snefru.c45 int b, index, rshift, lshift; in Snefru() local
H A Dhash_tiger.c40 #define round(a,b,c,x,mul) \ argument
52 #define pass(a,b,c,mul) \ argument
244 #define PHP_HASH_TIGER_OPS(p, b) \ argument
H A Dhash_whirlpool.c284 uint32_t b, carry; in PHP_WHIRLPOOLUpdate() local
H A Dphp_hash.h101 #define PHP_HASH_HAVAL_OPS(p,b) extern const php_hash_ops php_hash_##p##haval##b##_ops; argument
/PHP-7.4/ext/gd/libgd/
H A Dgd_xbm.c49 unsigned int b; in gdImageCreateFromXbm() local
181 int x, y, c, b, sx, sy, p; in gdImageXbmCtx() local
/PHP-7.4/ext/dba/libcdb/
H A Dcdb.c71 const unsigned char * b = (unsigned char *)buf; in cdb_hash() local
/PHP-7.4/ext/calendar/
H A Deaster.c38 struct tm b, *res; in _cal_easter() local
/PHP-7.4/Zend/
H A Dzend_API.h620 #define RETVAL_BOOL(b) ZVAL_BOOL(return_value, b) argument
639 #define RETURN_BOOL(b) { RETVAL_BOOL(b); return; } argument
/PHP-7.4/win32/
H A Dglob.c365 Char *b, *eb; local
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_log.c100 char *s, *b; in fpm_log_write() local
H A Dfpm_conf.c551 int b; in fpm_conf_set_array() local
H A Dfpm_config.h38 # define timeradd(a, b, result) \ argument
52 # define timercmp(a, b, CMP) \ argument
60 # define MIN(a,b) (((a)<(b))?(a):(b)) argument
64 # define MAX(a,b) (((a)>(b))?(a):(b)) argument
/PHP-7.4/main/
H A Dmergesort.c108 register u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; in php_mergesort() local
238 #define swap(a, b) { \ argument
/PHP-7.4/ext/xmlrpc/libxmlrpc/
H A Dbase64.c22 void buffer_new(struct buffer_st *b) in buffer_new()
31 void buffer_add(struct buffer_st *b, char c) in buffer_add()
45 void buffer_delete(struct buffer_st *b) in buffer_delete()
54 void base64_encode_xmlrpc(struct buffer_st *b, const char *source, int length) in base64_encode_xmlrpc()
145 unsigned char a[4], b[4], o[3]; in base64_decode_xmlrpc() local
/PHP-7.4/ext/standard/
H A Dstrnatcmp.c35 compare_right(char const **a, char const *aend, char const **b, char const *bend) in compare_right()
67 compare_left(char const **a, char const *aend, char const **b, char const *bend) in compare_left()
91 PHPAPI int strnatcmp_ex(char const *a, size_t a_len, char const *b, size_t b_len, int fold_case) in strnatcmp_ex()
H A Dcrypt_freesec.c213 int i, j, b, k, inbit, obit; in _crypt_extended_init() local
H A Dcrypt_sha256.c47 # define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
50 # define MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
103 uint32_t b = ctx->H[1]; in sha256_process_block() local
H A Dcrypt_sha512.c35 # define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
38 # define MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
127 uint64_t b = ctx->H[1]; in sha512_process_block() local
/PHP-7.4/ext/phar/
H A Dshortarc.php80 $b = pathinfo($a); variable

Completed in 112 milliseconds

1234567