Home
last modified time | relevance | path

Searched defs:b (Results 1 – 25 of 165) sorted by path

1234567

/PHP-7.3/Zend/
H A Dmicro_bench.php26 public $b = 0; variable in Foo
H A Dzend_API.c1374 ZEND_API int add_assoc_bool_ex(zval *arg, const char *key, size_t key_len, int b) /* {{{ */ in add_assoc_bool_ex()
1461 ZEND_API int add_index_bool(zval *arg, zend_ulong index, int b) /* {{{ */ in add_index_bool()
1546 ZEND_API int add_next_index_bool(zval *arg, int b) /* {{{ */ in add_next_index_bool()
1725 ZEND_API int add_property_bool_ex(zval *arg, const char *key, size_t key_len, zend_long b) /* {{{ */ in add_property_bool_ex()
H A Dzend_API.h617 #define RETVAL_BOOL(b) ZVAL_BOOL(return_value, b) argument
635 #define RETURN_BOOL(b) { RETVAL_BOOL(b); return; } argument
H A Dzend_alloc.c1183 # define MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
1187 # define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
H A Dzend_ini.c181 static int ini_key_compare(const void *a, const void *b) /* {{{ */ in ini_key_compare()
H A Dzend_multiply.h27 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
37 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
47 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
59 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
71 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
86 # define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
98 # define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
112 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
129 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
142 #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ argument
H A Dzend_opcode.c493 static int cmp_live_range(const zend_live_range *a, const zend_live_range *b) { in cmp_live_range()
496 static void swap_live_range(zend_live_range *a, zend_live_range *b) { in swap_live_range()
H A Dzend_portability.h380 # define LONGJMP(a,b) siglongjmp(a, b) argument
384 # define LONGJMP(a,b) longjmp(a, b) argument
440 #define MAX(a, b) (((a)>(b))?(a):(b)) argument
441 #define MIN(a, b) (((a)<(b))?(a):(b)) argument
495 #define ZEND_LOG_XOR(a, b) (ZEND_TRUTH(a) ^ ZEND_TRUTH(b)) argument
H A Dzend_ptr_stack.h71 static zend_always_inline void zend_ptr_stack_2_push(zend_ptr_stack *stack, void *a, void *b) in zend_ptr_stack_2_push()
84 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()
92 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_sort.c91 static inline void zend_sort_2(void *a, void *b, compare_func_t cmp, swap_func_t swp) /* {{{ */ { in zend_sort_2()
98 static inline void zend_sort_3(void *a, void *b, void *c, compare_func_t cmp, swap_func_t swp) /* {… in zend_sort_3()
120 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()
134 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()
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_types.h36 # define ZEND_ENDIAN_LOHI_4(a, b, c, d) d; c; b; a; argument
39 # define ZEND_ENDIAN_LOHI_C_4(a, b, c, d) d, c, b, a argument
43 # define ZEND_ENDIAN_LOHI_4(a, b, c, d) a; b; c; d; argument
46 # define ZEND_ENDIAN_LOHI_C_4(a, b, c, d) a, b, c, d argument
738 #define ZVAL_BOOL(z, b) do { \ argument
/PHP-7.3/Zend/tests/bug67436/
H A Db.php3 class b extends a { class
/PHP-7.3/ext/bcmath/libbcmath/src/
H A Dbcmath.h75 #define MAX(a, b) ((a)>(b)?(a):(b)) argument
76 #define MIN(a, b) ((a)>(b)?(b):(a)) argument
/PHP-7.3/ext/calendar/
H A Deaster.c38 struct tm b, *res; in _cal_easter() local
/PHP-7.3/ext/date/lib/
H A Dparse_date.c36 # define strtoll(s, f, b) _atoi64(s) argument
39 # define strtoll(s, f, b) atoll(s) argument
41 # define strtoll(s, f, b) strtol(s, f, b) argument
H A Dparse_iso_intervals.c33 # define strtoll(s, f, b) _atoi64(s) argument
36 # define strtoll(s, f, b) atoll(s) argument
38 # define strtoll(s, f, b) strtol(s, f, b) argument
H A Dtimelib.c229 #define MAX(a, b) (((a)>(b))?(a):(b)) argument
230 #define MIN(a, b) (((a)<(b))?(a):(b)) argument
H A Dtm2unixtime.c36 …do_range_limit(timelib_sll start, timelib_sll end, timelib_sll adj, timelib_sll *a, timelib_sll *b) in do_range_limit()
/PHP-7.3/ext/date/
H A Dphp_date.c4125 timelib_time *b = NULL, *e = NULL; in date_interval_initialize() local
4580 timelib_time *b = NULL, *e = NULL; in date_period_initialize() local
/PHP-7.3/ext/dba/libcdb/
H A Dcdb.c71 const unsigned char * b = (unsigned char *)buf; in cdb_hash() local
/PHP-7.3/ext/exif/
H A Dexif.c64 # define max(a,b) ((a)>(b) ? (a) : (b)) argument
2339 int i, ap, l, b, idx=0, unknown=0; in add_assoc_image_info() local
/PHP-7.3/ext/fileinfo/libmagic/
H A Dapprentice.c917 apprentice_sort(const void *a, const void *b) in apprentice_sort()
H A Dascmagic.c71 file_ascmagic(struct magic_set *ms, const struct buffer *b, int text) in file_ascmagic()
100 const struct buffer *b, unichar *ubuf, size_t ulen, const char *code, in file_ascmagic_with_encoding()
H A Dbuffer.c44 buffer_init(struct buffer *b, int fd, const void *data, size_t len) in buffer_init()
57 buffer_fini(struct buffer *b) in buffer_fini()
65 struct buffer *b = CCAST(struct buffer *, bb); in buffer_fill() local

Completed in 172 milliseconds

1234567