Home
last modified time | relevance | path

Searched refs:a (Results 876 – 900 of 6311) sorted by relevance

1...<<31323334353637383940>>...253

/PHP-5.5/ext/hash/
H A Dhash_ripemd.c214 a = d; d = c; c = b; b = tmp; in RIPEMD128Transform()
221 a = d; d = c; c = b; b = tmp; in RIPEMD128Transform()
228 a = d; d = c; c = b; b = tmp; in RIPEMD128Transform()
235 a = d; d = c; c = b; b = tmp; in RIPEMD128Transform()
242 state[2] = state[3] + a + bb; in RIPEMD128Transform()
305 a = d; d = c; c = b; b = tmp; in RIPEMD256Transform()
309 tmp = a; a = aa; aa = tmp; in RIPEMD256Transform()
335 state[0] += a; in RIPEMD256Transform()
439 state[3] = state[4] + a + bb; in RIPEMD160Transform()
522 tmp = a; a = aa; aa = tmp; in RIPEMD320Transform()
[all …]
/PHP-5.5/tests/basic/
H A D015.phpt4 a[]=1&a[0]=5
7 var_dump($_POST['a']);
H A D014.phpt4 a[]=1&a[]=1
7 var_dump($_POST['a']);
/PHP-5.5/ext/intl/tests/
H A Dlocale_get_script.phpt25 'i-enochian', //(example of a grandfathered tag)
60 'zh-CN-a-myExt-x-private',
61 'en-a-myExt-b-another',
64 'a-DE',
65 'ar-a-aaa-b-bbb-a-ccc'
117 zh-CN-a-myExt-x-private: script=''
118 en-a-myExt-b-another: script=''
120 a-DE: script=''
121 ar-a-aaa-b-bbb-a-ccc: script=''
/PHP-5.5/ext/standard/
H A Dphp_smart_str.h46 #define SMART_STR_REALLOC(a,b,c) realloc((a),(b)) argument
48 #define SMART_STR_REALLOC(a,b,c) perealloc((a),(b),(c)) argument
52 (d)->c = SMART_STR_REALLOC((d)->c, (d)->a + 1, (what))
58 (d)->a = newlen < SMART_STR_START_SIZE \
64 if (newlen >= (d)->a) { \
65 (d)->a = newlen + SMART_STR_PREALLOC; \
66 if (UNEXPECTED((d)->a >= INT_MAX)) { \
112 __s->a = __s->len = 0; \
191 (dest)->a = (nlen) + 1; \
H A Dimage.c214 if (php_stream_read(stream, a, sizeof(a)) != sizeof(a)) in php_handle_swc()
217 if (uncompress(b, &len, a, sizeof(a)) != Z_OK) { in php_handle_swc()
279 if (php_stream_read(stream, a, sizeof(a)) != sizeof(a)) in php_handle_swf()
366 unsigned char a[2]; in php_read2() local
369 if((php_stream_read(stream, a, sizeof(a))) < sizeof(a)) return 0; in php_read2()
371 return (((unsigned short)a[0]) << 8) + ((unsigned short)a[1]); in php_read2()
379 int a=0, marker; in php_next_marker() local
409 a++; in php_next_marker()
411 if (a < 2) in php_next_marker()
568 if ((php_stream_read(stream, a, sizeof(a))) != sizeof(a)) return 0; in php_read4()
[all …]
/PHP-5.5/ext/standard/tests/array/
H A Darray_diff_variation8.phpt17 $array = array('a' => '1', 'b' => '2', 'c' => '3');
23 // get a resource variable
26 // get a class
34 // get a heredoc string
75 ["a"]=>
97 ["a"]=>
112 ["a"]=>
131 ["a"]=>
150 ["a"]=>
169 ["a"]=>
[all …]
H A Darray_diff_uassoc_error.phpt6 …Description: Computes the difference of arrays with additional index check which is performed by a
14 $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
15 $array2 = array("a" => "green", "yellow", "red");
16 $array3 = array("a" => "green", "red");
20 function key_compare_func($a, $b)
22 if ($a === $b) {
25 return ($a > $b)? 1:-1;
47 Warning: array_diff_uassoc() expects parameter 4 to be a valid callback, array must have exactly tw…
50 Warning: array_diff_uassoc() expects parameter 6 to be a valid callback, array must have exactly tw…
H A Darray_map_variation7.phpt21 function callback($a, $b)
23 return array($a => $b);
28 var_dump( array_map('callback', array(), array('a', 'b', 'c')) );
29 var_dump( array_map('callback', array(1, 2, 3), array('a', 'b')) );
31 var_dump( array_map('callback', array(), array(1, 2, 3), array('a', 'b')) ); // passing more no. o…
58 string(1) "a"
75 string(1) "a"
H A Darray_key_exists_variation1.phpt24 // get a class
37 // get a resource variable
119 Warning: array_key_exists(): The first argument should be either a string or an integer in %s on li…
124 Warning: array_key_exists(): The first argument should be either a string or an integer in %s on li…
129 Warning: array_key_exists(): The first argument should be either a string or an integer in %s on li…
134 Warning: array_key_exists(): The first argument should be either a string or an integer in %s on li…
139 Warning: array_key_exists(): The first argument should be either a string or an integer in %s on li…
150 Warning: array_key_exists(): The first argument should be either a string or an integer in %s on li…
155 Warning: array_key_exists(): The first argument should be either a string or an integer in %s on li…
160 Warning: array_key_exists(): The first argument should be either a string or an integer in %s on li…
[all …]
/PHP-5.5/ext/pcre/tests/
H A Dpreg_match_all_error1.phpt15 '/[a-zA-Z]', //Regex without closing delimiter
16 '[a-zA-Z]/', //Regex without opening delimiter
17 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
18 '[A-Z]', '[0-9]'), '/[a-zA-Z]/', //Regex string
39 Arg value is /[a-zA-Z]
45 Arg value is [a-zA-Z]/
51 Arg value is /[a-zA-Z]/F
63 Arg value is /[a-zA-Z]/
/PHP-5.5/ext/mysql/tests/
H A D003.phpt27 if (!mysql_query("CREATE TABLE test(a varchar(10))", $link))
36 if (!$res = mysql_query("SELECT a FROM test", $link))
45 if (!$res = mysql_query("SELECT a FROM test", $link))
63 [%u|b%"a"]=>
67 [%u|b%"a"]=>
71 [%u|b%"a"]=>
77 [%u|b%"a"]=>
82 [%u|b%"a"]=>
87 [%u|b%"a"]=>
/PHP-5.5/ext/session/tests/
H A D020.phpt23 <a href="link.php?a=b">
28 <a href="link.php?a=b&amp;PHPSESSID=abtest">
/PHP-5.5/ext/phar/tests/
H A D012.phpt17 $files['a'] = 'a';
22 echo file_get_contents('phar://hio/a');
28 a
/PHP-5.5/ext/phar/tests/cache_list/files/
H A Dfrontcontroller14.phar.inc3 $a = new Phar(dirname(__FILE__) . '/frontcontroller14.phar');
4 $a['html/index.php'] = '<?php
8 $a->setStub('<?php
9 function s($a)
/PHP-5.5/ext/phar/tests/files/
H A Dfrontcontroller14.phar.inc3 $a = new Phar(dirname(__FILE__) . '/frontcontroller14.phar');
4 $a['html/index.php'] = '<?php
8 $a->setStub('<?php
9 function s($a)
/PHP-5.5/ext/spl/tests/
H A DSplObjectStorage_removeAllExcept_basic.phpt8 $a = (object) 'a';
13 $foo->attach($a);
21 var_dump($foo->contains($a));
/PHP-5.5/ext/mbstring/tests/
H A Dmb_ereg-compat-01.phpt11 $a="This is a nice and simple string";
12 if (mb_ereg(".*nice and simple.*",$a)) {
15 if (!mb_ereg(".*doesn't exist.*",$a)) {
/PHP-5.5/Zend/tests/bug67436/
H A Dbug67436_nohandler.phpt11 if (in_array($classname, array('a','b','c'))) {
16 a::staticTest();
22 Strict Standards: Declaration of b::test() should be compatible with a::test($arg = c::TESTCONSTANT…
24 a::test(c::TESTCONSTANT)
/PHP-5.5/Zend/tests/
H A Dget_class_vars_006.phpt7 protected $a = 1;
40 ["a"]=>
44 ["a"]=>
48 ["a"]=>
H A Dns_060.phpt8 $a = new B;
10 echo get_class($a)."\n";
14 $a = new B;
16 echo get_class($a)."\n";
/PHP-5.5/ext/standard/tests/file/
H A Dfscanf_variation54.phpt8 Description: Parses input from a file according to a format
11 /* Test fscanf() to scan a file to read objects */
15 echo "*** Test fscanf(): to read objects from a file ***\n";
17 // declare a class
30 // create a file
68 *** Test fscanf(): to read objects from a file ***
/PHP-5.5/ext/phar/tests/tar/
H A Dphar_copy.phpt24 $p['a'] = 'hi';
26 $p->copy('a', 'b');
33 $p->copy('a', $ename);
43 echo 'a: ' , file_get_contents($p2['a']->getPathName());
53 file "/error/.." contains invalid characters upper directory reference, cannot be copied from "a" i…
56 a: hib: hic: hi===DONE===
/PHP-5.5/ext/mysqli/tests/
H A Dbug52891.phpt84 $result = $link->query("SELECT * FROM tsint ORDER BY a ASC");
120 ["a"]=>
124 ["a"]=>
128 ["a"]=>
132 ["a"]=>
136 ["a"]=>
140 ["a"]=>
145 ["a"]=>
149 ["a"]=>
153 ["a"]=>
[all …]
/PHP-5.5/ext/pdo_mysql/tests/
H A Dbug41125.phpt28 "SELECT 'a\\'0' FROM DUAL WHERE 1 = ?",
29 "SELECT 'a', 'b\'' FROM DUAL WHERE '''' LIKE '\\'' AND ?",
60 "SELECT 'a', 'b\'' FROM DUAL WHERE '''' LIKE '\\'' AND 1",
61 "SELECT 'a''', '\'b\'' FROM DUAL WHERE '''' LIKE '\\'' AND 1",
65 "SELECT 1 FROM DUAL WHERE 'a\\f\\n\\0' AND 1 >= :id",
94 [2] Query: [[SELECT 'a\'0' FROM DUAL WHERE 1 = ?]]
95 a'0
99 a - b'
127 a - b'
131 a' - 'b'
[all …]

Completed in 103 milliseconds

1...<<31323334353637383940>>...253