/PHP-8.0/ext/pcre/pcre2lib/ |
H A D | pcre2_config.c | 125 *((uint32_t *)where) = 0 in pcre2_config() 143 *((uint32_t *)where) = HEAP_LIMIT; in pcre2_config() 148 *((uint32_t *)where) = 1; in pcre2_config() 150 *((uint32_t *)where) = 0; in pcre2_config() 158 return (int)(1 + ((where == NULL)? in pcre2_config() 170 *((uint32_t *)where) = MATCH_LIMIT; in pcre2_config() 179 *((uint32_t *)where) = 1; in pcre2_config() 181 *((uint32_t *)where) = 0; in pcre2_config() 193 *((uint32_t *)where) = 0; in pcre2_config() 214 *((uint32_t *)where) = 1; in pcre2_config() [all …]
|
H A D | pcre2_pattern_info.c | 132 *((uint32_t *)where) = re->top_backref; in pcre2_pattern_info() 136 *((uint32_t *)where) = re->bsr_convention; in pcre2_pattern_info() 140 *((uint32_t *)where) = re->top_bracket; in pcre2_pattern_info() 144 *((uint32_t *)where) = re->limit_depth; in pcre2_pattern_info() 149 *((uint32_t *)where) = re->extra_options; in pcre2_pattern_info() 181 *((uint32_t *)where) = re->limit_heap; in pcre2_pattern_info() 194 *((size_t *)where) = 0; in pcre2_pattern_info() 212 *((uint32_t *)where) = re->limit_match; in pcre2_pattern_info() 221 *((uint32_t *)where) = re->minlength; in pcre2_pattern_info() 229 *((uint32_t *)where) = re->name_count; in pcre2_pattern_info() [all …]
|
/PHP-8.0/ext/fileinfo/libmagic/ |
H A D | is_tar.c | 144 from_oct(const char *where, size_t digs) in from_oct() argument 151 while (isspace(CAST(unsigned char, *where))) { /* Skip spaces */ in from_oct() 152 where++; in from_oct() 157 while (digs > 0 && isodigit(*where)) { /* Scan til non-octal */ in from_oct() 158 value = (value << 3) | (*where++ - '0'); in from_oct() 162 if (digs > 0 && *where && !isspace(CAST(unsigned char, *where))) in from_oct()
|
/PHP-8.0/ext/com_dotnet/ |
H A D | com_dotnet.c | 163 char *where = ""; in dotnet_init() local 171 where = "dotnet_bind_runtime"; in dotnet_init() 177 where = "ICorRuntimeHost_Start\n"; in dotnet_init() 187 where = "QI: System._AppDomain"; in dotnet_init() 209 *p_where = where; in dotnet_init() 229 char *where = ""; in PHP_METHOD() local 244 hr = dotnet_init(&where); in PHP_METHOD() 268 where = "QI: System._AppDomain"; in PHP_METHOD() 294 where = "CreateInstance"; in PHP_METHOD() 305 where = "QI: IObjectHandle"; in PHP_METHOD() [all …]
|
/PHP-8.0/ext/pdo_mysql/tests/ |
H A D | bug_61207.phpt | 20 select * from test where id = ?; 21 update test set id = 2 where id = ?;'); 35 $handle2 = $db->prepare('select * from test where id = ?; 36 update test set id = 1 where id = ?;'); 51 $handle3 = $db->prepare('update test set id = 2 where id = ?; 52 select * from test where id = ?;'); 68 update test set id = 2 where id = ?; 69 select * from test where id = ?;');
|
H A D | pdo_mysql_connect_attr.phpt | 12 $stmt = $pdo->query("select count(*) from information_schema.tables where table_schema='performance… 35 …$stmt = $pdo->query("select * from performance_schema.session_connect_attrs where ATTR_NAME='_serv… 46 $stmt = $pdo->query("select * from performance_schema.session_connect_attrs where ATTR_NAME='_clien…
|
/PHP-8.0/ext/dba/libcdb/ |
H A D | cdb_make.c | 144 uint32 where; in cdb_make_finish() local 202 where = (hp->h >> 8) % len; in cdb_make_finish() 203 while (c->hash[where].p) in cdb_make_finish() 204 if (++where == len) in cdb_make_finish() 205 where = 0; in cdb_make_finish() 206 c->hash[where] = *hp++; in cdb_make_finish()
|
/PHP-8.0/ext/oci8/tests/ |
H A D | bind_query.phpt | 27 $s = oci_parse($c, "select ename from bind_query_tab where empno = :eno"); 35 $s = oci_parse($c, 'select ename from bind_query_tab where sal > :v order by ename'); 46 $s = oci_parse($c, 'select ename from bind_query_tab where sal > :v order by ename');
|
H A D | define5.phpt | 24 $stmt = oci_parse($c, "select string from define5_tab where id = 1"); 33 $stmt = oci_parse($c, "select string from define5_tab where id = 1"); 42 $stmt = oci_parse($c, "select string from define5_tab where id = 2");
|
H A D | fetch_all4.phpt | 24 $s = oci_parse($c, "select * from fetch_all4_tab where 1 = 0"); 33 $s = oci_parse($c, "select * from fetch_all4_tab where 1 = 0");
|
H A D | imp_res_2.phpt | 28 open c1 for select * from dual where 1 = 0; 37 open c1 for select * from dual where 1 = 0; 44 open c1 for select * from dual where 1 = 0;
|
H A D | xmltype_02.phpt | 29 $s = oci_parse($c, "delete from xmltype_02_tab where warehouse_id = :id"); 63 from xmltype_02_tab where warehouse_id = :id'); 84 where warehouse_id = :id'); 94 from xmltype_02_tab where warehouse_id = :id');
|
H A D | bind_long.phpt | 31 $stmt = oci_parse($c, "SELECT filetxt FROM phptestlng where id = 1"); 49 $stmt = oci_parse($c, "SELECT filetxt FROM phptestlng where id = 2");
|
H A D | bind_rowid.phpt | 32 $s = oci_parse($c, 'select rowid, address from rid_tab where id = :l_bv for update'); 44 $s = oci_parse($c,'update rid_tab set address = :a_bv where rowid = :r_bv');
|
/PHP-8.0/tests/lang/ |
H A D | bug21961.phpt | 15 function getdrunk($where) 17 $this->bars[] = new bar($where);
|
/PHP-8.0/ext/pdo_firebird/tests/ |
H A D | ignore_parammarks.phpt | 18 where 1=:d and 2=:e 29 where 1=:d /* and :f = 5 */ and 2=:e
|
/PHP-8.0/ext/standard/tests/array/ |
H A D | array_multisort_stability.phpt | 6 // Something of a dummy example where 0 and '0' are used as equal elements.
|
/PHP-8.0/sapi/cgi/tests/ |
H A D | include.inc | 31 /* Try in the same path as php, for the case where php is installed. */ 37 /* Try sapi/cgi/php-cgi, for the case where php is not installed. */
|
/PHP-8.0/ext/opcache/tests/ |
H A D | switch_with_coinciding_targets.phpt | 2 Switch where all targets, including default, coincide
|
/PHP-8.0/ext/mysqli/tests/ |
H A D | mysqli_connect_attr.phpt | 15 if (!$res = mysqli_query($link, "select count(*) as count from information_schema.tables where tabl… 50 …sqli_query($link, "select * from performance_schema.session_connect_attrs where ATTR_NAME='_server… 63 …if (!$res = mysqli_query($link, "select * from performance_schema.session_connect_attrs where ATTR…
|
/PHP-8.0/Zend/tests/generators/ |
H A D | throw_uncaught.phpt | 2 Generator::throw() where the exception is not caught in the generator
|
H A D | throw_caught.phpt | 2 Generator::throw() where the exception is caught in the generator
|
/PHP-8.0/Zend/tests/type_declarations/union_types/variance/ |
H A D | invalid_004.phpt | 2 Invalid property inheritance where one direction is valid and the other unresolved
|
/PHP-8.0/Zend/tests/try/ |
H A D | try_finally_recursive_previous.phpt | 2 Test case where the implicit previous finally exception would result in recursion
|
/PHP-8.0/ext/pcre/tests/ |
H A D | preg_match_variation1.phpt | 7 //test passing in the same variable where 1 is by value, the other is a different
|