/PHP-8.3/Zend/ |
H A D | zend_long.h | 66 # define ZEND_STRTOL(s0, s1, base) _strtoi64((s0), (s1), (base)) argument 67 # define ZEND_STRTOUL(s0, s1, base) _strtoui64((s0), (s1), (base)) argument 78 # define ZEND_STRTOL(s0, s1, base) strtoll((s0), (s1), (base)) argument 79 # define ZEND_STRTOUL(s0, s1, base) strtoull((s0), (s1), (base)) argument 85 # define ZEND_STRTOL(s0, s1, base) strtol((s0), (s1), (base)) argument 86 # define ZEND_STRTOUL(s0, s1, base) strtoul((s0), (s1), (base)) argument
|
H A D | zend_call_stack.h | 31 void *base; member 56 static inline void* zend_call_stack_limit(void *base, size_t size, size_t reserved_size) in zend_call_stack_limit()
|
H A D | zend_call_stack.c | 69 void *base = EG(call_stack).base; in zend_call_stack_init() local 88 void *base = EG(call_stack).base; in zend_call_stack_init() local 417 void *base = pthread_get_stackaddr_np(pthread_self()); in zend_call_stack_get_macos() local
|
H A D | zend_sort.c | 84 ZEND_API void zend_insert_sort(void *base, size_t nmemb, size_t siz, compare_func_t cmp, swap_func_… in zend_insert_sort() 248 ZEND_API void zend_sort(void *base, size_t nmemb, size_t siz, compare_func_t cmp, swap_func_t swp) in zend_sort()
|
/PHP-8.3/ext/pcre/pcre2lib/sljit/ |
H A D | sljitProtExecAllocator.c | 279 #define AS_BLOCK_HEADER(base, offset) \ argument 281 #define AS_FREE_BLOCK(base, offset) \ argument 283 #define MEM_START(base) ((void*)((base) + 1)) argument
|
H A D | sljitExecAllocator.c | 233 #define AS_BLOCK_HEADER(base, offset) \ argument 235 #define AS_FREE_BLOCK(base, offset) \ argument 237 #define MEM_START(base) ((void*)(((sljit_u8*)base) + sizeof(struct block_header))) argument
|
H A D | sljitNativeS390X.c | 922 sljit_gpr base; member 932 sljit_gpr base = r0; in make_addr_bxy() local 965 sljit_gpr base = r0; in make_addr_bx() local 1205 sljit_gpr base, index; in emit_rx() local 3596 sljit_ins ins, reg1, reg2, base, offs = 0; in sljit_emit_mem() local
|
H A D | sljitNativeRISCV_common.c | 844 …nst(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 base, sljit_sw offs… in push_mem_inst() 906 sljit_s32 base = arg & REG_MASK; in getput_arg() local 995 sljit_s32 base = arg & REG_MASK; in emit_op_mem() local
|
/PHP-8.3/ext/bcmath/libbcmath/src/ |
H A D | raisemod.c | 37 raise_mod_status bc_raisemod(bc_num base, bc_num expo, bc_num mod, bc_num *result, size_t scale) in bc_raisemod()
|
H A D | raise.c | 105 void bc_raise_bc_exponent(bc_num base, bc_num expo, bc_num *result, size_t scale) in bc_raise_bc_exponent()
|
H A D | output.c | 82 bc_num int_part, frac_part, base, cur_dig, t_num, max_o_digit; in bc_out_num() local
|
/PHP-8.3/ext/standard/ |
H A D | math.c | 569 double num, base = 0; in PHP_FUNCTION() local 671 PHPAPI zend_long _php_math_basetolong(zval *arg, int base) in _php_math_basetolong() 715 PHPAPI void _php_math_basetozval(zend_string *str, int base, zval *ret) in _php_math_basetozval() 794 PHPAPI zend_string * _php_math_longtobase(zend_long arg, int base) in _php_math_longtobase() 860 PHPAPI zend_string * _php_math_zvaltobase(zval *arg, int base) in _php_math_zvaltobase()
|
H A D | type.c | 146 zend_long base = 10; in PHP_FUNCTION() local
|
H A D | scanf.c | 585 int base = 0; in php_sscanf_internal() local
|
/PHP-8.3/ext/soap/ |
H A D | php_schema.c | 215 xmlChar *base = xmlNodeGetBase(trav->doc, trav); in load_schema() local 235 xmlChar *base = xmlNodeGetBase(trav->doc, trav); in load_schema() local 263 xmlChar *base = xmlNodeGetBase(trav->doc, trav); in load_schema() local 659 xmlAttrPtr base; in schema_restriction_simpleContent() local 763 xmlAttrPtr base; in schema_restriction_complexContent() local 889 xmlAttrPtr base; in schema_extension_simpleContent() local 944 xmlAttrPtr base; in schema_extension_complexContent() local
|
/PHP-8.3/sapi/fpm/fpm/ |
H A D | fpm_trace_mach.c | 83 vm_offset_t base = (uintptr_t) (addr) - offset; in fpm_trace_get_long() local
|
/PHP-8.3/ext/gmp/ |
H A D | gmp.stub.php | 62 public function __construct(int|string $num = 0, int $base = 0) {} 69 function gmp_init(int|string $num, int $base = 0): GMP {} 77 function gmp_strval(GMP|int|string $num, int $base = 10): string {}
|
H A D | gmp.c | 641 static zend_result convert_zstr_to_gmp(mpz_t gmp_number, const zend_string *val, zend_long base, ui… in convert_zstr_to_gmp() 674 static zend_result convert_to_gmp(mpz_t gmpnumber, zval *val, zend_long base, uint32_t arg_pos) in convert_to_gmp() 710 static void gmp_strval(zval *result, mpz_t gmpnum, int base) /* {{{ */ in gmp_strval() 933 static bool gmp_verify_base(zend_long base, uint32_t arg_num) in gmp_verify_base() 943 …_initialize_number(mpz_ptr gmp_number, const zend_string *arg_str, zend_long arg_l, zend_long base) in gmp_initialize_number() 959 zend_long base = 0; in ZEND_FUNCTION() local 1114 zend_long base = 10; in ZEND_FUNCTION() local 2141 zend_long base = 0; in ZEND_METHOD() local
|
/PHP-8.3/ext/intl/collator/ |
H A D | collator_is_numeric.c | 113 static zend_long collator_u_strtol(const UChar *nptr, UChar **endptr, int base) in collator_u_strtol()
|
/PHP-8.3/ext/fileinfo/libmagic/ |
H A D | print.c | 349 file_fmtnum(char *buf, size_t blen, const char *us, int base) in file_fmtnum()
|
/PHP-8.3/ext/ldap/ |
H A D | ldap.stub.php | 613 …function ldap_connect(?string $uri = null, int $port = 389, string $wallet = UNKNOWN, #[\Sensitive…
|
/PHP-8.3/sapi/phpdbg/ |
H A D | phpdbg_bp.h | 95 phpdbg_breakopline_t *base; member
|
/PHP-8.3/ext/pcre/pcre2lib/ |
H A D | pcre2_auto_possess.c | 329 PCRE2_UCHAR base; in get_chr_property_list() local
|
/PHP-8.3/ext/date/lib/ |
H A D | tm2unixtime.c | 188 void timelib_do_rel_normalize(timelib_time *base, timelib_rel_time *rt) in timelib_do_rel_normalize()
|
/PHP-8.3/ext/xml/ |
H A D | xml.c | 857 const XML_Char *entityName, const XML_Char *base, const XML_Char *systemId, in _xml_unparsedEntityDeclHandler() 881 const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) in _xml_notationDeclHandler() 903 const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) in _xml_externalEntityRefHandler()
|