Home
last modified time | relevance | path

Searched refs:v1 (Results 1 – 25 of 28) sorted by relevance

12

/PHP-5.5/ext/standard/tests/array/
H A Darray_map_variation2.phpt31 string(2) "v1"
33 string(2) "v1"
36 &string(2) "v1"
40 &string(2) "v1"
57 string(2) "v1"
67 string(2) "v1"
93 string(2) "v1"
95 string(2) "v1"
98 &string(2) "v1"
102 &string(2) "v1"
[all …]
H A Darray_walk.phpt12 function foo($v1, $v2, $v3) {
13 var_dump($v1);
21 function foo2($v1, $v2, $v3) {
H A Darray_walk_recursive1.phpt12 function foo($v1, $v2, $v3) {
13 var_dump($v1);
21 function foo2($v1, $v2, $v3) {
/PHP-5.5/ext/standard/tests/file/
H A Dfscanf.phpt25 var_dump(fscanf($fp, "%s", $v, $v1));
27 var_dump($v1);
31 $v1 = array();
33 var_dump(fscanf($fp, "", $v, $v1));
35 var_dump($v1);
39 $v1 = array();
41 var_dump(fscanf($fp, "%.a", $v, $v1));
43 var_dump($v1);
/PHP-5.5/ext/bcmath/libbcmath/src/
H A Drecmul.c185 bc_num u0, u1, v0, v1; in _bc_rec_mul() local
210 v1 = bc_copy_num (BCG(_zero_)); in _bc_rec_mul()
213 v1 = new_sub_num (vlen-n, 0, v->n_value); in _bc_rec_mul()
218 _bc_rm_leading_zeros (v1); in _bc_rec_mul()
221 m1zero = bc_is_zero(u1 TSRMLS_CC) || bc_is_zero(v1 TSRMLS_CC); in _bc_rec_mul()
229 bc_sub (v0, v1, &d2, 0); in _bc_rec_mul()
237 _bc_rec_mul (u1, u1->n_len, v1, v1->n_len, &m1, 0 TSRMLS_CC); in _bc_rec_mul()
264 bc_free_num (&v1); in _bc_rec_mul()
/PHP-5.5/ext/spl/tests/
H A Dheap_corruption.phpt13 public function compare($v1, $v2)
17 if ($v1 > $v2)
21 else if ($v1 < $v2)
H A Dheap_current_variation_001.phpt11 public function compare($v1, $v2)
/PHP-5.5/Zend/tests/
H A Dbug60833.phpt8 $this->v1 = new sELF;
28 ["v1"]=>
H A Dbug69221.phpt13 foreach ($gen1 as $v1) {
/PHP-5.5/ext/curl/tests/
H A Dcurl_basic_022.phpt14 curl_setopt($ch, CURLOPT_COOKIELIST, 'Set-Cookie: C1=v1; expires=Thu, 31-Dec-2037 23:59:59 GMT; pat…
22 string(38) ".php.net TRUE / FALSE 2145916799 C1 v1"
/PHP-5.5/ext/oci8/tests/
H A Dstatement_type.phpt16 "CREATE OR REPLACE PROCEDURE myproc(v1 NUMBER) as BEGIN DBMS_OUTPUT.PUT_LINE(v1); END;",
H A Dstatement_type_old.phpt23 "CREATE OR REPLACE PROCEDURE myproc(v1 NUMBER) as BEGIN DBMS_OUTPUT.PUT_LINE(v1); END;",
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_statistics.h94 uint64_t v1 = (uint64_t) (value1); \
98 if (_s1 != _p_s->count) MYSQLND_UPDATE_VALUE_AND_CALL_TRIGGER(_p_s, _s1, v1); \
107 uint64_t v1 = (uint64_t) (value1); \
113 if (_s1 != _p_s->count) MYSQLND_UPDATE_VALUE_AND_CALL_TRIGGER(_p_s, _s1, v1); \
/PHP-5.5/ext/standard/tests/general_functions/
H A Dhead.phpt12 $v1 = headers_sent();
16 var_dump($v1);
H A Dgetopt_004.phpt4 -v -v1 -v=10 --v --v=100
/PHP-5.5/ext/standard/
H A Dversioning.c213 char *v1, *v2, *op = NULL; in PHP_FUNCTION() local
218 if (zend_parse_parameters(argc TSRMLS_CC, "ss|s", &v1, &v1_len, &v2, in PHP_FUNCTION()
222 compare = php_version_compare(v1, v2); in PHP_FUNCTION()
/PHP-5.5/tests/lang/
H A DforeachLoop.009.phpt11 foreach ($refedArray as $k=>$v1) {
13 echo "key: $k; value: $v1\n";
/PHP-5.5/sapi/fpm/
H A Dconfig.m4145 …long v1 = (unsigned int) -1; /* copy will fail if sizeof(long) == 8 and we've got "int ptrace()" */
162 .piod_offs = &v1,
164 .piod_len = sizeof(v1)
173 v2 = ptrace(PTRACE_PEEKDATA, child, (void *) &v1, 0);
183 return ret ? ret : (v1 != v2);
250 long v1 = (unsigned int) -1, v2 = 0;
258 if (sizeof(long) != pread(fd, &v2, sizeof(long), (uintptr_t) &v1)) {
263 return v1 != v2;
/PHP-5.5/ext/gd/libgd/
H A Dgdft.c717 gdroundupdown (FT_F26Dot6 v1, int updown) argument
719 return (!updown) ? (v1 < 0 ? ((v1 - 63) >> 6) : v1 >> 6) : (v1 > 0 ? ((v1 + 63) >> 6) : v1 >> 6);
/PHP-5.5/ext/standard/tests/versioning/
H A Dversion_compare.phpt29 $v1 = "1.0$f1";
31 $test = version_compare($v1, $v2, $op) ? "true" : "false";
32 printf("%7s %2s %-7s : %s\n", $v1, $op, $v2, $test);
37 function test($v1, $v2) {
38 $compare = version_compare($v1, $v2);
41 print "$v1 < $v2\n";
44 print "$v1 > $v2\n";
48 print "$v1 = $v2\n";
/PHP-5.5/build/
H A Dshtool1468 unset v1; unset v2; unset v3
1475 ST="[Apple ]<${UNAME_SYSTEM} ${v1}>${v2+.$v2}${v3+[.$v3]}"
1487 unset v1; unset v2; unset v3
1494 SP="[Apple ]Mac OS X ${v1}${v2+.$v2}${v3+[.$v3]}"
1509 unset v1; unset v2; unset v3
1516 ST="Cygwin ${v1}${v2+.$v2}${v3+[.$v3]}"
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregcomp.c4035 if (v1 <= 0) return 1; in comp_distance_value()
4037 v1 *= distance_value(d1); in comp_distance_value()
4040 if (v2 > v1) return 1; in comp_distance_value()
4041 if (v2 < v1) return -1; in comp_distance_value()
4287 int v1, v2; in select_opt_exact_info() local
4289 v1 = now->len; in select_opt_exact_info()
4295 else if (v1 == 0) { in select_opt_exact_info()
4299 else if (v1 <= 2 && v2 <= 2) { in select_opt_exact_info()
4304 if (now->len > 1) v1 += 5; in select_opt_exact_info()
4385 int v1, v2; in select_opt_map_info() local
[all …]
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic695 #>>2 ubyte&0xF0 <0xE1 MPEG ADTS, layer I, v1
2286 >>>4 byte 0x0a \b, at least v1.0 to extract
2287 >>>4 byte 0x0b \b, at least v1.1 to extract
2976 0 string Extreme Extreme Tracker AMS Module v1.3
7339 >0x64 beshort ^0x2004 v1 dirs)
10508 # Moving-Picture Exchange (DPX), v1.0, 18 February 1994
11186 0 leshort 0x0436 Linux/i386 PC Screen Font v1 data,
13617 >4 belong 1 (v1)
14678 >>(0x4E.L+1) byte x (v1.%02d)
16531 0 short 0xc0de Compiled PSI (v1) data
[all …]
/PHP-5.5/sapi/litespeed/
H A Dlsapilib.c1919 int compareValueLocation(const void * v1, const void *v2 ) in compareValueLocation() argument
1921 return ((const struct _headerInfo *)v1)->_value - in compareValueLocation()
/PHP-5.5/
H A DREADME.REDIST.BINS138 Richard J. Wagner v1.0 15 May 2003 rjwagner@writeme.com

Completed in 143 milliseconds

12