Home
last modified time | relevance | path

Searched refs:base (Results 26 – 50 of 303) sorted by relevance

12345678910>>...13

/PHP-5.5/ext/phar/tests/
H A D019bU.phpt28 function dump($phar, $base)
30 var_dump($phar . $base);
31 $dir = opendir($phar . $base);
32 if ($base == '/')
34 $base = '';
37 $entry = $base . '/' . $entry;
H A D019b.phpt26 function dump($phar, $base)
28 var_dump($phar . $base);
29 $dir = opendir($phar . $base);
30 if ($base == '/')
32 $base = '';
35 $entry = $base . '/' . $entry;
H A D019c.phpt26 function dump($phar, $base)
28 var_dump($phar . $base);
29 $dir = opendir($phar . $base);
30 if ($base == '/')
32 $base = '';
35 $entry = $base . '/' . $entry;
H A D019cU.phpt26 function dump($phar, $base)
28 var_dump($phar . $base);
29 $dir = opendir($phar . $base);
30 if ($base == '/')
32 $base = '';
35 $entry = $base . '/' . $entry;
/PHP-5.5/Zend/
H A Dzend_ini.c553 char *base = (char *) mh_arg2; in ZEND_INI_MH() local
555 char *base; in ZEND_INI_MH() local
582 char *base = (char *) mh_arg2; in ZEND_INI_MH() local
584 char *base; in ZEND_INI_MH() local
600 char *base = (char *) mh_arg2; in ZEND_INI_MH() local
602 char *base; in ZEND_INI_MH() local
623 char *base = (char *) mh_arg2; in ZEND_INI_MH() local
625 char *base; in ZEND_INI_MH() local
641 char *base = (char *) mh_arg2; in ZEND_INI_MH() local
643 char *base; in ZEND_INI_MH() local
[all …]
H A Dzend_qsort.c57 ZEND_API void zend_qsort_r(void *base, size_t nmemb, size_t siz, compare_r_func_t compare, void *ar… in zend_qsort_r() argument
69 begin_stack[0] = (char *) base; in zend_qsort_r()
70 end_stack[0] = (char *) base + ((nmemb - 1) * siz); in zend_qsort_r()
121 ZEND_API void zend_qsort(void *base, size_t nmemb, size_t siz, compare_func_t compare TSRMLS_DC) in zend_qsort() argument
123 zend_qsort_r(base, nmemb, siz, (compare_r_func_t)compare, NULL TSRMLS_CC); in zend_qsort()
H A Dzend_qsort.h26 ZEND_API void zend_qsort(void *base, size_t nmemb, size_t siz, compare_func_t compare TSRMLS_DC);
27 ZEND_API void zend_qsort_r(void *base, size_t nmemb, size_t siz, compare_r_func_t compare, void *ar…
/PHP-5.5/ext/bcmath/libbcmath/src/
H A Doutput.c98 bc_num int_part, frac_part, base, cur_dig, t_num, max_o_digit; in bc_out_num() local
140 bc_init_num (&base TSRMLS_CC); in bc_out_num()
145 bc_int2num (&base, o_base); in bc_out_num()
153 bc_modulo (int_part, base, &cur_dig, 0 TSRMLS_CC); in bc_out_num()
160 bc_divide (int_part, base, &int_part, 0 TSRMLS_CC); in bc_out_num()
186 bc_multiply (frac_part, base, &frac_part, num->n_scale TSRMLS_CC); in bc_out_num()
196 bc_multiply (t_num, base, &t_num, 0 TSRMLS_CC); in bc_out_num()
204 bc_free_num (&base); in bc_out_num()
H A Draisemod.c46 bc_raisemod (bc_num base, bc_num expo, bc_num mod, bc_num *result, int scale TSRMLS_DC) in bc_raisemod() argument
56 power = bc_copy_num (base); in bc_raisemod()
62 if (base->n_scale != 0) in bc_raisemod()
77 rscale = MAX(scale, base->n_scale); in bc_raisemod()
/PHP-5.5/tests/lang/
H A Dbug29893.phpt5 $base = 50;
6 $base[$base] -= 0;
/PHP-5.5/ext/standard/tests/math/
H A Dlog_variation2.phpt2 Test log() function : usage variations - different data types as $base argument
5 /* Prototype : float log ( float $arg [, float $base ] )
93 Warning: log(): base must be greater than 0 in %s on line %d
104 Warning: log(): base must be greater than 0 in %s on line %d
115 Warning: log(): base must be greater than 0 in %s on line %d
129 Warning: log(): base must be greater than 0 in %s on line %d
134 Warning: log(): base must be greater than 0 in %s on line %d
142 Warning: log(): base must be greater than 0 in %s on line %d
150 Warning: log(): base must be greater than 0 in %s on line %d
190 Warning: log(): base must be greater than 0 in %s on line %d
[all …]
H A Dlog_basic.phpt20 echo "\n LOG tests...no base\n";
26 echo "\n LOG tests...base\n";
34 LOG tests...no base
48 LOG tests...base
/PHP-5.5/ext/standard/
H A Dmath.c699 double num, base = 0; in PHP_FUNCTION() local
707 if (base <= 0.0) { in PHP_FUNCTION()
711 if (base == 1) { in PHP_FUNCTION()
800 if (Z_TYPE_P(arg) != IS_STRING || base < 2 || base > 36) { in _php_math_basetolong()
812 : base; in _php_math_basetolong()
814 if (digit >= base) { in _php_math_basetolong()
849 if (Z_TYPE_P(arg) != IS_STRING || base < 2 || base > 36) { in _php_math_basetozval()
871 if (c >= base) in _php_math_basetozval()
910 if (Z_TYPE_P(arg) != IS_LONG || base < 2 || base > 36) { in _php_math_longtobase()
921 value /= base; in _php_math_longtobase()
[all …]
H A Dphp_math.h27 PHPAPI char * _php_math_longtobase(zval *arg, int base);
28 PHPAPI long _php_math_basetolong(zval *arg, int base);
29 PHPAPI int _php_math_basetozval(zval *arg, int base, zval *ret);
30 PHPAPI char * _php_math_zvaltobase(zval *arg, int base TSRMLS_DC);
H A Dscanf.c590 int base = 0; in php_sscanf_internal() local
764 base = 10; in php_sscanf_internal()
769 base = 0; in php_sscanf_internal()
774 base = 8; in php_sscanf_internal()
780 base = 16; in php_sscanf_internal()
785 base = 10; in php_sscanf_internal()
972 if (base == 0) { in php_sscanf_internal()
973 base = 8; in php_sscanf_internal()
986 base = 10; in php_sscanf_internal()
993 base = 10; in php_sscanf_internal()
[all …]
/PHP-5.5/tests/classes/
H A Dinterface_class.phpt7 class base {
10 class derived implements base {
14 Fatal error: derived cannot implement base - it is not an interface in %s on line %d
H A Dclone_004.phpt5 abstract class base {
6 public $a = 'base';
12 class test extends base {
H A Dinterface_doubled.phpt2 ZE2 An interface extends base interfaces
31 class base {
39 class class_a extends base implements if_a {
56 class class_b extends base implements if_a, if_b {
73 class class_c extends base implements if_c {
90 class class_d extends base implements if_d{
107 class class_e extends base implements if_a, if_b, if_c, if_d {
124 class class_f extends base implements if_e {
141 class class_g extends base implements if_f {
/PHP-5.5/ext/standard/tests/general_functions/
H A Dintval.phpt9 /* Prototype: int intval( mixed $var [.int $base] );
10 … Returns the integer value of var, using the specified base for the conversion(the default is base
39 echo "\n***Output with default base value ie 10 ***\n";
45 echo "\n***Output with base value of 10( explicitly passed as argument) ***\n";
51 echo "\n***Output with base value of 16 ***\n";
56 echo "\n***Output with base value of 8 ***\n";
163 ***Output with default base value ie 10 ***
183 ***Output with base value of 10( explicitly passed as argument) ***
203 ***Output with base value of 16 ***
223 ***Output with base value of 8 ***
/PHP-5.5/ext/xsl/tests/
H A Dbug53965.phpt10 $base = 'file://' . dirname(__FILE__) . DIRECTORY_SEPARATOR . '53965';
13 $xml->load($base . DIRECTORY_SEPARATOR . 'collection.xml');
16 $xsl->load($base . DIRECTORY_SEPARATOR . 'collection.xsl');
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_trace_mach.c86 vm_offset_t base = (uintptr_t) (addr) - offset; in fpm_trace_get_long() local
88 if (base != target_page_base) { in fpm_trace_get_long()
90 if (0 > fpm_mach_vm_read_page(base)) { in fpm_trace_get_long()
/PHP-5.5/ext/gmp/tests/
H A Dbug50283.phpt2 Feature Request #50283 (allow base in gmp_strval to use full range: 2 to 62, and -2 to -36)
23 Warning: gmp_strval(): Bad base for conversion: -1 (should be between 2 and %d or -2 and -%d) in %s…
26 Warning: gmp_strval(): Bad base for conversion: 1 (should be between 2 and %d or -2 and -%d) in %s …
29 Warning: gmp_strval(): Bad base for conversion: -37 (should be between 2 and %d or -2 and -%d) in %…
34 Warning: gmp_strval(): Bad base for conversion: 63 (should be between 2 and %d or -2 and -%d) in %s…
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregparse.h66 #define NTYPE(node) ((node)->u.base.type)
67 #define SET_NTYPE(node, ntype) (node)->u.base.type = (ntype)
161 NodeBase base; member
170 NodeBase base; member
186 NodeBase base; member
214 NodeBase base; member
226 NodeBase base; member
235 NodeBase base; member
242 NodeBase base; member
248 NodeBase base; member
[all …]
/PHP-5.5/ext/soap/tests/schema/
H A Dschema016.phpt14 <restriction base="string"/>
17 <restriction base="int"/>
20 <restriction base="float"/>
/PHP-5.5/ext/standard/tests/file/
H A Dis_dir_variation1.phpt10 /* Testing is_dir() with base and sub dirs */
20 echo "-- Testing is_dir() with a subdir in base dir --\n";
38 -- Testing is_dir() with a subdir in base dir --

Completed in 50 milliseconds

12345678910>>...13