Home
last modified time | relevance | path

Searched defs:b (Results 1 – 25 of 158) sorted by relevance

1234567

/PHP-7.1/ext/gd/libgd/
H A Dgd_intern.h4 #define MIN(a,b) ((a)<(b)?(a):(b)) argument
6 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c))) argument
8 #define MAX(a,b) ((a)<(b)?(b):(a)) argument
10 #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c))) argument
H A Dgd_rotate.c23 int i, r, g, b, a, clrBackR, clrBackG, clrBackB, clrBackA; in gdImageSkewX() local
120 int i, iYPos=0, r, g, b, a; in gdImageSkewY() local
208 int c,r,g,b,a; in gdImageRotate90() local
255 int c,r,g,b,a; in gdImageRotate180() local
303 int c,r,g,b,a; in gdImageRotate270() local
H A Dgd_filter.c19 int r,g,b,a; in gdImageNegate() local
52 int r,g,b,a; in gdImageGrayScale() local
92 int r,g,b,a; in gdImageBrightness() local
137 int r,g,b,a; in gdImageContrast() local
209 int r,g,b,a; in gdImageColor() local
H A Dgd_security.c20 int overflow2(int a, int b) in overflow2()
H A Dxbm.c48 unsigned int b; in gdImageCreateFromXbm() local
180 int x, y, c, b, sx, sy, p; in gdImageXbmCtx() local
/PHP-7.1/ext/xmlrpc/libxmlrpc/
H A Dbase64.c24 void buffer_new(struct buffer_st *b) in buffer_new()
33 void buffer_add(struct buffer_st *b, char c) in buffer_add()
47 void buffer_delete(struct buffer_st *b) in buffer_delete()
56 void base64_encode_xmlrpc(struct buffer_st *b, const char *source, int length) in base64_encode_xmlrpc()
150 unsigned char a[4], b[4], o[3]; in base64_decode_xmlrpc() local
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_config.h39 # define timeradd(a, b, result) \ argument
53 # define timercmp(a, b, CMP) \ argument
61 # define MIN(a,b) (((a)<(b))?(a):(b)) argument
65 # define MAX(a,b) (((a)>(b))?(a):(b)) argument
/PHP-7.1/ext/opcache/Optimizer/
H A Dzend_cfg.c27 static void zend_mark_reachable(zend_op *opcodes, zend_cfg *cfg, zend_basic_block *b) /* {{{ */ in zend_mark_reachable()
101 zend_basic_block *b; in zend_mark_reachable_blocks() local
569 zend_basic_block *b; in zend_cfg_build_predecessors() local
613 zend_basic_block *b = blocks + blocks[j].successors[0]; in zend_cfg_build_predecessors() local
618 zend_basic_block *b = blocks + blocks[j].successors[1]; in zend_cfg_build_predecessors() local
743 static int dominates(zend_basic_block *blocks, int a, int b) /* {{{ */ in dominates()
756 static int compare_block_level(const block_info *a, const block_info *b) { in compare_block_level()
759 static void swap_blocks(block_info *a, block_info *b) { in swap_blocks()
H A Dblock_pass.c89 static void strip_leading_nops(zend_op_array *op_array, zend_basic_block *b) in strip_leading_nops()
108 static void strip_nops(zend_op_array *op_array, zend_basic_block *b) in strip_nops()
802 zend_basic_block *b; in assemble_code_blocks() local
1732 zend_basic_block *b, *bb; in zend_merge_blocks() local
1788 zend_basic_block *blocks, *end, *b; in zend_optimize_cfg() local
/PHP-7.1/Zend/
H A Dzend_multiply.h27 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
39 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
51 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
64 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
77 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
94 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
107 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
H A Dzend_ptr_stack.h72 static zend_always_inline void zend_ptr_stack_2_push(zend_ptr_stack *stack, void *a, void *b) in zend_ptr_stack_2_push()
85 static zend_always_inline void zend_ptr_stack_3_pop(zend_ptr_stack *stack, void **a, void **b, void… in zend_ptr_stack_3_pop()
93 static zend_always_inline void zend_ptr_stack_2_pop(zend_ptr_stack *stack, void **a, void **b) in zend_ptr_stack_2_pop()
H A Dzend_strtod.c719 Bigint *b; local
839 Bigint *b; local
850 (a, b) Bigint *a, *b; in mult() argument
1079 (a, b) Bigint *a, *b; in cmp() argument
1113 (a, b) Bigint *a, *b; in diff() argument
1324 Bigint *b; local
1453 (a, b) Bigint *a, *b; in ratio() argument
1697 increment(b) Bigint *b; in increment() argument
1808 Bigint *b; local
2178 (b, S) Bigint *b, *S; in quorem() argument
[all …]
H A Dzend_sort.c93 static inline void zend_sort_2(void *a, void *b, compare_func_t cmp, swap_func_t swp) /* {{{ */ { in zend_sort_2()
100 static inline void zend_sort_3(void *a, void *b, void *c, compare_func_t cmp, swap_func_t swp) /* {… in zend_sort_3()
122 static void zend_sort_4(void *a, void *b, void *c, void *d, compare_func_t cmp, swap_func_t swp) /*… in zend_sort_4()
136 static void zend_sort_5(void *a, void *b, void *c, void *d, void *e, compare_func_t cmp, swap_func_… in zend_sort_5()
/PHP-7.1/ext/standard/
H A Dstrnatcmp.c46 compare_right(char const **a, char const *aend, char const **b, char const *bend) in compare_right()
78 compare_left(char const **a, char const *aend, char const **b, char const *bend) in compare_left()
102 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 Dphp_string.h111 #define strnatcmp(a, b) \ argument
113 #define strnatcasecmp(a, b) \ argument
H A Darray.c142 static int php_array_key_compare(const void *a, const void *b) /* {{{ */ in php_array_key_compare()
183 static int php_array_reverse_key_compare(const void *a, const void *b) /* {{{ */ in php_array_reverse_key_compare()
189 static int php_array_key_compare_numeric(const void *a, const void *b) /* {{{ */ in php_array_key_compare_numeric()
252 static int php_array_key_compare_string(const void *a, const void *b) /* {{{ */ in php_array_key_compare_string()
372 static int php_array_data_compare(const void *a, const void *b) /* {{{ */ in php_array_data_compare()
512 static int php_array_natural_compare(const void *a, const void *b) /* {{{ */ in php_array_natural_compare()
953 static int php_array_user_compare(const void *a, const void *b) /* {{{ */ in php_array_user_compare()
1062 static int php_array_user_key_compare(const void *a, const void *b) /* {{{ */ in php_array_user_key_compare()
3778 Bucket b; member
3869 static int zval_user_compare(zval *a, zval *b) /* {{{ */
[all …]
H A Dsha1.c135 #define FF(a, b, c, d, e, w) { \ argument
140 #define GG(a, b, c, d, e, w) { \ argument
145 #define HH(a, b, c, d, e, w) { \ argument
150 #define II(a, b, c, d, e, w) { \ argument
259 uint32_t a = state[0], b = state[1], c = state[2]; local
H A Dphp_random.h34 #define php_random_bytes_throw(b, s) php_random_bytes((b), (s), 1) argument
35 #define php_random_bytes_silent(b, s) php_random_bytes((b), (s), 0) argument
/PHP-7.1/ext/pdo_dblib/
H A Dphp_pdo_dblib_int.h33 # define DBERRHANDLE(a, b) dbprocerrhandle(a, b) argument
34 # define DBMSGHANDLE(a, b) dbprocmsghandle(a, b) argument
37 # define DBSETOPT(a, b, c) dbsetopt(a, b, c) argument
78 # define DBERRHANDLE(a, b) dberrhandle(b) argument
79 # define DBMSGHANDLE(a, b) dbmsghandle(b) argument
80 # define DBSETOPT(a, b, c) dbsetopt(a, b, c, -1) argument
/PHP-7.1/main/
H A Dphp_scandir.c53 PHPAPI int php_alphasort(const struct dirent **a, const struct dirent **b) in php_alphasort()
60 …r) (const struct dirent *entry), int (*compare) (const struct dirent **a, const struct dirent **b)) in php_scandir()
H A Dwin95nt.h46 #define mkdir(a, b) _mkdir(a) argument
51 # define getcwd(a, b) _getcwd(a, b) argument
/PHP-7.1/ext/hash/
H A Dhash_md.c243 #define FF(a, b, c, d, x, s, ac) { \ argument
248 #define GG(a, b, c, d, x, s, ac) { \ argument
253 #define HH(a, b, c, d, x, s, ac) { \ argument
258 #define II(a, b, c, d, x, s, ac) { \ argument
358 uint32_t a = state[0], b = state[1], c = state[2], d = state[3], x[16]; local
454 #define MD4_R1(a,b,c,d,k,s) a = ROTL32(s, a + MD4_F(b,c,d) + x[k]) argument
455 #define MD4_R2(a,b,c,d,k,s) a = ROTL32(s, a + MD4_G(b,c,d) + x[k] + 0x5A827999) argument
456 #define MD4_R3(a,b,c,d,k,s) a = ROTL32(s, a + MD4_H(b,c,d) + x[k] + 0x6ED9EBA1) argument
460 uint32_t a = state[0], b = state[1], c = state[2], d = state[3], x[16]; in MD4Transform() local
H A Dhash_tiger.c42 #define round(a,b,c,x,mul) \ argument
54 #define pass(a,b,c,mul) \ argument
246 #define PHP_HASH_TIGER_OPS(p, b) \ argument
H A Dhash_sha.c181 #define FF(a, b, c, d, e, w) { \ argument
186 #define GG(a, b, c, d, e, w) { \ argument
191 #define HH(a, b, c, d, e, w) { \ argument
196 #define II(a, b, c, d, e, w) { \ argument
224 uint32_t a = state[0], b = state[1], c = state[2]; in SHA1Transform() local
431 #define ROTR32(b,x) ((x >> b) | (x << (32 - b))) argument
432 #define ROTR64(b,x) ((x >> b) | (x << (64 - b))) argument
433 #define SHR(b, x) (x >> b) argument
482 uint32_t a = state[0], b = state[1], c = state[2], d = state[3]; in SHA256Transform() local
792 uint64_t a = state[0], b = state[1], c = state[2], d = state[3]; in SHA512Transform() local
/PHP-7.1/Zend/tests/bug67436/
H A Db.php3 class b extends a { class

Completed in 125 milliseconds

1234567