Home
last modified time | relevance | path

Searched refs:S (Results 1 – 25 of 287) sorted by relevance

12345678910>>...12

/php-src/ext/pdo_mysql/
H A Dmysql_statement.c114 efree(S); in pdo_mysql_stmt_dtor()
152 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_fill_stmt_from_result()
173 S->result = mysqlnd_stmt_result_metadata(S->stmt); in pdo_mysql_stmt_after_execute_prepared()
175 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_after_execute_prepared()
186 S->result = mysql_stmt_result_metadata(S->stmt); in pdo_mysql_stmt_after_execute_prepared()
189 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_after_execute_prepared()
221 S->fields[i].max_length? S->fields[i].max_length: in pdo_mysql_stmt_after_execute_prepared()
240 S->bound_result[i].is_null = &S->out_null[i]; in pdo_mysql_stmt_after_execute_prepared()
241 S->bound_result[i].length = &S->out_length[i]; in pdo_mysql_stmt_after_execute_prepared()
272 if (mysql_stmt_bind_param(S->stmt, S->params) || mysql_stmt_execute(S->stmt)) { in pdo_mysql_stmt_execute_prepared_libmysql()
[all …]
/php-src/ext/pdo_pgsql/
H A Dpgsql_statement.c77 if (S->result) { in pgsql_stmt_finish()
171 if(S->cols) { in pgsql_stmt_dtor()
175 efree(S); in pgsql_stmt_dtor()
237 S->result = PQprepare(H->server, S->stmt_name, ZSTR_VAL(S->query), in pgsql_stmt_execute()
287 S->result = PQexecPrepared(H->server, S->stmt_name, in pgsql_stmt_execute()
307 S->result = PQexecParams(H->server, ZSTR_VAL(S->query), in pgsql_stmt_execute()
337 S->result = PQgetResult(S->H->server); in pgsql_stmt_execute()
548 S->result = PQexec(S->H->server, q); in pgsql_stmt_fetch()
575 S->result = PQgetResult(S->H->server); in pgsql_stmt_fetch()
615 S->cols[colno].pgsql_type = PQftype(S->result, colno); in pgsql_stmt_describe()
[all …]
/php-src/ext/pdo_sqlite/
H A Dsqlite_statement.c34 if (S->stmt) { in pdo_sqlite_stmt_dtor()
36 S->stmt = NULL; in pdo_sqlite_stmt_dtor()
38 efree(S); in pdo_sqlite_stmt_dtor()
50 S->done = 0; in pdo_sqlite_stmt_execute()
61 S->done = 1; in pdo_sqlite_stmt_execute()
85 S->done = 1; in pdo_sqlite_stmt_param_hook()
207 if (!S->stmt) { in pdo_sqlite_stmt_fetch()
214 if (S->done) { in pdo_sqlite_stmt_fetch()
223 S->done = 1; in pdo_sqlite_stmt_fetch()
259 if (!S->stmt) { in pdo_sqlite_stmt_get_col()
[all …]
/php-src/ext/pcre/tests/
H A Dbug41148.phpt10 /* 0 */ "/\n(----+|____+)/S",
11 /* 1 */ "/\n-- */S",
12 /* 2 */ "/\n- */S",
13 /* 3 */ "/\n_ +/S",
14 /* 4 */ "/(^|[^{])[{][{][{]/S",
17 /* 7 */ "/[{][{]/S",
18 /* 8 */ "/[}][}]/S",
19 /* 9 */ "/[{]/S",
20 /* 10 */ "/[}]/S",
23 /* 13 */ "/<quote>/S",
[all …]
H A Dstudy.phpt6 var_dump(preg_match('/(?:(?:(?:(?:(?:(.))))))/ S', 'aeiou', $dump));
11 var_dump(preg_match('/(?>..)((?:(?>.)|.|.|.|u))/S', 'aeiou', $dump));
15 var_dump(preg_match('/^aeiou$/S', 'aeiou', $dump));
17 var_dump(preg_match('/aeiou/S', 'aeiou', $dump));
/php-src/ext/hash/
H A Dhash_sha_ni.c79 #define RND4(S, W, K0, K1, K2, K3) do { \ argument
86 S[1] = _mm_sha256rnds2_epu32(S[1], S[0], M); \
90 S[0] = _mm_sha256rnds2_epu32(S[0], S[1], M); \
102 #define RNDMSG(S, W, i, K0, K1, K2, K3) do { \ argument
103 RND4(S, W[i % 4], K0, K1, K2, K3); \
123 __m128i S[2]; in SHA256_Transform_shani() local
142 S[0] = S0145; in SHA256_Transform_shani()
143 S[1] = S2367; in SHA256_Transform_shani()
146 RNDMSG(S, W, 0, 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5); in SHA256_Transform_shani()
164 S0145 = _mm_add_epi32(S0145, S[0]); in SHA256_Transform_shani()
[all …]
H A Dhash_sha_sse2.c91 RND(S[(64 - i) % 8], S[(65 - i) % 8], \
92 S[(66 - i) % 8], S[(67 - i) % 8], \
93 S[(68 - i) % 8], S[(69 - i) % 8], \
94 S[(70 - i) % 8], S[(71 - i) % 8], \
223 RNDr(S, W, 0, i); in SHA256_Transform_sse2()
224 RNDr(S, W, 1, i); in SHA256_Transform_sse2()
225 RNDr(S, W, 2, i); in SHA256_Transform_sse2()
226 RNDr(S, W, 3, i); in SHA256_Transform_sse2()
227 RNDr(S, W, 4, i); in SHA256_Transform_sse2()
228 RNDr(S, W, 5, i); in SHA256_Transform_sse2()
[all …]
/php-src/Zend/tests/type_declarations/
H A Dtyped_class_constants_inheritance_success2.phpt5 class S implements Stringable {
11 class Z extends S {}
14 public const object CONST1 = S;
15 public const S CONST2 = S;
16 public const S|Stringable CONST3 = S;
17 public const S CONST4 = S;
18 public const ?S CONST5 = S;
22 public const S CONST1 = Z;
24 public const S CONST3 = Z;
25 public const S&Stringable CONST4 = Z;
[all …]
H A Dtyped_class_constants_type_error9.phpt5 class S {
8 return 'S';
13 public const string S = S;
16 define("S", new S());
19 var_dump(A::S);
25 Cannot assign S to class constant A::S of type string
/php-src/ext/pdo_odbc/
H A Dodbc_stmt.c74 S->convbuf = erealloc(S->convbuf, S->convbufsize); in pdo_odbc_utf82ucs2()
121 if (S->cols) { in free_cols()
129 efree(S->cols); in free_cols()
130 S->cols = NULL; in free_cols()
131 S->col_count = 0; in free_cols()
147 free_cols(stmt, S); in odbc_stmt_dtor()
148 if (S->convbuf) { in odbc_stmt_dtor()
151 efree(S); in odbc_stmt_dtor()
202 rc1 = SQLPutData(S->stmt, S->convbuf, ulen); in odbc_stmt_execute()
613 S->cols[colno].is_unicode = pdo_odbc_sqltype_is_unicode(S, S->cols[colno].coltype); in odbc_stmt_describe()
[all …]
/php-src/ext/standard/tests/file/
H A Dstream_rfc2397_007.phpt20 echo "===S:4,S===\n";
41 echo "===S:3,S===\n";
57 echo "===S:3,S===\n";
86 ===S:4,S===
107 ===S:3,S===
111 ===S:1,C===
115 ===S:-2,C===
123 ===S:3,S===
127 ===S:10,C===
135 ===S:0,E===
[all …]
/php-src/ext/pdo_firebird/
H A Dfirebird_statement.c96 fmt = S->H->time_format ? S->H->time_format : PDO_FB_DEF_TIME_FMT; in get_formatted_time_tz()
177 efree(S); in pdo_firebird_stmt_dtor()
194 …if ((*S->name || S->cursor_open) && isc_dsql_free_statement(H->isc_status, &S->stmt, DSQL_close)) { in pdo_firebird_stmt_execute()
213 …if (isc_dsql_execute2(H->isc_status, &H->tr, &S->stmt, PDO_FB_SQLDA_VERSION, S->in_sqlda, &S->out_… in pdo_firebird_stmt_execute()
260 *S->name = 0; in pdo_firebird_stmt_execute()
261 S->cursor_open = S->out_sqlda.sqln && (S->statement_type != isc_info_sql_stmt_exec_procedure); in pdo_firebird_stmt_execute()
262 S->exhausted = !S->out_sqlda.sqln; /* There are data to fetch */ in pdo_firebird_stmt_execute()
632 XSQLDA *sqlda = param->is_param ? S->in_sqlda : &S->out_sqlda; in pdo_firebird_stmt_param_hook()
898 strlcpy(S->name, Z_STRVAL_P(val), sizeof(S->name)); in pdo_firebird_stmt_set_attribute()
929 …if ((*S->name || S->cursor_open) && isc_dsql_free_statement(S->H->isc_status, &S->stmt, DSQL_close… in pdo_firebird_stmt_cursor_closer()
[all …]
/php-src/ext/intl/tests/
H A Drbbiter_getBinaryRules_basic.phpt14 \$S = [.;,:];
18 \$S+ {42};
21 \$S+ {42};
36 string(128) "$LN = [[:letter:] [:number:]];$S = [.;,:];!!forward;$LN+ {1};$S+ {42};!!reverse;$LN+ {…
37 string(128) "$LN = [[:letter:] [:number:]];$S = [.;,:];!!forward;$LN+ {1};$S+ {42};!!reverse;$LN+ {…
H A Drbbiter_getBinaryRules_basic3.phpt14 \$S = [.;,:];
18 \$S+ {42};
21 \$S+ {42};
37 string(119) "$LN=[[:letter:][:number:]];$S=[.;,:];!!forward;$LN+{1};$S+{42};!!reverse;$LN+{1};$S+{4…
38 string(119) "$LN=[[:letter:][:number:]];$S=[.;,:];!!forward;$LN+{1};$S+{42};!!reverse;$LN+{1};$S+{4…
H A Drbbiter_getBinaryRules_basic2.phpt15 \$S = [.;,:];
19 \$S+ {42};
22 \$S+ {42};
38 $S = [.;,:];
41 $S+ {42};
44 $S+ {42};
48 $S = [.;,:];
51 $S+ {42};
54 $S+ {42};
H A Drbbiter_getRules_basic.phpt14 \$S = [.;,:];
18 \$S+ {42};
21 \$S+ {42};
30 string(128) "$LN = [[:letter:] [:number:]];$S = [.;,:];!!forward;$LN+ {1};$S+ {42};!!reverse;$LN+ {…
H A Drbbiter_getRules_basic3.phpt14 \$S = [.;,:];
18 \$S+ {42};
21 \$S+ {42};
31 string(119) "$LN=[[:letter:][:number:]];$S=[.;,:];!!forward;$LN+{1};$S+{42};!!reverse;$LN+{1};$S+{4…
H A Drbbiter_getRules_basic2.phpt15 \$S = [.;,:];
19 \$S+ {42};
22 \$S+ {42};
32 $S = [.;,:];
35 $S+ {42};
38 $S+ {42};
/php-src/Zend/tests/
H A Dgh10709_3.phpt6 class S {
11 return 'S';
13 throw new \Exception('Thrown from S');
18 const S = new S();
21 public $prop = A::C . S;
38 Fatal error: Uncaught Exception: Thrown from S in %s:%d
41 #1 %s(%d): S->__toString()
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitNativePPC_64.c119 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)); in load_immediate()
125 (RLDICL | S(src) | A(dst) | RLDI_SH(0) | RLDI_MB(n))
130 FAIL_IF(push_inst(compiler, EXTSW | S(src2) | A(TMP_REG2))); \
162 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
170 return push_inst(compiler, EXTSW | S(src2) | A(dst)); in emit_single_op()
183 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
187 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
198 return push_inst(compiler, EXTSH | S(src2) | A(dst)); in emit_single_op()
231 return push_inst(compiler, SRDI(32) | S(dst) | A(dst)); in emit_single_op()
320 return push_inst(compiler, SRDI(32) | S(dst) | A(dst)); in emit_single_op()
[all …]
H A DsljitNativePPC_32.c35 return push_inst(compiler, ORI | S(TMP_ZERO) | A(reg) | IMM(imm)); in load_immediate()
43 (RLWINM | S(src) | A(dst) | RLWI_MBE(from, 31))
57 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
65 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
69 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
80 return push_inst(compiler, EXTSH | S(src2) | A(dst)); in emit_single_op()
90 return push_inst(compiler, CNTLZW | S(src2) | A(dst)); in emit_single_op()
95 FAIL_IF(push_inst(compiler, AND | S(src2) | A(dst) | B(TMP_REG1))); in emit_single_op()
96 FAIL_IF(push_inst(compiler, CNTLZW | S(dst) | A(dst))); in emit_single_op()
100 return push_inst(compiler, XOR | S(dst) | A(dst) | B(TMP_REG1)); in emit_single_op()
[all …]
/php-src/ext/pdo_dblib/
H A Ddblib_stmt.c96 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_cursor_closer()
110 pdo_dblib_err_dtor(&S->err); in pdo_dblib_stmt_dtor()
112 efree(S); in pdo_dblib_stmt_dtor()
120 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_next_rowset_no_cancel()
152 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_next_rowset()
173 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_execute()
202 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_fetch()
221 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_describe()
260 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_should_stringify_col()
346 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_get_col()
[all …]
/php-src/ext/standard/tests/serialize/
H A Dunserialize_uppercase_s.phpt2 Test unserialize() with the 'S' format emits a deprecation.
6 var_dump(unserialize('S:1:"e";'));
7 var_dump(unserialize('S:1:"\65";'));
11 Deprecated: unserialize(): Unserializing the 'S' format is deprecated in %s on line %d
14 Deprecated: unserialize(): Unserializing the 'S' format is deprecated in %s on line %d
/php-src/sapi/fuzzer/corpus/unserialize/
H A Dleak_176391 a:7:{i:6;i:0;S:1:" ";i:1;i:6;a:8:{i:0;i:4;S:1:" ";i:2;i:9;R:4;S:1:" ";a:2:{i:5;O:13:"RegexIterator"…
/php-src/ext/snmp/tests/
H A Dsnmp-object.phpt160 string(%d) "%S"
167 string(%d) "%S"
170 string(%d) "%S"
171 string(%d) "%S"
180 string(%d) "%S"
181 string(%d) "%S"
186 string(%d) "%S"
187 string(%d) "%S"
192 string(%d) "%S"
193 string(%d) "%S"
[all …]

Completed in 91 milliseconds

12345678910>>...12