Home
last modified time | relevance | path

Searched refs:u (Results 76 – 100 of 407) sorted by relevance

12345678910>>...17

/PHP-5.4/ext/mbstring/oniguruma/
H A Dregparse.h51 #define NCONS(node) ((node)->u.cons)
52 #define NSTRING(node) ((node)->u.str)
53 #define NCCLASS(node) ((node)->u.cclass)
54 #define NCTYPE(node) ((node)->u.ctype)
55 #define NQUANTIFIER(node) ((node)->u.quantifier)
56 #define NANCHOR(node) ((node)->u.anchor)
57 #define NBACKREF(node) ((node)->u.backref)
58 #define NEFFECT(node) ((node)->u.effect)
59 #define NCALL(node) ((node)->u.call)
85 #define NSTRING_LEN(node) ((node)->u.str.end - (node)->u.str.s)
[all …]
/PHP-5.4/ext/mysqli/tests/
H A Dmysqli_get_client_stats.phpt962 [%u|b%"bytes_sent"]=>
1068 [%u|b%"reconnect"]=>
1220 [%u|b%"com_quit"]=>
1222 [%u|b%"com_init_db"]=>
1224 [%u|b%"com_query"]=>
1230 [%u|b%"com_drop_db"]=>
1232 [%u|b%"com_refresh"]=>
1244 [%u|b%"com_debug"]=>
1246 [%u|b%"com_ping"]=>
1248 [%u|b%"com_time"]=>
[all …]
H A Dmysqli_fetch_field_direct_oo.phpt60 [%u|b%"name"]=>
62 [%u|b%"orgname"]=>
64 [%u|b%"table"]=>
66 [%u|b%"orgtable"]=>
68 [%u|b%"def"]=>
70 [%u|b%"db"]=>
72 [%u|b%"catalog"]=>
76 [%u|b%"length"]=>
80 [%u|b%"flags"]=>
82 [%u|b%"type"]=>
[all …]
H A D057.phpt80 [%u|b%"affected_rows"]=>
82 [%u|b%"insert_id"]=>
84 [%u|b%"num_rows"]=>
86 [%u|b%"param_count"]=>
88 [%u|b%"field_count"]=>
90 [%u|b%"errno"]=>
92 [%u|b%"error"]=>
94 [%u|b%"error_list"]=>
97 [%u|b%"sqlstate"]=>
99 [%u|b%"id"]=>
/PHP-5.4/tests/basic/
H A Drfc1867_missing_boundary_2.phpt22 [%u|b%"file1"]=>
24 [%u|b%"name"]=>
26 [%u|b%"type"]=>
28 [%u|b%"tmp_name"]=>
30 [%u|b%"error"]=>
32 [%u|b%"size"]=>
H A Dbug55500.phpt38 [%u|b%"file"]=>
40 [%u|b%"name"]=>
45 [%u|b%"type"]=>
50 [%u|b%"tmp_name"]=>
55 [%u|b%"error"]=>
60 [%u|b%"size"]=>
/PHP-5.4/ext/mysql/tests/
H A Dmysql_fetch_assoc.phpt68 [%u|b%"id"]=>
70 [%u|b%"label"]=>
77 [%u|b%"a"]=>
79 [%u|b%"c"]=>
81 [%u|b%"C"]=>
83 [%u|b%"d"]=>
85 [%u|b%"e"]=>
92 [%u|b%"id"]=>
94 [%u|b%"label"]=>
96 [%u|b%"_id"]=>
[all …]
/PHP-5.4/ext/spl/tests/
H A Dspl_heap_iteration_error.phpt34 [%u|b%"fail"]=>
36 [%u|b%"flags":%u|b%"SplHeap":private]=>
38 [%u|b%"isCorrupted":%u|b%"SplHeap":private]=>
40 [%u|b%"heap":%u|b%"SplHeap":private]=>
/PHP-5.4/ext/standard/tests/strings/
H A Dvsprintf_basic7.phpt18 $format1 = "%u";
19 $format2 = "%u %u";
20 $format3 = "%u %u %u";
H A Dvsprintf_basic7_64bit.phpt18 $format1 = "%u";
19 $format2 = "%u %u";
20 $format3 = "%u %u %u";
H A Dvprintf_basic7.phpt18 $format1 = "%u";
19 $format2 = "%u %u";
20 $format3 = "%u %u %u";
H A Dvprintf_basic7_64bit.phpt18 $format1 = "%u";
19 $format2 = "%u %u";
20 $format3 = "%u %u %u";
H A Dsprintf_basic7_64bit.phpt17 $format1 = "%u";
18 $format2 = "%u %u";
19 $format3 = "%u %u %u";
H A Dsprintf_basic7.phpt21 $format1 = "%u";
22 $format2 = "%u %u";
23 $format3 = "%u %u %u";
H A Dbug26973.phpt10 printf("%+05u\n", 200);
11 printf("%+05u\n", -200);
17 printf("%05u\n", 200);
18 printf("%05u\n", -200);
H A Dvfprintf_basic7.phpt18 $format1 = "%u";
19 $format2 = "%u %u";
20 $format3 = "%u %u %u";
H A Dvfprintf_basic7_64bit.phpt18 $format1 = "%u";
19 $format2 = "%u %u";
20 $format3 = "%u %u %u";
/PHP-5.4/ext/pcre/tests/
H A Dbug42298.phpt2 Bug #42298 (pcre gives bogus results with /u)
6 preg_match_all('/\S\S/u', $str, $m); var_dump($m);
7 preg_match_all('/\S{2}/u', $str, $m); var_dump($m);
10 preg_match_all('/\W\W/u', $str, $m); var_dump($m);
11 preg_match_all('/\W{2}/u', $str, $m); var_dump($m);
/PHP-5.4/ext/standard/
H A Drand.c144 #define hiBit(u) ((u) & 0x80000000U) /* mask all but highest bit of u */ argument
145 #define loBit(u) ((u) & 0x00000001U) /* mask all but lowest bit of u */ argument
146 #define loBits(u) ((u) & 0x7FFFFFFFU) /* mask the highest bit of u */ argument
147 #define mixBits(u, v) (hiBit(u)|loBits(v)) /* move hi bit of u to hi bit of v */ argument
149 #define twist(m,u,v) (m ^ (mixBits(u,v)>>1) ^ ((php_uint32)(-(php_int32)(loBit(u))) & 0x9908b0dfU)) argument
/PHP-5.4/Zend/
H A Dzend_compile.c44 target = (src)->u.op; \
53 (target)->u.op = src; \
2065 …memmove(Z_STRVAL(element_name->u.constant), Z_STRVAL(element_name->u.constant)+1, Z_STRLEN(element… in zend_resolve_non_class_name()
2121 …memmove(Z_STRVAL(class_name->u.constant), Z_STRVAL(class_name->u.constant)+1, Z_STRLEN(class_name-… in zend_resolve_class_name()
2141 …memmove(Z_STRVAL(class_name->u.constant), Z_STRVAL(class_name->u.constant)+len, Z_STRLEN(class_nam… in zend_resolve_class_name()
2355 …memcpy(&result->u.constant.value.str.val[result->u.constant.value.str.len + sizeof("::")-1], name-… in zend_do_build_full_name()
2362 …memcpy(&result->u.constant.value.str.val[result->u.constant.value.str.len + sizeof("\\")-1], name-… in zend_do_build_full_name()
5579 …Z_STRVAL(offset->u.constant) = erealloc(Z_STRVAL(offset->u.constant), Z_STRLEN(offset->u.constant)… in zend_do_add_static_array_element()
5580 Z_STRVAL(offset->u.constant)[Z_STRLEN(offset->u.constant)+1] = Z_TYPE(offset->u.constant); in zend_do_add_static_array_element()
5581 Z_STRVAL(offset->u.constant)[Z_STRLEN(offset->u.constant)+2] = 0; in zend_do_add_static_array_element()
[all …]
/PHP-5.4/ext/oci8/tests/
H A Dcommit_001.phpt84 [%u|b%"ID"]=>
87 [%u|b%"VALUE"]=>
90 [%u|b%"BLOB"]=>
93 [%u|b%"CLOB"]=>
96 [%u|b%"STRING"]=>
103 [%u|b%"ID"]=>
114 [%u|b%"VALUE"]=>
125 [%u|b%"BLOB"]=>
136 [%u|b%"CLOB"]=>
147 [%u|b%"STRING"]=>
H A Dextauth_01.phpt146 [%u|b%"code"]=>
148 [%u|b%"message"]=>
150 [%u|b%"offset"]=>
152 [%u|b%"sqltext"]=>
160 [%u|b%"code"]=>
162 [%u|b%"message"]=>
164 [%u|b%"offset"]=>
174 [%u|b%"code"]=>
178 [%u|b%"offset"]=>
188 [%u|b%"code"]=>
[all …]
H A Dextauth_02.phpt145 [%u|b%"code"]=>
147 [%u|b%"message"]=>
149 [%u|b%"offset"]=>
151 [%u|b%"sqltext"]=>
159 [%u|b%"code"]=>
161 [%u|b%"message"]=>
163 [%u|b%"offset"]=>
173 [%u|b%"code"]=>
177 [%u|b%"offset"]=>
187 [%u|b%"code"]=>
[all …]
H A Dextauth_03.phpt145 [%u|b%"code"]=>
147 [%u|b%"message"]=>
149 [%u|b%"offset"]=>
151 [%u|b%"sqltext"]=>
159 [%u|b%"code"]=>
161 [%u|b%"message"]=>
163 [%u|b%"offset"]=>
173 [%u|b%"code"]=>
177 [%u|b%"offset"]=>
187 [%u|b%"code"]=>
[all …]
/PHP-5.4/tests/classes/
H A Dinheritance_006.phpt20 [%u|b%"c":%u|b%"B":private]=>
22 [%u|b%"c":%u|b%"A":private]=>

Completed in 85 milliseconds

12345678910>>...17