Home
last modified time | relevance | path

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

12345678910>>...12

/PHP-5.3/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.phpt27 function dump($phar, $base)
29 var_dump($phar . $base);
30 $dir = opendir($phar . $base);
31 if ($base == '/')
33 $base = '';
36 $entry = $base . '/' . $entry;
H A D019c.phpt27 function dump($phar, $base)
29 var_dump($phar . $base);
30 $dir = opendir($phar . $base);
31 if ($base == '/')
33 $base = '';
36 $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.3/Zend/
H A Dzend_ini.c551 char *base = (char *) mh_arg2; in ZEND_INI_MH() local
553 char *base; in ZEND_INI_MH() local
580 char *base = (char *) mh_arg2; in ZEND_INI_MH() local
582 char *base; in ZEND_INI_MH() local
598 char *base = (char *) mh_arg2; in ZEND_INI_MH() local
600 char *base; in ZEND_INI_MH() local
621 char *base = (char *) mh_arg2; in ZEND_INI_MH() local
623 char *base; in ZEND_INI_MH() local
639 char *base = (char *) mh_arg2; in ZEND_INI_MH() local
641 char *base; in ZEND_INI_MH() local
[all …]
/PHP-5.3/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.3/tests/lang/
H A Dbug29893.phpt5 $base = 50;
6 $base[$base] -= 0;
/PHP-5.3/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.3/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.h26 PHPAPI char * _php_math_longtobase(zval *arg, int base);
27 PHPAPI long _php_math_basetolong(zval *arg, int base);
28 PHPAPI int _php_math_basetozval(zval *arg, int base, zval *ret);
29 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.3/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.3/ext/sqlite/libsqlite/src/
H A Dinsert.c332 base = pParse->nTab; in sqliteInsert()
410 base = pParse->nTab; in sqliteInsert()
434 sqliteVdbeAddOp(v, OP_NewRecno, base, 0); in sqliteInsert()
437 sqliteVdbeAddOp(v, OP_NewRecno, base, 0); in sqliteInsert()
488 sqliteVdbeAddOp(v, OP_Close, base, 0); in sqliteInsert()
516 sqliteVdbeAddOp(v, OP_Close, base, 0); in sqliteInsert()
518 sqliteVdbeAddOp(v, OP_Close, idx+base, 0); in sqliteInsert()
735 sqliteVdbeAddOp(v, OP_MoveTo, base, 0); in sqliteGenerateConstraintChecks()
752 sqliteVdbeAddOp(v, OP_MoveTo, base, 0); in sqliteGenerateConstraintChecks()
883 sqliteVdbeAddOp(v, OP_IdxPut, base+i+1, 0); in sqliteCompleteInsertion()
[all …]
/PHP-5.3/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.3/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.3/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.3/ext/soap/tests/schema/
H A Dschema016.phpt14 <restriction base="string"/>
17 <restriction base="int"/>
20 <restriction base="float"/>
/PHP-5.3/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 --
/PHP-5.3/Zend/tests/
H A Dbug40757.phpt15 $base=new Base();
16 print_r($base->getFields(new Base()));
H A Dexception_004.phpt2 Throwing exception using a class that isn't derived from the Exception base class
18 Fatal error: Exceptions must be valid objects derived from the Exception base class in %s on line %d
/PHP-5.3/ext/libxml/tests/
H A Dbug61367-write.phpt23 var_dump(mkdir('test_bug_61367/base'));
25 var_dump(chdir('test_bug_61367/base'));
34 rmdir('test_bug_61367/base');

Completed in 55 milliseconds

12345678910>>...12