Home
last modified time | relevance | path

Searched refs:val (Results 201 – 225 of 485) sorted by relevance

12345678910>>...20

/PHP-8.1/ext/standard/tests/array/
H A Darray_udiff_assoc_basic.phpt10 function __construct($val) {
11 $this->priv_member = $val;
H A Darray_uintersect_basic.phpt10 function __construct($val) {
11 $this->priv_member = $val;
H A Darray_uintersect_uassoc_basic.phpt10 function __construct($val) {
11 $this->priv_member = $val;
H A Darray_udiff_uassoc_basic.phpt10 function __construct($val) {
11 $this->priv_member = $val;
/PHP-8.1/ext/standard/tests/network/
H A Dinet.phpt31 foreach ($array as $val) {
32 var_dump(bin2hex($packed = inet_pton($val)));
/PHP-8.1/ext/standard/tests/serialize/
H A Dsleep_uninitialized_typed_prop.phpt15 public function __set($name, $val) {
16 $this->$name = $val;
/PHP-8.1/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c213 p = string->val; in mbfl_buffer_converter_feed()
477 p = string->val; in mbfl_convert_encoding()
539 p = string->val; in mbfl_strlen()
561 p = string->val; in mbfl_strlen()
716 haystack_u8->val, haystack_u8->val + haystack_u8->len, offset); in mbfl_strpos()
991 p = string->val; in mbfl_substr()
1104 result->val = w; in mbfl_strcut()
1469 p = string->val; in mbfl_strimwidth()
1572 p = string->val; in mbfl_ja_jp_hantozen()
1898 p = string->val; in mbfl_mime_header_encode()
[all …]
/PHP-8.1/ext/pdo/tests/
H A Dpdo_015.phpt18 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(20))');
22 $select1 = $db->prepare('SELECT id, val, val2 FROM test');
23 $select2 = $db->prepare('SELECT val, val2 FROM test');
H A Dpdo_008.phpt18 $db->exec('CREATE TABLE test(id CHAR(1) NOT NULL PRIMARY KEY, val VARCHAR(10))');
23 $stmt = $db->prepare('SELECT val, id from test');
H A Dpdo_023.phpt64 $db->query('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, val VARCHAR(10))');
69 $stmt = $db->query('SELECT val, id FROM test');
100 string(24) "SELECT val, id FROM test"
/PHP-8.1/ext/reflection/tests/
H A DReflectionParameter_003.phpt41 $val = 0;
43 $val = $parameter->getDefaultValue();
44 var_dump($val);
/PHP-8.1/ext/spl/tests/
H A Darray_003.phpt31 foreach($test as $key => $val)
33 echo "$key => $val\n";
H A Darray_007.phpt35 foreach($test as $key => $val)
37 echo "$key => $val\n";
/PHP-8.1/ext/opcache/
H A Dzend_accelerator_module.c181 zend_long val = zend_atol(ZSTR_VAL(new_value), ZSTR_LEN(new_value)); local
183 if (zend_jit_debug_config(*p, val, stage) == SUCCESS) {
184 *p = val;
193 if (val >= 0 && val < 256) {
195 *p = val;
205 if (val > 0 && val < ZEND_JIT_TRACE_MAX_CALL_DEPTH) {
207 *p = val;
218 if (val >= 0 && val < ZEND_JIT_TRACE_MAX_RET_DEPTH) {
220 *p = val;
231 if (val > 0 && val < ZEND_JIT_TRACE_MAX_LOOPS_UNROLL) {
[all …]
/PHP-8.1/Zend/
H A Dzend_gc.c772 zv = &end->val; in gc_scan_black()
782 zv = &p->val; in gc_scan_black()
796 zv = &p->val; in gc_scan_black()
906 zv = &p->val; in gc_mark_grey()
920 zv = &p->val; in gc_mark_grey()
1069 zv = &p->val; in gc_scan()
1082 zv = &p->val; in gc_scan()
1257 zv = &p->val; in gc_collect_white()
1271 zv = &p->val; in gc_collect_white()
1414 zv = &p->val; in gc_remove_nested_data_from_buffer()
[all …]
H A Dzend_smart_str.h40 #define smart_str_append_long(dest, val) \ argument
41 smart_str_append_long_ex((dest), (val), 0)
42 #define smart_str_append_unsigned(dest, val) \ argument
43 smart_str_append_unsigned_ex((dest), (val), 0)
/PHP-8.1/tests/lang/
H A DpassByReference_003.phpt5 function passbyVal($val) {
7 var_dump($val);
/PHP-8.1/ext/xmlwriter/tests/
H A D008.phpt12 xmlwriter_text($xw, "val");
31 <!ENTITY ent "val">
/PHP-8.1/build/
H A Dorder_by_dep.awk37 function do_deps(mod_idx, module_name, mod_name_len, dep, ext, val, depidx)
46 val = mod_deps[ext];
/PHP-8.1/ext/hash/
H A Dhash_sha3.c51 static inline void store64(unsigned char* x, uint64_t val) { in store64() argument
54 x[i] = val & 0xFF; in store64()
55 val >>= 8; in store64()
58 static inline void xor64(unsigned char* x, uint64_t val) { in xor64() argument
61 x[i] ^= val & 0xFF; in xor64()
62 val >>= 8; in xor64()
/PHP-8.1/ext/pdo_odbc/
H A Dodbc_driver.c333 static bool odbc_handle_set_attr(pdo_dbh_t *dbh, zend_long attr, zval *val) in odbc_handle_set_attr() argument
340 if (!pdo_get_bool_param(&bval, val)) { in odbc_handle_set_attr()
353 static int pdo_odbc_get_info_string(pdo_dbh_t *dbh, SQLUSMALLINT type, zval *val) in pdo_odbc_get_info_string() argument
364 ZVAL_STRINGL(val, buf, out_len); in pdo_odbc_get_info_string()
368 static int odbc_handle_get_attr(pdo_dbh_t *dbh, zend_long attr, zval *val) in odbc_handle_get_attr() argument
373 ZVAL_STRING(val, "ODBC-" PDO_ODBC_TYPE); in odbc_handle_get_attr()
377 return pdo_odbc_get_info_string(dbh, SQL_DBMS_VER, val); in odbc_handle_get_attr()
379 return pdo_odbc_get_info_string(dbh, SQL_DBMS_NAME, val); in odbc_handle_get_attr()
385 ZVAL_BOOL(val, H->assume_utf8 ? 1 : 0); in odbc_handle_get_attr()
/PHP-8.1/ext/bcmath/libbcmath/src/
H A Drecmul.c104 _bc_shift_addsub (bc_num accum, bc_num val, int shift, int sub) in _bc_shift_addsub() argument
109 count = val->n_len; in _bc_shift_addsub()
110 if (val->n_value[0] == 0) in _bc_shift_addsub()
117 valp = (signed char *)(val->n_value + val->n_len - 1); in _bc_shift_addsub()
/PHP-8.1/ext/pdo_firebird/
H A Dfirebird_driver.c839 if (!pdo_get_bool_param(&bval, val)) { in firebird_handle_set_attribute()
865 if (!pdo_get_bool_param(&bval, val)) { in firebird_handle_set_attribute()
873 zend_string *str = zval_try_get_string(val); in firebird_handle_set_attribute()
887 zend_string *str = zval_try_get_string(val); in firebird_handle_set_attribute()
901 zend_string *str = zval_try_get_string(val); in firebird_handle_set_attribute()
940 ZVAL_LONG(val,dbh->auto_commit); in firebird_handle_get_attribute()
944 ZVAL_BOOL(val, !isc_version(&H->db, firebird_info_cb, NULL)); in firebird_handle_get_attribute()
962 ZVAL_STRING(val, tmp); in firebird_handle_get_attribute()
965 ZVAL_NULL(val); in firebird_handle_get_attribute()
975 ZVAL_STRING(val, tmp); in firebird_handle_get_attribute()
[all …]
/PHP-8.1/ext/posix/
H A Dposix.c185 zend_long val; \
187 Z_PARAM_LONG(val) \
189 if (func_name(val) < 0) { \
380 zend_long val; in PHP_FUNCTION() local
383 Z_PARAM_LONG(val) in PHP_FUNCTION()
386 if ((val = getpgid(val)) < 0) { in PHP_FUNCTION()
390 RETURN_LONG(val); in PHP_FUNCTION()
399 zend_long val; in PHP_FUNCTION() local
402 Z_PARAM_LONG(val) in PHP_FUNCTION()
405 if ((val = getsid(val)) < 0) { in PHP_FUNCTION()
[all …]
/PHP-8.1/ext/json/
H A Dphp_json.h102 PHP_JSON_API int php_json_encode_ex(smart_str *buf, zval *val, int options, zend_long depth);
103 PHP_JSON_API int php_json_encode(smart_str *buf, zval *val, int options);

Completed in 46 milliseconds

12345678910>>...20