/PHP-8.3/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.3/ext/fileinfo/libmagic/ |
H A D | is_tar.c | 157 from_oct(const char *where, size_t digs) in from_oct() argument 164 while (isspace(CAST(unsigned char, *where))) { /* Skip spaces */ in from_oct() 165 where++; in from_oct() 170 while (digs > 0 && isodigit(*where)) { /* Scan til non-octal */ in from_oct() 171 value = (value << 3) | (*where++ - '0'); in from_oct() 175 if (digs > 0 && *where && !isspace(CAST(unsigned char, *where))) in from_oct()
|
/PHP-8.3/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.3/ext/pdo_mysql/tests/ |
H A D | bug_61207.phpt | 21 select * from test where id = ?; 22 update test set id = 2 where id = ?;'); 36 $handle2 = $db->prepare('select * from test where id = ?; 37 update test set id = 1 where id = ?;'); 52 $handle3 = $db->prepare('update test set id = 2 where id = ?; 53 select * from test where id = ?;'); 69 update test set id = 2 where id = ?; 70 select * from test where id = ?;');
|
H A D | pdo_mysql_connect_attr.phpt | 13 $stmt = $pdo->query("select count(*) from information_schema.tables where table_schema='performance… 36 …$stmt = $pdo->query("select * from performance_schema.session_connect_attrs where ATTR_NAME='_serv… 47 $stmt = $pdo->query("select * from performance_schema.session_connect_attrs where ATTR_NAME='_clien…
|
/PHP-8.3/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.3/ext/oci8/tests/ |
H A D | bind_query.phpt | 31 $s = oci_parse($c, "select ename from bind_query_tab where empno = :eno"); 39 $s = oci_parse($c, 'select ename from bind_query_tab where sal > :v order by ename'); 50 $s = oci_parse($c, 'select ename from bind_query_tab where sal > :v order by ename');
|
H A D | define5.phpt | 28 $stmt = oci_parse($c, "select string from define5_tab where id = 1"); 37 $stmt = oci_parse($c, "select string from define5_tab where id = 1"); 46 $stmt = oci_parse($c, "select string from define5_tab where id = 2");
|
H A D | fetch_all4.phpt | 28 $s = oci_parse($c, "select * from fetch_all4_tab where 1 = 0"); 37 $s = oci_parse($c, "select * from fetch_all4_tab where 1 = 0");
|
H A D | imp_res_2.phpt | 30 open c1 for select * from dual where 1 = 0; 39 open c1 for select * from dual where 1 = 0; 46 open c1 for select * from dual where 1 = 0;
|
H A D | xmltype_02.phpt | 32 $s = oci_parse($c, "delete from xmltype_02_tab where warehouse_id = :id"); 66 from xmltype_02_tab where warehouse_id = :id'); 87 where warehouse_id = :id'); 97 from xmltype_02_tab where warehouse_id = :id');
|
H A D | bind_long.phpt | 34 $stmt = oci_parse($c, "SELECT filetxt FROM phptestlng where id = 1"); 52 $stmt = oci_parse($c, "SELECT filetxt FROM phptestlng where id = 2");
|
H A D | bind_rowid.phpt | 36 $s = oci_parse($c, 'select rowid, address from rid_tab where id = :l_bv for update'); 48 $s = oci_parse($c,'update rid_tab set address = :a_bv where rowid = :r_bv');
|
/PHP-8.3/tests/lang/ |
H A D | bug21961.phpt | 15 function getdrunk($where) 17 $this->bars[] = new bar($where);
|
/PHP-8.3/ext/pdo_firebird/tests/ |
H A D | ignore_parammarks.phpt | 20 where 1=:d and 2=:e 31 where 1=:d /* and :f = 5 */ and 2=:e
|
/PHP-8.3/sapi/cgi/tests/ |
H A D | include.inc | 32 /* Try in the same path as php, for the case where php is installed. */ 38 /* Try sapi/cgi/php-cgi, for the case where php is not installed. */
|
/PHP-8.3/ext/mysqli/tests/ |
H A D | mysqli_connect_attr.phpt | 13 if (!$res = mysqli_query($link, "select count(*) as count from information_schema.tables where tabl… 48 …sqli_query($link, "select * from performance_schema.session_connect_attrs where ATTR_NAME='_server… 61 …if (!$res = mysqli_query($link, "select * from performance_schema.session_connect_attrs where ATTR…
|
H A D | mysqli_prepare.phpt | 57 $where = 2; 58 if (!mysqli_stmt_bind_param($stmt, 'ii', $id, $where) || !mysqli_stmt_execute($stmt)) 65 $where = 3; 66 if (!mysqli_stmt_bind_param($stmt, 'i', $where) || !mysqli_stmt_execute($stmt))
|
/PHP-8.3/ext/dom/tests/ |
H A D | bug67440.phpt | 52 echo "-- fragment to document where first element is not a text node --\n"; case3('appendChild'); e… 58 echo "-- fragment to document where first element is not a text node --\n"; case3('insertBefore'); … 64 echo "-- fragment to document where first element is not a text node --\n"; case3('insertBefore'); … 84 -- fragment to document where first element is not a text node -- 112 -- fragment to document where first element is not a text node -- 140 -- fragment to document where first element is not a text node --
|
/PHP-8.3/ext/opcache/tests/ |
H A D | switch_with_coinciding_targets.phpt | 2 Switch where all targets, including default, coincide
|
/PHP-8.3/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.3/ext/standard/tests/array/range/ |
H A D | range_inputs_string_digits_float_step.phpt | 2 Test range() function where boundary are string digits and step is a float
|
/PHP-8.3/Zend/tests/traits/bugs/ |
H A D | overridding-static-property-with-doc-block.phpt | 2 Overriding a static property where both declarations have a doc block does not leak memory
|
/PHP-8.3/Zend/tests/generators/ |
H A D | throw_uncaught.phpt | 2 Generator::throw() where the exception is not caught in the generator
|