base             1769 Zend/zend_API.c static void zend_sort_modules(void *base, size_t count, size_t siz, compare_func_t compare TSRMLS_DC) /* {{{ */
base             1771 Zend/zend_API.c 	Bucket **b1 = base;
base              553 Zend/zend_ini.c 	char *base = (char *) mh_arg2;
base              555 Zend/zend_ini.c 	char *base;
base              557 Zend/zend_ini.c 	base = (char *) ts_resource(*((int *) mh_arg2));
base              560 Zend/zend_ini.c 	p = (zend_bool *) (base+(size_t) mh_arg1);
base              582 Zend/zend_ini.c 	char *base = (char *) mh_arg2;
base              584 Zend/zend_ini.c 	char *base;
base              586 Zend/zend_ini.c 	base = (char *) ts_resource(*((int *) mh_arg2));
base              589 Zend/zend_ini.c 	p = (long *) (base+(size_t) mh_arg1);
base              600 Zend/zend_ini.c 	char *base = (char *) mh_arg2;
base              602 Zend/zend_ini.c 	char *base;
base              604 Zend/zend_ini.c 	base = (char *) ts_resource(*((int *) mh_arg2));
base              612 Zend/zend_ini.c 	p = (long *) (base+(size_t) mh_arg1);
base              623 Zend/zend_ini.c 	char *base = (char *) mh_arg2;
base              625 Zend/zend_ini.c 	char *base;
base              627 Zend/zend_ini.c 	base = (char *) ts_resource(*((int *) mh_arg2));
base              630 Zend/zend_ini.c 	p = (double *) (base+(size_t) mh_arg1);
base              641 Zend/zend_ini.c 	char *base = (char *) mh_arg2;
base              643 Zend/zend_ini.c 	char *base;
base              645 Zend/zend_ini.c 	base = (char *) ts_resource(*((int *) mh_arg2));
base              648 Zend/zend_ini.c 	p = (char **) (base+(size_t) mh_arg1);
base              659 Zend/zend_ini.c 	char *base = (char *) mh_arg2;
base              661 Zend/zend_ini.c 	char *base;
base              663 Zend/zend_ini.c 	base = (char *) ts_resource(*((int *) mh_arg2));
base              670 Zend/zend_ini.c 	p = (char **) (base+(size_t) mh_arg1);
base              369 Zend/zend_operators.c ZEND_API void convert_to_long_base(zval *op, int base) /* {{{ */
base              393 Zend/zend_operators.c 				Z_LVAL_P(op) = strtol(strval, NULL, base);
base              135 Zend/zend_operators.h 	int base = 10, digits = 0, dp_or_e = 0;
base              163 Zend/zend_operators.h 			base = 16;
base              177 Zend/zend_operators.h 			if (ZEND_IS_DIGIT(*ptr) || (base == 16 && ZEND_IS_XDIGIT(*ptr))) {
base              179 Zend/zend_operators.h 			} else if (base == 10) {
base              197 Zend/zend_operators.h 		if (base == 10) {
base              256 Zend/zend_operators.h 			*lval = strtol(str, NULL, base);
base              332 Zend/zend_operators.h ZEND_API void convert_to_long_base(zval *op, int base);
base               57 Zend/zend_qsort.c ZEND_API void zend_qsort_r(void *base, size_t nmemb, size_t siz, compare_r_func_t compare, void *arg TSRMLS_DC)
base               69 Zend/zend_qsort.c 	begin_stack[0] = (char *) base;
base               70 Zend/zend_qsort.c 	end_stack[0]   = (char *) base + ((nmemb - 1) * siz);
base              121 Zend/zend_qsort.c ZEND_API void zend_qsort(void *base, size_t nmemb, size_t siz, compare_func_t compare TSRMLS_DC)
base              123 Zend/zend_qsort.c 	zend_qsort_r(base, nmemb, siz, (compare_r_func_t)compare, NULL TSRMLS_CC);
base               26 Zend/zend_qsort.h ZEND_API void zend_qsort(void *base, size_t nmemb, size_t siz, compare_func_t compare TSRMLS_DC);
base               27 Zend/zend_qsort.h ZEND_API void zend_qsort_r(void *base, size_t nmemb, size_t siz, compare_r_func_t compare, void *arg TSRMLS_DC);
base              142 ext/bcmath/libbcmath/src/bcmath.h _PROTOTYPE(int bc_raisemod, (bc_num base, bc_num expo, bc_num mod,
base               98 ext/bcmath/libbcmath/src/output.c   bc_num int_part, frac_part, base, cur_dig, t_num, max_o_digit;
base              140 ext/bcmath/libbcmath/src/output.c 	bc_init_num (&base TSRMLS_CC);
base              145 ext/bcmath/libbcmath/src/output.c 	bc_int2num (&base, o_base);
base              153 ext/bcmath/libbcmath/src/output.c 	    bc_modulo (int_part, base, &cur_dig, 0 TSRMLS_CC);
base              160 ext/bcmath/libbcmath/src/output.c 	    bc_divide (int_part, base, &int_part, 0 TSRMLS_CC);
base              186 ext/bcmath/libbcmath/src/output.c 	      bc_multiply (frac_part, base, &frac_part, num->n_scale TSRMLS_CC);
base              196 ext/bcmath/libbcmath/src/output.c 	      bc_multiply (t_num, base, &t_num, 0 TSRMLS_CC);
base              204 ext/bcmath/libbcmath/src/output.c 	bc_free_num (&base);
base               46 ext/bcmath/libbcmath/src/raisemod.c bc_raisemod (bc_num base, bc_num expo, bc_num mod, bc_num *result, int scale TSRMLS_DC)
base               56 ext/bcmath/libbcmath/src/raisemod.c   power = bc_copy_num (base);
base               62 ext/bcmath/libbcmath/src/raisemod.c   if (base->n_scale != 0)
base               77 ext/bcmath/libbcmath/src/raisemod.c   rscale = MAX(scale, base->n_scale);
base              103 ext/date/lib/timelib.h void timelib_do_normalize(timelib_time *base);
base              104 ext/date/lib/timelib.h void timelib_do_rel_normalize(timelib_time *base, timelib_rel_time *rt);
base              174 ext/date/lib/tm2unixtime.c void timelib_do_rel_normalize(timelib_time *base, timelib_rel_time *rt)
base              181 ext/date/lib/tm2unixtime.c 	do_range_limit_days_relative(&base->y, &base->m, &rt->y, &rt->m, &rt->d, rt->invert);
base               43 ext/gmp/gmp.c  	ZEND_ARG_INFO(0, base)
base               64 ext/gmp/gmp.c  	ZEND_ARG_INFO(0, base)
base               83 ext/gmp/gmp.c  	ZEND_ARG_INFO(0, base)
base               88 ext/gmp/gmp.c  	ZEND_ARG_INFO(0, base)
base              330 ext/gmp/gmp.c  static void gmp_strval(zval *result, mpz_t gmpnum, long base);
base              331 ext/gmp/gmp.c  static int convert_to_gmp(mpz_t gmpnumber, zval *val, int base TSRMLS_DC);
base              751 ext/gmp/gmp.c  static int convert_to_gmp(mpz_t gmpnumber, zval *val, int base TSRMLS_DC)
base              765 ext/gmp/gmp.c  			if ((base == 0 || base == 16) && (numstr[1] == 'x' || numstr[1] == 'X')) {
base              766 ext/gmp/gmp.c  				base = 16;
base              768 ext/gmp/gmp.c  			} else if ((base == 0 || base == 2) && (numstr[1] == 'b' || numstr[1] == 'B')) {
base              769 ext/gmp/gmp.c  				base = 2;
base              774 ext/gmp/gmp.c  		ret = mpz_set_str(gmpnumber, (skip_lead ? &numstr[2] : numstr), base);
base              791 ext/gmp/gmp.c  static void gmp_strval(zval *result, mpz_t gmpnum, long base) /* {{{ */
base              796 ext/gmp/gmp.c  	num_len = mpz_sizeinbase(gmpnum, abs(base));
base              802 ext/gmp/gmp.c  	mpz_get_str(out_string, base, gmpnum);
base             1066 ext/gmp/gmp.c  	long base = 0;
base             1068 ext/gmp/gmp.c  	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|l", &number_arg, &base) == FAILURE) {
base             1072 ext/gmp/gmp.c  	if (base && (base < 2 || base > MAX_BASE)) {
base             1073 ext/gmp/gmp.c  		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Bad base for conversion: %ld (should be between 2 and %d)", base, MAX_BASE);
base             1078 ext/gmp/gmp.c  	if (convert_to_gmp(gmpnumber, number_arg, base TSRMLS_CC) == FAILURE) {
base             1220 ext/gmp/gmp.c  	long base = 10;
base             1224 ext/gmp/gmp.c  	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|l", &gmpnumber_arg, &base) == FAILURE) {
base             1231 ext/gmp/gmp.c  	if ((base < 2 && base > -2) || base > MAX_BASE || base < -36) {
base             1232 ext/gmp/gmp.c  		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Bad base for conversion: %ld (should be between 2 and %d or -2 and -36)", base, MAX_BASE);
base             1234 ext/gmp/gmp.c  	if (base < 2 || base > MAX_BASE) {
base             1235 ext/gmp/gmp.c  		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Bad base for conversion: %ld (should be between 2 and %d)", base, MAX_BASE);
base             1242 ext/gmp/gmp.c  	gmp_strval(return_value, gmpnum, base);
base             1512 ext/interbase/ibase_query.c 			char const *base = "FIELD"; /* use 'FIELD' if name is empty */
base             1523 ext/interbase/ibase_query.c 					base = alias;
base             1529 ext/interbase/ibase_query.c 						snprintf(alias = buf, sizeof(buf), "%s_%02d", base, i++);
base              128 ext/intl/collator/collator_is_numeric.c static long collator_u_strtol(nptr, endptr, base)
base              131 ext/intl/collator/collator_is_numeric.c 	register int base;
base              160 ext/intl/collator/collator_is_numeric.c 	if ((base == 0 || base == 16) &&
base              165 ext/intl/collator/collator_is_numeric.c 		base = 16;
base              167 ext/intl/collator/collator_is_numeric.c 	if (base == 0)
base              168 ext/intl/collator/collator_is_numeric.c 		base = (c == 0x30 /*'0'*/) ? 8 : 10;
base              188 ext/intl/collator/collator_is_numeric.c 	cutlim = cutoff % (unsigned long)base;
base              189 ext/intl/collator/collator_is_numeric.c 	cutoff /= (unsigned long)base;
base              199 ext/intl/collator/collator_is_numeric.c 		if (c >= base)
base              206 ext/intl/collator/collator_is_numeric.c 			acc *= base;
base              685 ext/mbstring/oniguruma/regint.h   NodeBase base;
base             2280 ext/mbstring/oniguruma/regparse.c   int base;   /* is number: 8, 16 (used in [....]) */
base             2925 ext/mbstring/oniguruma/regparse.c   tok->base = 0;
base             3025 ext/mbstring/oniguruma/regparse.c 	  tok->base   = 16;
base             3040 ext/mbstring/oniguruma/regparse.c 	tok->base = 16;
base             3056 ext/mbstring/oniguruma/regparse.c 	tok->base   = 16;
base             3072 ext/mbstring/oniguruma/regparse.c 	tok->base = 8;
base             3143 ext/mbstring/oniguruma/regparse.c   tok->base  = 0;
base             3379 ext/mbstring/oniguruma/regparse.c 	tok->base = 16;
base             3395 ext/mbstring/oniguruma/regparse.c 	tok->base   = 16;
base             3444 ext/mbstring/oniguruma/regparse.c 	tok->base = 8;
base             4240 ext/mbstring/oniguruma/regparse.c       if (! ONIGENC_IS_SINGLEBYTE(env->enc) && tok->base != 0) {
base             4244 ext/mbstring/oniguruma/regparse.c 	int i, base = tok->base;
base             4250 ext/mbstring/oniguruma/regparse.c 	  if (r != TK_RAW_BYTE || tok->base != base) {
base               66 ext/mbstring/oniguruma/regparse.h #define NTYPE(node)             ((node)->u.base.type)
base               67 ext/mbstring/oniguruma/regparse.h #define SET_NTYPE(node, ntype)   (node)->u.base.type = (ntype)
base              161 ext/mbstring/oniguruma/regparse.h   NodeBase base;
base              170 ext/mbstring/oniguruma/regparse.h   NodeBase base;
base              186 ext/mbstring/oniguruma/regparse.h   NodeBase base;
base              214 ext/mbstring/oniguruma/regparse.h   NodeBase base;
base              226 ext/mbstring/oniguruma/regparse.h   NodeBase base;
base              235 ext/mbstring/oniguruma/regparse.h   NodeBase base;
base              242 ext/mbstring/oniguruma/regparse.h   NodeBase base;
base              248 ext/mbstring/oniguruma/regparse.h   NodeBase base;
base              255 ext/mbstring/oniguruma/regparse.h     NodeBase     base;
base              110 ext/opcache/zend_accelerator_module.c 	char *base = (char *) mh_arg2;
base              112 ext/opcache/zend_accelerator_module.c 	char *base = (char *) ts_resource(*((int *) mh_arg2));
base              118 ext/opcache/zend_accelerator_module.c 	p = (long *) (base + (size_t)mh_arg1);
base              148 ext/opcache/zend_accelerator_module.c 	char *base = (char *) mh_arg2;
base              150 ext/opcache/zend_accelerator_module.c 	char *base = (char *) ts_resource(*((int *) mh_arg2));
base              156 ext/opcache/zend_accelerator_module.c 	p = (long *) (base + (size_t)mh_arg1);
base              194 ext/opcache/zend_accelerator_module.c 	char *base = (char *) mh_arg2;
base              196 ext/opcache/zend_accelerator_module.c 	char *base = (char *) ts_resource(*((int *) mh_arg2));
base              202 ext/opcache/zend_accelerator_module.c 	p = (double *) (base + (size_t)mh_arg1);
base              235 ext/opcache/zend_accelerator_module.c 		char *base = (char *) mh_arg2;
base              237 ext/opcache/zend_accelerator_module.c 		char *base = (char *) ts_resource(*((int *) mh_arg2));
base              240 ext/opcache/zend_accelerator_module.c 		p = (zend_bool *) (base+(size_t) mh_arg1);
base             2919 ext/pcre/pcrelib/pcre_compile.c pcre_uchar base;
base             2936 ext/pcre/pcrelib/pcre_compile.c   base = get_repeat_base(c);
base             2937 ext/pcre/pcrelib/pcre_compile.c   c -= (base - OP_STAR);
base             2944 ext/pcre/pcrelib/pcre_compile.c   switch(base)
base             2225 ext/pcre/pcrelib/pcre_jit_compile.c OP1(SLJIT_MOV, STACK_TOP, 0, SLJIT_MEM1(STACK_TOP), SLJIT_OFFSETOF(struct sljit_stack, base));
base             7915 ext/pcre/pcrelib/pcre_jit_compile.c int base = (private_data_ptr == 0) ? SLJIT_MEM1(STACK_TOP) : SLJIT_MEM1(SLJIT_SP);
base             8013 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, base, offset0, STR_PTR, 0);
base             8015 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, base, offset1, STR_PTR, 0);
base             8017 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, base, offset1, SLJIT_IMM, 1);
base             8020 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, base, offset0, STR_PTR, 0);
base             8025 ext/pcre/pcrelib/pcre_jit_compile.c       OP2(SLJIT_ADD, base, offset1, base, offset1, SLJIT_IMM, 1);
base             8030 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, TMP1, 0, base, offset1);
base             8032 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, base, offset1, TMP1, 0);
base             8037 ext/pcre/pcrelib/pcre_jit_compile.c       add_jump(compiler, &backtrack->topbacktracks, CMP(SLJIT_LESS, base, offset1, SLJIT_IMM, min + 1));
base             8038 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, STR_PTR, 0, base, offset0);
base             8049 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, base, offset0, STR_PTR, 0);
base             8057 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, base, offset0, STR_PTR, 0);
base             8058 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, base, offset1, SLJIT_IMM, 1);
base             8068 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, base, offset0, STR_PTR, 0);
base             8609 ext/pcre/pcrelib/pcre_jit_compile.c int base = (private_data_ptr == 0) ? SLJIT_MEM1(STACK_TOP) : SLJIT_MEM1(SLJIT_SP);
base             8635 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, STR_PTR, 0, base, offset0);
base             8636 ext/pcre/pcrelib/pcre_jit_compile.c       jump = CMP(SLJIT_LESS_EQUAL, STR_PTR, 0, base, offset1);
base             8640 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, TMP1, 0, base, offset1);
base             8641 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, STR_PTR, 0, base, offset0);
base             8643 ext/pcre/pcrelib/pcre_jit_compile.c       OP2(SLJIT_SUB, base, offset1, TMP1, 0, SLJIT_IMM, 1);
base             8646 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, base, offset0, STR_PTR, 0);
base             8660 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, STR_PTR, 0, base, offset0);
base             8662 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, base, offset0, STR_PTR, 0);
base             8678 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, STR_PTR, 0, base, offset0);
base             8681 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, TMP1, 0, base, offset1);
base             8682 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, base, offset0, STR_PTR, 0);
base             8684 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, base, offset1, TMP1, 0);
base             8700 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, STR_PTR, 0, base, offset0);
base             8701 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, base, offset0, SLJIT_IMM, 0);
base             8705 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, STR_PTR, 0, base, offset0);
base             8706 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, base, offset0, SLJIT_IMM, 0);
base             8714 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, STR_PTR, 0, base, offset0);
base             8715 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, base, offset0, SLJIT_IMM, 0);
base             10035 ext/pcre/pcrelib/pcre_jit_compile.c OP1(SLJIT_MOV, STACK_TOP, 0, SLJIT_MEM1(TMP2), SLJIT_OFFSETOF(struct sljit_stack, base));
base             10402 ext/pcre/pcrelib/pcre_jit_compile.c local_stack.base = local_stack.top;
base             10403 ext/pcre/pcrelib/pcre_jit_compile.c local_stack.limit = local_stack.base + MACHINE_STACK_SIZE;
base              139 ext/pcre/pcrelib/sljit/sljitExecAllocator.c #define AS_BLOCK_HEADER(base, offset) \
base              140 ext/pcre/pcrelib/sljit/sljitExecAllocator.c 	((struct block_header*)(((sljit_ub*)base) + offset))
base              141 ext/pcre/pcrelib/sljit/sljitExecAllocator.c #define AS_FREE_BLOCK(base, offset) \
base              142 ext/pcre/pcrelib/sljit/sljitExecAllocator.c 	((struct free_block*)(((sljit_ub*)base) + offset))
base              143 ext/pcre/pcrelib/sljit/sljitExecAllocator.c #define MEM_START(base)		((void*)(((sljit_ub*)base) + sizeof(struct block_header)))
base             1110 ext/pcre/pcrelib/sljit/sljitLir.h #define SLJIT_OFFSETOF(base, member) ((sljit_sw)(&((base*)0x10)->member) - 0x10)
base             1142 ext/pcre/pcrelib/sljit/sljitLir.h 	sljit_uw base;
base             1440 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c #define GETPUT_ARG_DATA_TRANSFER(add, wb, target, base, imm) \
base             1442 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 		FAIL_IF(push_inst(compiler, EMIT_DATA_TRANSFER(inp_flags, add, wb, target, base, imm))); \
base             1444 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 		FAIL_IF(push_inst(compiler, EMIT_DATA_TRANSFER(inp_flags, add, wb, target, base, TYPE2_TRANSFER_IMM(imm))));
base             2038 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c #define EMIT_FPU_DATA_TRANSFER(inst, add, base, freg, offs) \
base             2039 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 	((inst) | ((add) << 23) | (reg_map[base] << 16) | (freg << 12) | (offs))
base              545 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 	sljit_ins base;
base              563 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		base = S(SLJIT_SP);
base              569 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		base = S(TMP_REG2);
base              574 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 	FAIL_IF(push_inst(compiler, STACK_STORE | base | TA(RETURN_ADDR_REG) | IMM(offs), MOVABLE_INS));
base              579 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		FAIL_IF(push_inst(compiler, STACK_STORE | base | T(i) | IMM(offs), MOVABLE_INS));
base              584 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		FAIL_IF(push_inst(compiler, STACK_STORE | base | T(i) | IMM(offs), MOVABLE_INS));
base              617 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 	sljit_ins base;
base              626 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		base = S(SLJIT_SP);
base              630 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		base = S(TMP_REG1);
base              634 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 	FAIL_IF(push_inst(compiler, STACK_LOAD | base | TA(RETURN_ADDR_REG) | IMM(local_size - (sljit_si)sizeof(sljit_sw)), RETURN_ADDR_REG));
base              639 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		FAIL_IF(push_inst(compiler, STACK_LOAD | base | T(i) | IMM(offs), DR(i)));
base              645 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		FAIL_IF(push_inst(compiler, STACK_LOAD | base | T(i) | IMM(offs), DR(i)));
base              744 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 	sljit_si tmp_ar, base, delay_slot;
base              759 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 	base = arg & REG_MASK;
base              763 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		if ((flags & WRITE_BACK) && reg_ar == DR(base)) {
base              778 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 						FAIL_IF(push_inst(compiler, ADDU_W | S(base) | T(TMP_REG3) | D(TMP_REG3), DR(TMP_REG3)));
base              781 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 					FAIL_IF(push_inst(compiler, ADDU_W | S(base) | T(TMP_REG3) | DA(tmp_ar), tmp_ar));
base              787 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 					FAIL_IF(push_inst(compiler, ADDU_W | S(base) | T(TMP_REG3) | D(base), DR(base)));
base              788 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 					return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | S(base) | TA(reg_ar), delay_slot);
base              803 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 				FAIL_IF(push_inst(compiler, ADDU_W | S(base) | T(!argw ? OFFS_REG(arg) : TMP_REG3) | D(TMP_REG3), DR(TMP_REG3)));
base              807 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 				FAIL_IF(push_inst(compiler, ADDU_W | S(base) | T(!argw ? OFFS_REG(arg) : TMP_REG3) | DA(tmp_ar), tmp_ar));
base              810 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		FAIL_IF(push_inst(compiler, ADDU_W | S(base) | T(!argw ? OFFS_REG(arg) : TMP_REG3) | D(base), DR(base)));
base              811 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | S(base) | TA(reg_ar), delay_slot);
base              814 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 	if (SLJIT_UNLIKELY(flags & WRITE_BACK) && base) {
base              816 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		if (reg_ar == DR(base)) {
base              819 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 				FAIL_IF(push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | S(base) | TA(reg_ar) | IMM(argw), MOVABLE_INS));
base              821 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 					return push_inst(compiler, ADDIU_W | S(base) | T(base) | IMM(argw), DR(base));
base              830 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 				FAIL_IF(push_inst(compiler, ADDIU_W | S(base) | T(base) | IMM(argw), DR(base)));
base              838 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 				FAIL_IF(push_inst(compiler, ADDU_W | S(base) | T(TMP_REG3) | D(base), DR(base)));
base              844 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 				FAIL_IF(push_inst(compiler, ADDU_W | S(base) | T(TMP_REG3) | D(base), DR(base)));
base              847 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | S(base) | TA(reg_ar), delay_slot);
base              868 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 	if (!base)
base              873 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		FAIL_IF(push_inst(compiler, ADDU_W | S(TMP_REG3) | T(base) | D(TMP_REG3), DR(TMP_REG3)));
base              877 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 	FAIL_IF(push_inst(compiler, ADDU_W | S(TMP_REG3) | T(base) | DA(tmp_ar), tmp_ar));
base              554 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 	sljit_si base, arg2, delay_slot;
base              563 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 	base = arg & REG_MASK;
base              577 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 			else if ((flags & LOAD_DATA) && ((flags & MEM_MASK) <= GPR_REG) && reg != base && reg != OFFS_REG(arg))
base              598 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 			else if ((flags & LOAD_DATA) && ((flags & MEM_MASK) <= GPR_REG) && reg != base)
base              608 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 	if (!base)
base              611 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 		return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(base) | S2(arg2), delay_slot);
base              612 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 	FAIL_IF(push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(base) | S2(arg2), delay_slot));
base              613 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 	return push_inst(compiler, ADD | D(base) | S1(base) | S2(arg2), DR(base));
base             1179 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 	sljit_ins base;
base             1193 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 		base = SLJIT_LOCALS_REG_mapped;
base             1198 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 		base = TMP_REG2_mapped;
base             1203 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 	FAIL_IF(ADDLI(ADDR_TMP_mapped, base, local_size - 8));
base             1242 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 	sljit_ins base;
base             1253 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 		base = SLJIT_LOCALS_REG_mapped;
base             1257 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 		base = TMP_REG1_mapped;
base             1262 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 	FAIL_IF(ADDLI(ADDR_TMP_mapped, base, local_size - 8));
base             1342 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 	sljit_si tmp_ar, base;
base             1355 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 	base = arg & REG_MASK;
base             1360 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 		if ((flags & WRITE_BACK) && reg_ar == reg_map[base]) {
base             1380 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 						FAIL_IF(ADD(TMP_REG3_mapped, reg_map[base], TMP_REG3_mapped));
base             1387 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 					FAIL_IF(ADD(tmp_ar, reg_map[base], TMP_REG3_mapped));
base             1395 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 					FAIL_IF(ADD(reg_map[base], reg_map[base], TMP_REG3_mapped));
base             1397 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 						return PB2(data_transfer_insts[flags & MEM_MASK], reg_ar, reg_map[base]);
base             1399 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 						return PB2(data_transfer_insts[flags & MEM_MASK], reg_map[base], reg_ar);
base             1414 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 				FAIL_IF(ADD(TMP_REG3_mapped, reg_map[base], reg_map[!argw ? OFFS_REG(arg) : TMP_REG3]));
base             1417 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 				FAIL_IF(ADD(tmp_ar, reg_map[base], reg_map[!argw ? OFFS_REG(arg) : TMP_REG3]));
base             1425 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 		FAIL_IF(ADD(reg_map[base], reg_map[base], reg_map[!argw ? OFFS_REG(arg) : TMP_REG3]));
base             1428 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 			return PB2(data_transfer_insts[flags & MEM_MASK], reg_ar, reg_map[base]);
base             1430 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 			return PB2(data_transfer_insts[flags & MEM_MASK], reg_map[base], reg_ar);
base             1433 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 	if (SLJIT_UNLIKELY(flags & WRITE_BACK) && base) {
base             1435 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 		if (reg_ar == reg_map[base]) {
base             1438 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 				FAIL_IF(ADDLI(ADDR_TMP_mapped, reg_map[base], argw));
base             1445 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 					return ADDLI(reg_map[base], reg_map[base], argw);
base             1456 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 				FAIL_IF(ADDLI(reg_map[base], reg_map[base], argw));
base             1466 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 				FAIL_IF(ADD(reg_map[base], reg_map[base], TMP_REG3_mapped));
base             1471 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 				FAIL_IF(ADD(reg_map[base], reg_map[base], TMP_REG3_mapped));
base             1476 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 			return PB2(data_transfer_insts[flags & MEM_MASK], reg_ar, reg_map[base]);
base             1478 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 			return PB2(data_transfer_insts[flags & MEM_MASK], reg_map[base], reg_ar);
base             1507 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 	if (!base) {
base             1518 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 		FAIL_IF(ADD(TMP_REG3_mapped, TMP_REG3_mapped, reg_map[base]));
base             1525 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 	FAIL_IF(ADD(tmp_ar, TMP_REG3_mapped, reg_map[base]));
base              209 ext/pcre/pcrelib/sljit/sljitUtils.c 	} base;
base              241 ext/pcre/pcrelib/sljit/sljitUtils.c 	base.ptr = VirtualAlloc(NULL, max_limit, MEM_RESERVE, PAGE_READWRITE);
base              242 ext/pcre/pcrelib/sljit/sljitUtils.c 	if (!base.ptr) {
base              246 ext/pcre/pcrelib/sljit/sljitUtils.c 	stack->base = base.uw;
base              247 ext/pcre/pcrelib/sljit/sljitUtils.c 	stack->limit = stack->base;
base              248 ext/pcre/pcrelib/sljit/sljitUtils.c 	stack->max_limit = stack->base + max_limit;
base              249 ext/pcre/pcrelib/sljit/sljitUtils.c 	if (sljit_stack_resize(stack, stack->base + limit)) {
base              255 ext/pcre/pcrelib/sljit/sljitUtils.c 	base.ptr = mmap(NULL, max_limit, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0);
base              263 ext/pcre/pcrelib/sljit/sljitUtils.c 	base.ptr = mmap(NULL, max_limit, PROT_READ | PROT_WRITE, MAP_PRIVATE, dev_zero, 0);
base              265 ext/pcre/pcrelib/sljit/sljitUtils.c 	if (base.ptr == MAP_FAILED) {
base              269 ext/pcre/pcrelib/sljit/sljitUtils.c 	stack->base = base.uw;
base              270 ext/pcre/pcrelib/sljit/sljitUtils.c 	stack->limit = stack->base + limit;
base              271 ext/pcre/pcrelib/sljit/sljitUtils.c 	stack->max_limit = stack->base + max_limit;
base              273 ext/pcre/pcrelib/sljit/sljitUtils.c 	stack->top = stack->base;
base              283 ext/pcre/pcrelib/sljit/sljitUtils.c 	VirtualFree((void*)stack->base, 0, MEM_RELEASE);
base              285 ext/pcre/pcrelib/sljit/sljitUtils.c 	munmap((void*)stack->base, stack->max_limit - stack->base);
base              295 ext/pcre/pcrelib/sljit/sljitUtils.c 	if ((new_limit > stack->max_limit) || (new_limit < stack->base))
base             1427 ext/phar/phar_object.c 	char *fname, *error = NULL, *base = p_obj->b, *opened, *save = NULL, *temp = NULL;
base             1543 ext/phar/phar_object.c 		temp = expand_filepath(base, NULL TSRMLS_CC);
base             1552 ext/phar/phar_object.c 		base = temp;
base             1553 ext/phar/phar_object.c 		base_len = strlen(base);
base             1555 ext/phar/phar_object.c 		if (strstr(fname, base)) {
base             1574 ext/phar/phar_object.c 			zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0 TSRMLS_CC, "Iterator %v returned a path \"%s\" that is not in the base directory \"%s\"", ce->name, fname, base);
base             1886 ext/phar/phar_object.c 	char *base = NULL;
base             1897 ext/phar/phar_object.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|s", &obj, zend_ce_traversable, &base, &base_len) == FAILURE) {
base             1910 ext/phar/phar_object.c 	pass.b = base;
base              770 ext/session/session.c 	char *base = (char *) mh_arg2;
base              772 ext/session/session.c 	char *base;
base              774 ext/session/session.c 	base = (char *) ts_resource(*((int *) mh_arg2));
base              777 ext/session/session.c 	p = (smart_str *) (base+(size_t) mh_arg1);
base             1512 ext/soap/php_encoding.c 				zval *base;
base             1520 ext/soap/php_encoding.c 				base = master_to_zval_int(enc, data TSRMLS_CC);
base             1521 ext/soap/php_encoding.c 				set_zval_property(ret, "_", base TSRMLS_CC);
base             1565 ext/soap/php_encoding.c 				zval *base;
base             1573 ext/soap/php_encoding.c 				base = master_to_zval_int(sdlType->encode, data TSRMLS_CC);
base             1574 ext/soap/php_encoding.c 				set_zval_property(ret, "_", base TSRMLS_CC);
base              197 ext/soap/php_schema.c 				xmlChar *base = xmlNodeGetBase(trav->doc, trav);
base              199 ext/soap/php_schema.c 				if (base == NULL) {
base              202 ext/soap/php_schema.c 	    		uri = xmlBuildURI(location->children->content, base);
base              203 ext/soap/php_schema.c 			    xmlFree(base);
base              217 ext/soap/php_schema.c 				xmlChar *base = xmlNodeGetBase(trav->doc, trav);
base              219 ext/soap/php_schema.c 				if (base == NULL) {
base              222 ext/soap/php_schema.c 	    		uri = xmlBuildURI(location->children->content, base);
base              223 ext/soap/php_schema.c 			    xmlFree(base);
base              245 ext/soap/php_schema.c 				xmlChar *base = xmlNodeGetBase(trav->doc, trav);
base              247 ext/soap/php_schema.c 				if (base == NULL) {
base              250 ext/soap/php_schema.c 	    		uri = xmlBuildURI(location->children->content, base);
base              251 ext/soap/php_schema.c 			    xmlFree(base);
base              639 ext/soap/php_schema.c 	xmlAttrPtr base;
base              641 ext/soap/php_schema.c 	base = get_attribute(restType->properties, "base");
base              642 ext/soap/php_schema.c 	if (base != NULL) {
base              646 ext/soap/php_schema.c 		parse_namespace(base->children->content, &type, &ns);
base              743 ext/soap/php_schema.c 	xmlAttrPtr base;
base              746 ext/soap/php_schema.c 	base = get_attribute(restType->properties, "base");
base              747 ext/soap/php_schema.c 	if (base != NULL) {
base              751 ext/soap/php_schema.c 		parse_namespace(base->children->content, &type, &ns);
base              869 ext/soap/php_schema.c 	xmlAttrPtr base;
base              871 ext/soap/php_schema.c 	base = get_attribute(extType->properties, "base");
base              872 ext/soap/php_schema.c 	if (base != NULL) {
base              876 ext/soap/php_schema.c 		parse_namespace(base->children->content, &type, &ns);
base              924 ext/soap/php_schema.c 	xmlAttrPtr base;
base              926 ext/soap/php_schema.c 	base = get_attribute(extType->properties, "base");
base              927 ext/soap/php_schema.c 	if (base != NULL) {
base              931 ext/soap/php_schema.c 		parse_namespace(base->children->content, &type, &ns);
base              391 ext/soap/php_sdl.c 				xmlChar *base = xmlNodeGetBase(trav->doc, trav);
base              393 ext/soap/php_sdl.c 				if (base == NULL) {
base              396 ext/soap/php_sdl.c 					uri = xmlBuildURI(tmp->children->content, base);
base              397 ext/soap/php_sdl.c 					xmlFree(base);
base              477 ext/soap/soap.c 	char *base = (char *) mh_arg2;
base              479 ext/soap/soap.c 	char *base = (char *) ts_resource(*((int *) mh_arg2));
base              482 ext/soap/soap.c 	p = (char*) (base+(size_t) mh_arg1);
base              815 ext/spl/spl_array.c 	zend_class_entry *base;
base              838 ext/spl/spl_array.c 			base = (Z_OBJ_HT_P(obj) == &spl_handler_ArrayIterator) ? spl_ce_ArrayIterator : spl_ce_ArrayObject;
base              839 ext/spl/spl_array.c 			zname = spl_gen_private_prop_name(base, "storage", sizeof("storage")-1, &name_len TSRMLS_CC);
base             21396 ext/sqlite3/libsqlite/sqlite3.c   etByte base;             /* The base for radix conversion */
base             21763 ext/sqlite3/libsqlite/sqlite3.c           u8 base = infop->base;
base             21765 ext/sqlite3/libsqlite/sqlite3.c             *(--bufpt) = cset[longvalue%base];
base             21766 ext/sqlite3/libsqlite/sqlite3.c             longvalue = longvalue/base;
base             112839 ext/sqlite3/libsqlite/sqlite3.c     int base;
base             112855 ext/sqlite3/libsqlite/sqlite3.c     base = sqlite3VdbeAddOpList(v,  ArraySize(dropTrigger), dropTrigger, iLn);
base             112856 ext/sqlite3/libsqlite/sqlite3.c     sqlite3VdbeChangeP4(v, base+1, pTrigger->zName, P4_TRANSIENT);
base             112857 ext/sqlite3/libsqlite/sqlite3.c     sqlite3VdbeChangeP4(v, base+4, "trigger", P4_STATIC);
base             118916 ext/sqlite3/libsqlite/sqlite3.c static void codeApplyAffinity(Parse *pParse, int base, int n, char *zAff){
base             118929 ext/sqlite3/libsqlite/sqlite3.c     base++;
base             118938 ext/sqlite3/libsqlite/sqlite3.c     sqlite3VdbeAddOp2(v, OP_Affinity, base, n);
base             118940 ext/sqlite3/libsqlite/sqlite3.c     sqlite3ExprCacheAffinityChange(pParse, base, n);
base             132885 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_vtab base;              /* Base class used by SQLite core */
base             132966 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_vtab_cursor base;       /* Base class used by SQLite core */
base             134470 ext/sqlite3/libsqlite/sqlite3.c     *ppVTab = &p->base;
base             134666 ext/sqlite3/libsqlite/sqlite3.c   assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 );
base             134672 ext/sqlite3/libsqlite/sqlite3.c   assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 );
base             134691 ext/sqlite3/libsqlite/sqlite3.c     Fts3Table *p = (Fts3Table *)pCsr->base.pVtab;
base             134720 ext/sqlite3/libsqlite/sqlite3.c         if( rc==SQLITE_OK && ((Fts3Table *)pCsr->base.pVtab)->zContentTbl==0 ){
base             135939 ext/sqlite3/libsqlite/sqlite3.c     Fts3Table *p = (Fts3Table *)pCsr->base.pVtab;
base             136088 ext/sqlite3/libsqlite/sqlite3.c   assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 );
base             136198 ext/sqlite3/libsqlite/sqlite3.c     assert( p->base.zErrMsg==0 );
base             136201 ext/sqlite3/libsqlite/sqlite3.c         &p->base.zErrMsg
base             136320 ext/sqlite3/libsqlite/sqlite3.c   assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 );
base             136610 ext/sqlite3/libsqlite/sqlite3.c   p = (Fts3Table *)pCursor->base.pVtab;
base             137069 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             137214 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             137485 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             137585 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             137738 ext/sqlite3/libsqlite/sqlite3.c     Fts3Table *p = (Fts3Table*)pCsr->base.pVtab;
base             137791 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             137919 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             138576 ext/sqlite3/libsqlite/sqlite3.c     Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             138685 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             138735 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             138912 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_vtab base;              /* Base class used by SQLite core */
base             138917 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_vtab_cursor base;       /* Base class used by SQLite core */
base             141147 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_tokenizer base;      /* Base class */
base             141154 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_tokenizer_cursor base;
base             141179 ext/sqlite3/libsqlite/sqlite3.c   *ppTokenizer = &t->base;
base             141222 ext/sqlite3/libsqlite/sqlite3.c   *ppCursor = &c->base;
base             142303 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_tokenizer base;
base             142308 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_tokenizer_cursor base;
base             142362 ext/sqlite3/libsqlite/sqlite3.c   *ppTokenizer = &t->base;
base             142405 ext/sqlite3/libsqlite/sqlite3.c   *ppCursor = &c->base;
base             142557 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_vtab base;              /* Base class used by SQLite core */
base             142566 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_vtab_cursor base;       /* Base class used by SQLite core */
base             142709 ext/sqlite3/libsqlite/sqlite3.c     *ppVtab = &pTab->base;
base             142785 ext/sqlite3/libsqlite/sqlite3.c     Fts3tokTable *pTab = (Fts3tokTable *)(pCsr->base.pVtab);
base             144492 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *p = (Fts3Table*)pCsr->base.pVtab;
base             148307 ext/sqlite3/libsqlite/sqlite3.c     Fts3Table *p = (Fts3Table *)pCsr->base.pVtab;
base             149240 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             149448 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)p->pCursor->base.pVtab;
base             149713 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             149817 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             149889 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             150032 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             150171 ext/sqlite3/libsqlite/sqlite3.c   Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
base             150292 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_tokenizer base;
base             150299 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_tokenizer_cursor base;
base             150499 ext/sqlite3/libsqlite/sqlite3.c   *pp = &pCsr->base;
base             150528 ext/sqlite3/libsqlite/sqlite3.c   unicode_tokenizer *p = ((unicode_tokenizer *)pCsr->base.pTokenizer);
base             151085 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_vtab base;          /* Base class.  Must be first */
base             151193 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_vtab_cursor base;         /* Base class.  Must be first */
base             151209 ext/sqlite3/libsqlite/sqlite3.c #define RTREE_OF_CURSOR(X)   ((Rtree*)((X)->base.pVtab))
base             151823 ext/sqlite3/libsqlite/sqlite3.c     pCsr->base.pVtab = pVTab;
base             152508 ext/sqlite3/libsqlite/sqlite3.c   pCsr->base.pVtab = (sqlite3_vtab*)pRtree;
base             154168 ext/sqlite3/libsqlite/sqlite3.c   pRtree->base.pModule = &rtreeModule;
base             154983 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_tokenizer base;
base             154988 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_tokenizer_cursor base;
base             155317 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_vtab_cursor base;
base             155338 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_vtab base;
base             155437 ext/sqlite3/libsqlite/sqlite3.c     pCsr->base.pVtab = pVTab;
base             1692 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, base)
base             1710 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, base)
base             2501 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, base)
base              677 ext/standard/math.c 	double num, base = 0;
base              679 ext/standard/math.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d|d", &num, &base) == FAILURE) {
base              685 ext/standard/math.c 	if (base <= 0.0) {
base              689 ext/standard/math.c 	if (base == 1) {
base              692 ext/standard/math.c 		RETURN_DOUBLE(log(num) / log(base));
base              772 ext/standard/math.c PHPAPI long _php_math_basetolong(zval *arg, int base)
base              778 ext/standard/math.c 	if (Z_TYPE_P(arg) != IS_STRING || base < 2 || base > 36) {
base              790 ext/standard/math.c 			: base;
base              792 ext/standard/math.c 		if (digit >= base) {
base              797 ext/standard/math.c 		num = num * base + digit;
base              817 ext/standard/math.c PHPAPI int _php_math_basetozval(zval *arg, int base, zval *ret)
base              827 ext/standard/math.c 	if (Z_TYPE_P(arg) != IS_STRING || base < 2 || base > 36) {
base              833 ext/standard/math.c 	cutoff = LONG_MAX / base;
base              834 ext/standard/math.c 	cutlim = LONG_MAX % base;
base              849 ext/standard/math.c 		if (c >= base)
base              855 ext/standard/math.c 				num = num * base + c;
base              863 ext/standard/math.c 			fnum = fnum * base + c;
base              881 ext/standard/math.c PHPAPI char * _php_math_longtobase(zval *arg, int base)
base              888 ext/standard/math.c 	if (Z_TYPE_P(arg) != IS_LONG || base < 2 || base > 36) {
base              898 ext/standard/math.c 		*--ptr = digits[value % base];
base              899 ext/standard/math.c 		value /= base;
base              911 ext/standard/math.c PHPAPI char * _php_math_zvaltobase(zval *arg, int base TSRMLS_DC)
base              915 ext/standard/math.c 	if ((Z_TYPE_P(arg) != IS_LONG && Z_TYPE_P(arg) != IS_DOUBLE) || base < 2 || base > 36) {
base              934 ext/standard/math.c 			*--ptr = digits[(int) fmod(fvalue, base)];
base              935 ext/standard/math.c 			fvalue /= base;
base              941 ext/standard/math.c 	return _php_math_longtobase(arg, base);
base               27 ext/standard/php_math.h PHPAPI char * _php_math_longtobase(zval *arg, int base);
base               28 ext/standard/php_math.h PHPAPI long _php_math_basetolong(zval *arg, int base);
base               29 ext/standard/php_math.h PHPAPI int _php_math_basetozval(zval *arg, int base, zval *ret);
base               30 ext/standard/php_math.h PHPAPI char * _php_math_zvaltobase(zval *arg, int base TSRMLS_DC);
base              590 ext/standard/scanf.c 	int  base = 0;
base              764 ext/standard/scanf.c 				base = 10;
base              769 ext/standard/scanf.c 				base = 0;
base              774 ext/standard/scanf.c 				base = 8;
base              780 ext/standard/scanf.c 				base = 16;
base              785 ext/standard/scanf.c 				base = 10;
base              968 ext/standard/scanf.c 							if (base == 16) {
base              972 ext/standard/scanf.c 							if (base == 0) {
base              973 ext/standard/scanf.c 								base = 8;
base              985 ext/standard/scanf.c 							if (base == 0) {
base              986 ext/standard/scanf.c 								base = 10;
base              992 ext/standard/scanf.c 							if (base == 0) {
base              993 ext/standard/scanf.c 								base = 10;
base              995 ext/standard/scanf.c 							if (base <= 8) {
base             1005 ext/standard/scanf.c 							if (base <= 10) {
base             1020 ext/standard/scanf.c 								base = 16;
base             1063 ext/standard/scanf.c 					value = (long) (*fn)(buf, NULL, base);
base              138 ext/standard/type.c 	int base;
base              145 ext/standard/type.c 			base = 10;
base              152 ext/standard/type.c 			base = arg_base;
base              160 ext/standard/type.c 	convert_to_long_base(return_value, base);
base              752 ext/xml/compat.c 			(parser->parser->input->cur - parser->parser->input->base);
base              761 ext/xml/compat.c 			(parser->parser->input->cur - parser->parser->input->base);
base             1051 ext/xml/xml.c  										 const XML_Char *base,
base             1063 ext/xml/xml.c  		args[2] = _xml_xmlchar_zval(base, 0, parser->target_encoding);
base             1077 ext/xml/xml.c  							  const XML_Char *base,
base             1088 ext/xml/xml.c  		args[2] = _xml_xmlchar_zval(base, 0, parser->target_encoding);
base             1101 ext/xml/xml.c  								   const XML_Char *base,
base             1113 ext/xml/xml.c  		args[2] = _xml_xmlchar_zval(base, 0, parser->target_encoding);
base               88 main/fopen_wrappers.c 	char *base = (char *) mh_arg2;
base               90 main/fopen_wrappers.c 	char *base = (char *) ts_resource(*((int *) mh_arg2));
base               93 main/fopen_wrappers.c 	p = (char **) (base + (size_t) mh_arg1);
base              502 main/main.c    	char *base = (char *) mh_arg2;
base              504 main/main.c    	char *base;
base              506 main/main.c    	base = (char *) ts_resource(*((int *) mh_arg2));
base              509 main/main.c    	p = (signed char *) (base+(size_t) mh_arg1);
base              105 main/mergesort.c PHPAPI int php_mergesort(void *base, size_t nmemb, size_t size, int (*cmp)(const void *, const void * TSRMLS_DC) TSRMLS_DC)
base              126 main/mergesort.c 	if (!(size % ISIZE) && !(((char *)base - (char *)0) % ISIZE))
base              132 main/mergesort.c 	list1 = base;
base              231 main/mergesort.c 	if (base == list2) {
base              337 main/php.h     PHPAPI int php_mergesort(void *base, size_t nmemb, register size_t size, int (*cmp)(const void *, const void * TSRMLS_DC) TSRMLS_DC);
base               86 sapi/fpm/fpm/fpm_trace_mach.c 	vm_offset_t base = (uintptr_t) (addr) - offset;
base               88 sapi/fpm/fpm/fpm_trace_mach.c 	if (base != target_page_base) {
base               90 sapi/fpm/fpm/fpm_trace_mach.c 		if (0 > fpm_mach_vm_read_page(base)) {
base              348 sapi/phpdbg/phpdbg_bp.c 		new_break.base = NULL;
base              381 sapi/phpdbg/phpdbg_bp.c 	opline_break.base = brake;
base              690 sapi/phpdbg/phpdbg_bp.c 		new_break.base = NULL;
base              870 sapi/phpdbg/phpdbg_bp.c 		return (brake->base?(phpdbg_breakbase_t *)brake->base:(phpdbg_breakbase_t *)brake);
base             1039 sapi/phpdbg/phpdbg_bp.c 	phpdbg_breakbase_t *base = NULL;
base             1048 sapi/phpdbg/phpdbg_bp.c 		(base = phpdbg_find_conditional_breakpoint(execute_data TSRMLS_CC))) {
base             1053 sapi/phpdbg/phpdbg_bp.c 		(base = phpdbg_find_breakpoint_file(execute_data->op_array TSRMLS_CC))) {
base             1060 sapi/phpdbg/phpdbg_bp.c 			if ((base = phpdbg_find_breakpoint_symbol(
base             1068 sapi/phpdbg/phpdbg_bp.c 		(base = phpdbg_find_breakpoint_opline(execute_data->opline TSRMLS_CC))) {
base             1073 sapi/phpdbg/phpdbg_bp.c 		(base = phpdbg_find_breakpoint_opcode(execute_data->opline->opcode TSRMLS_CC))) {
base             1081 sapi/phpdbg/phpdbg_bp.c 	if (base->disabled) {
base             1085 sapi/phpdbg/phpdbg_bp.c 	return base;
base               83 sapi/phpdbg/phpdbg_bp.h 	phpdbg_breakopline_t *base;
base                5 win32/php_strtoi64.h PHPAPI int64_t _strtoi64(const char *nptr, char **endptr, int base);
base                8 win32/strtoi64.c PHPAPI int64_t _strtoi64(const char *nptr, char **endptr, int base)
base               35 win32/strtoi64.c 	if ((base == 0 || base == 16) && c == '0' && (*s == 'x' || *s == 'X')) {
base               38 win32/strtoi64.c 		base = 16;
base               40 win32/strtoi64.c 	if (base == 0) {
base               41 win32/strtoi64.c 		base = c == '0' ? 8 : 10;
base               44 win32/strtoi64.c 	if (base < 2 || base > 36) {
base               92 win32/strtoi64.c 		if (c >= base) {
base               96 win32/strtoi64.c 		val *= base;