Home
last modified time | relevance | path

Searched refs:val2 (Results 26 – 50 of 52) sorted by relevance

123

/php-src/ext/pdo/tests/
H A Dpdo_028.phpt18 $db->exec('CREATE TABLE test028(id int NOT NULL PRIMARY KEY, val1 VARCHAR(10), val2 VARCHAR(10), va…
47 ["val2"]=>
H A Dpdo_022.phpt29 $db->exec('CREATE TABLE test022(id INT NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(16))');
47 $select = $db->query('SELECT id, val, val2 FROM test022');
H A Dpdo_021.phpt22 $db->exec('CREATE TABLE test021(id INT NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(16))');
/php-src/ext/standard/tests/array/
H A Darray_udiff_assoc_variation5.phpt11 function incorrect_return_value ($val1, $val2) {
17 function too_many_parameters ($val1, $val2, $val3) {
H A Darray_udiff_uassoc_variation6.phpt11 function incorrect_return_value ($val1, $val2) {
17 function too_many_parameters ($val1, $val2, $val3) {
H A Darray_udiff_variation5.phpt12 function incorrect_return_value ($val1, $val2) {
18 function too_many_parameters ($val1, $val2, $val3) {
H A Darray_uintersect_assoc_variation5.phpt11 function incorrect_return_value ($val1, $val2) {
17 function too_many_parameters ($val1, $val2, $val3) {
H A Darray_uintersect_uassoc_variation6.phpt11 function incorrect_return_value ($val1, $val2) {
17 function too_many_parameters ($val1, $val2, $val3) {
H A Darray_uintersect_variation5.phpt11 function incorrect_return_value ($val1, $val2) {
17 function too_many_parameters ($val1, $val2, $val3) {
H A Darray_key_exists_variation5.phpt12 'one' => 'val2',
/php-src/ext/reflection/tests/
H A DReflectionProperty_hasDefaultValue.phpt16 public int $val2 = 1234;
37 $property = new ReflectionProperty(TestClass::class, 'val2');
H A DReflectionProperty_getDefaultValue.phpt18 public int $val2 = 1234;
42 $property = new ReflectionProperty(TestClass::class, 'val2');
/php-src/Zend/tests/
H A Dbug41372.phpt5 $Foo = array('val1', 'val2', 'val3');
/php-src/tests/lang/
H A DpassByReference_005.phpt14 function vv($val1, $val2) {
16 $val2 = "Val2 changed";
49 function vv($val1, $val2) {
51 $val2 = "Val2 changed";
77 static function static_vv($val1, $val2) {
79 $val2 = "Val2 changed";
/php-src/ext/opcache/tests/jit/
H A Dbug81512.phpt9 $pipe = [['val1'],['val2'],];
/php-src/ext/spl/tests/
H A Dbug54971.phpt11 <node>val2</node>
H A Dbug42654_2.phpt5 $data = array ('key1' => 'val1', array('key2' => 'val2'), 'key3' => 'val3');
H A Dspl_heap_iteration_error.phpt10 public function compare($val1,$val2): int {
/php-src/Zend/tests/arg_unpack/
H A Dtraversable_with_by_ref_parameters.phpt6 function test($val1, $val2, $val3, &$ref) {
H A Dby_ref.phpt24 function test2($val1, &$ref1, $val2, &$ref2) {
/php-src/Zend/Optimizer/
H A Dzend_ssa.c303 zend_long val2 = 0; in place_essa_pis() local
321 if (!zend_sub_will_overflow(val1, val2) && !zend_sub_will_overflow(val2, val1)) { in place_essa_pis()
323 val1 -= val2; in place_essa_pis()
324 val2 -= tmp; in place_essa_pis()
343 val2 += add_val2; in place_essa_pis()
369 pi_range_equals(pi, var2, val2); in place_essa_pis()
376 pi_range_equals(pi, var2, val2); in place_essa_pis()
382 if (val2 > ZEND_LONG_MIN) { in place_essa_pis()
388 pi_range_min(pi, var2, val2); in place_essa_pis()
392 pi_range_max(pi, var2, val2); in place_essa_pis()
[all …]
H A Dsccp.c1955 zval *val1, *val2; in join_hash_tables() local
1959 val2 = zend_hash_find(ht2, key); in join_hash_tables()
1961 val2 = zend_hash_index_find(ht2, index); in join_hash_tables()
1963 if (val2 && zend_is_identical(val1, val2)) { in join_hash_tables()
/php-src/ext/pcre/
H A Dphp_pcre.c939 zval val1, val2; in init_unmatched_null_pair() local
941 ZVAL_LONG(&val2, -1); in init_unmatched_null_pair()
942 ZVAL_ARR(&PCRE_G(unmatched_null_pair), zend_new_pair(&val1, &val2)); in init_unmatched_null_pair()
946 zval val1, val2; in init_unmatched_empty_pair() local
948 ZVAL_LONG(&val2, -1); in init_unmatched_empty_pair()
949 ZVAL_ARR(&PCRE_G(unmatched_empty_pair), zend_new_pair(&val1, &val2)); in init_unmatched_empty_pair()
1006 zval val1, val2; in add_offset_pair() local
1008 ZVAL_LONG(&val2, start_offset); in add_offset_pair()
1009 ZVAL_ARR(&match_pair, zend_new_pair(&val1, &val2)); in add_offset_pair()
/php-src/ext/soap/
H A Dphp_encoding.c1224 zval val2; in model_to_zval_any() local
1226 ZVAL_NULL(&val2); in model_to_zval_any()
1227 master_to_zval(&val2, get_conversion(XSD_ANYXML), node->next); in model_to_zval_any()
1228 if (Z_TYPE(val2) != IS_STRING || *Z_STRVAL(val) != '<') { in model_to_zval_any()
1229 Z_TRY_DELREF(val2); in model_to_zval_any()
1232 concat_function(&val, &val, &val2); in model_to_zval_any()
1233 zval_ptr_dtor(&val2); in model_to_zval_any()
/php-src/Zend/
H A Dzend_hash.c296 ZEND_API HashTable* ZEND_FASTCALL zend_new_pair(zval *val1, zval *val2) in zend_new_pair() argument
307 ZVAL_COPY_VALUE(zv, val2); in zend_new_pair()

Completed in 52 milliseconds

123