Home
last modified time | relevance | path

Searched refs:result (Results 176 – 200 of 1076) sorted by relevance

12345678910>>...44

/php-src/ext/intl/collator/
H A Dcollator_sort.c74 ZVAL_LONG(result, ucol_strcoll( in collator_regular_compare_function()
114 rc = compare_function( result, norm1_p, norm2_p ); in collator_regular_compare_function()
154 ZVAL_LONG(result, numeric_compare_function(op1, op2)); in collator_numeric_compare_function()
176 ZVAL_LONG(result, ucol_strcoll( in collator_icu_compare_function()
193 zval result; in collator_compare_func() local
200 if( Z_TYPE(result) == IS_DOUBLE ) in collator_compare_func()
202 if( Z_DVAL(result) < 0 ) in collator_compare_func()
204 else if( Z_DVAL(result) > 0 ) in collator_compare_func()
210 convert_to_long(&result); in collator_compare_func()
212 if( Z_LVAL(result) < 0 ) in collator_compare_func()
[all …]
/php-src/ext/pdo_mysql/
H A Dmysql_statement.c39 if (S->result) { in pdo_mysql_free_result()
64 mysql_free_result(S->result); in pdo_mysql_free_result()
65 S->result = NULL; in pdo_mysql_free_result()
141 S->result = mysql_use_result(H->server); in pdo_mysql_fill_stmt_from_result()
145 if (NULL == S->result) { in pdo_mysql_fill_stmt_from_result()
174 if (S->result) { in pdo_mysql_stmt_after_execute_prepared()
187 if (S->result) { in pdo_mysql_stmt_after_execute_prepared()
555 if (!S->result) { in pdo_mysql_stmt_fetch()
634 if (!S->result) { in pdo_mysql_stmt_describe()
675 if (!S->result) { in pdo_mysql_stmt_get_col()
[all …]
/php-src/ext/ftp/tests/
H A Dftp_rawlist_basic1.phpt16 $result = ftp_rawlist($ftp, 'www/');
17 var_dump(is_array($result));
18 var_dump($result);
/php-src/ext/hash/tests/
H A Djoaat.phpt19 $result = hash("joaat", $test[0]);
20 if ($result != $test[1]) {
21 …echo "Iteration " . $i . " failed - expected '" . $test[1] . "', got '" . $result . "' for '" . $t…
/php-src/tests/lang/
H A D023.phpt39 Correct result - 8: 8<br>
40 Correct result - 8: 8<br>
41 Correct result - 2: 2<br>
42 Correct result - -2: -2<br>
45 Correct result - 2: 2<br>
46 Correct result - 3: 3<br>
50 Correct result - 8: 8<br>
51 Correct result - 8: 8<br>
52 Correct result - 2: 2<br>
56 Correct result - 2: 2<br>
[all …]
/php-src/Zend/tests/zend_ini/
H A Dzend_ini_parse_uquantity_overflow.phpt77 Warning: Invalid quantity "%d": value is out of range, using overflow result for backwards compatib…
83 Warning: Invalid quantity "-%d": value is out of range, using overflow result for backwards compati…
89 Warning: Invalid quantity "-%d": value is out of range, using overflow result for backwards compati…
95 Warning: Invalid quantity "-2": value is out of range, using overflow result for backwards compatib…
101 Warning: Invalid quantity "-1K": value is out of range, using overflow result for backwards compati…
107 Warning: Invalid quantity "-1 K": value is out of range, using overflow result for backwards compat…
113 Warning: Invalid quantity "%dK": value is out of range, using overflow result for backwards compati…
/php-src/ext/standard/tests/array/
H A Dbug45312.phpt25 $result = array_udiff_assoc($a, $b, array("cr", "comp_func_cr"));
26 foreach($result as $val) {
29 $result = array_udiff_assoc($a, $b, array("cr", "comp_func_cr2"));
30 foreach($result as $val) {
/php-src/ext/hash/sha3/generic64lc/
H A DKeccakHash.c23 HashReturn result; in Keccak_HashInitialize() local
27 result = (HashReturn)KeccakWidth1600_SpongeInitialize(&instance->sponge, rate, capacity); in Keccak_HashInitialize()
28 if (result != SUCCESS) in Keccak_HashInitialize()
29 return result; in Keccak_HashInitialize()
/php-src/ext/hash/sha3/generic32lc/
H A DKeccakHash.c23 HashReturn result; in Keccak_HashInitialize() local
27 result = (HashReturn)KeccakWidth1600_SpongeInitialize(&instance->sponge, rate, capacity); in Keccak_HashInitialize()
28 if (result != SUCCESS) in Keccak_HashInitialize()
29 return result; in Keccak_HashInitialize()
/php-src/ext/ldap/tests/
H A Dldap_parse_result_controls.phpt2 ldap_parse_result() - Test the parsing of controls from result object
23 $result = ldap_search($link, $dn, $filter, array('cn'), 0, 0, 0, LDAP_DEREF_NEVER,
25 ldap_parse_result($link, $result, $errcode, $dn, $errmsg, $refs, $ctrls),
29 ldap_get_entries($link, $result)['count']
H A Dbug48441.phpt22 $result = ldap_search($link, $dn, $filter, array('sn')),
23 ldap_get_entries($link, $result)
26 $result = ldap_search($link, $dn, $filter, array('sn'), 1, 1, 1, LDAP_DEREF_ALWAYS),
27 ldap_get_entries($link, $result)
30 $result = ldap_search($link, $dn, $filter, array('sn')),
31 ldap_get_entries($link, $result)
/php-src/ext/mysqli/tests/
H A D049.phpt17 $result = $mysql->query("SELECT DATABASE()");
18 $row = $result->fetch_row();
19 $result->close();
H A Dbug66124.phpt51 $result = $link->query($table_select);
53 if ($result){
54 while ($row = $result->fetch_assoc()) {
80 $result = $link->query($table_select);
82 if ($result){
83 while ($row = $result->fetch_assoc()) {
/php-src/ext/json/tests/
H A Djson_encode_recursion_04.phpt12 return [ 'result' => var_export($this, true) ];
29 ["result"]=>
37 ["result"]=>
/php-src/ext/pdo_mysql/tests/
H A Dbug_38546.phpt41 $result = $st->execute();
43 if ($result === false) {
67 $result = $st->execute();
69 if ($result === false) {
93 $result = $st->execute();
95 if ($result === false) {
120 $result = $st->execute();
122 if ($result === false) {
147 $result = $st->execute();
149 if ($result === false) {
[all …]
/php-src/ext/standard/
H A Dstrnatcmp.c94 int fractional, result; in strnatcmp_ex() local
130 result = compare_left(&ap, aend, &bp, bend); in strnatcmp_ex()
132 result = compare_right(&ap, aend, &bp, bend); in strnatcmp_ex()
134 if (result != 0) in strnatcmp_ex()
135 return result; in strnatcmp_ex()
/php-src/ext/standard/tests/time/
H A D001.phpt13 $result = '';
22 $result .= sprintf('%06d', $i).": $time $micro < $last_t $last_m\n";
29 echo $result;
/php-src/ext/date/tests/
H A Dbug20382-1.phpt2 Bug #20382 [1] (strtotime ("Monday", $date) produces wrong result on DST changeover)
11 echo "result=". date("l Y-m-d H:i:s T", $strtotime_timestamp). "\n";
16 result=Monday 2004-11-01 00:00:00 CET
/php-src/ext/random/
H A Dcsprng.c216 zend_result result = php_random_bytes_ex(bytes, size, errstr, sizeof(errstr)); in php_random_bytes() local
218 if (result == FAILURE && should_throw) { in php_random_bytes()
222 return result; in php_random_bytes()
225 …PAPI zend_result php_random_int(zend_long min, zend_long max, zend_long *result, bool should_throw) in php_random_int() argument
231 *result = min; in php_random_int()
243 *result = (zend_long)trial; in php_random_int()
263 *result = (zend_long)((trial % umax) + min); in php_random_int()
/php-src/ext/mysqli/tests/functions/
H A Dmysqli_set_charset.phpt17 $result = mysqli_query($link, 'SHOW CHARACTER SET');
19 while ($row = mysqli_fetch_assoc($result)) {
22 mysqli_free_result($result);
57 $result = mysqli_query($link, "SELECT id, label FROM test_mysqli_set_charset");
59 $tmp = mysqli_fetch_assoc($result);
70 mysqli_free_result($result);
/php-src/ext/dom/lexbor/patches/
H A D0001-Patch-utilities-and-data-structure-to-be-able-to-gen.patch79 result.append("{{{}, {}, {}}},".format(entry[0], entry[1], entry[2]))
81 - result.append("{0, NULL, 0},")
82 + result.append("{0, 0, 0},")
85 result.append("\n ")
93 result.append("{{{}, {}, {}}}\n".format(entry[0], entry[1], entry[2]))
95 - result.append("{0, NULL, 0}\n")
96 + result.append("{0, 0, 0}\n")
98 result.append("};")
/php-src/ext/com_dotnet/tests/
H A Dbug66431_0.phpt18 $result = ($check_text == $text);
20 var_dump($result);
22 if (!$result) {
/php-src/ext/standard/tests/image/
H A Dgetimagesize_246x247.phpt11 $result = array();
21 $result[$file] = getimagesize(__DIR__."/$file");
23 var_dump($result);
H A Dgetimagesize_384x385.phpt11 $result = array();
21 $result[$file] = getimagesize(__DIR__."/$file");
23 var_dump($result);
/php-src/ext/standard/tests/url/
H A Dbase64_loop_001.phpt11 $result = "";
21 $result .= strcmp($str, $str_dec);
24 if ($result != $expect_result) {

Completed in 60 milliseconds

12345678910>>...44