Home
last modified time | relevance | path

Searched refs:v (Results 551 – 575 of 604) sorted by relevance

1...<<2122232425

/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_main.c199 #define CGIG(v) TSRMG(php_cgi_globals_id, php_cgi_globals_struct *, v) argument
202 #define CGIG(v) (php_cgi_globals.v) argument
/PHP-5.5/Zend/
H A Dzend_strtod.c503 static void Bfree(Bigint *v) in Bfree() argument
505 if (v) { in Bfree()
507 v->next = freelist[v->k]; in Bfree()
508 freelist[v->k] = v; in Bfree()
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput14305 /\v/SI
317 /[\v]/BZ
H A Dtestoutput5740 /\H\h\V\v/8
750 /\H*\h+\V?\v{3,4}/8
762 /\H\h\V\v/8
772 /\H*\h+\V?\v{3,4}/8
804 /[\v]/8BZ
1638 /\v+/8
1644 /[\v\x{e000}]+/8BZ
H A Dtestoutput15488 Z [ \ ] ^ _ ` c d e f g h i j k l m n o p q r s t u v w x y z { | } ~ \x7f
822 /\v/SI8
852 /\v+A/SI8
890 i j k l m n o p q r s t u v w x y z { | } ~ \x7f \xc0 \xc1 \xc2 \xc3 \xc4
H A Dtestoutput91053 /\h+\V?\v{3,4}/8O
1058 /\V?\v{3,4}/8O
1063 /\h+\V?\v{3,4}/8O
1067 /\V?\v{3,4}/8O
1071 /\H\h\V\v/8
1081 /\H*\h+\V?\v{3,4}/8O
1095 /\H\h\V\v/8
1105 /\H*\h+\V?\v{3,4}/8O
/PHP-5.5/ext/curl/
H A Dinterface.c157 #define CAAL(s, v) add_assoc_long_ex(return_value, s, sizeof(s), (long) v); argument
158 #define CAAD(s, v) add_assoc_double_ex(return_value, s, sizeof(s), (double) v); argument
159 #define CAAS(s, v) add_assoc_string_ex(return_value, s, sizeof(s), (char *) (v ? v : ""), 1); argument
160 #define CAAZ(s, v) add_assoc_zval_ex(return_value, s, sizeof(s), (zval *) v); argument
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch486 - v = (char) v;
487 + v = (signed char) v;
2585 FILE_RCSID("@(#)$File: print.c,v 1.76 2013/02/26 18:25:00 christos Exp $")
3386 - v = (uint64_t)-1;
3410 - v = 0;
3428 + l = v = 0;
3445 + /* match v = 0, no match v = 1 */
3534 + v = 0;
3551 v = 1;
3558 - v = (uint64_t)-1;
[all …]
/PHP-5.5/ext/fileinfo/libmagic/
H A Dcdf.c996 uint32_t v; member
1027 if (vn[i].v == p) in cdf_print_property_name()
1117 cdf_dump(void *v, size_t len) in cdf_dump() argument
1120 unsigned char *p = v; in cdf_dump()
/PHP-5.5/ext/standard/tests/strings/
H A Dhtml_entity_decode_macroman.phpt140 foreach ($arr as $u => $v) {
144 echo sprintf("%s: %s => %s\n", $v[1], $ent, $d[1]);
146 $ent = sprintf("&#x%X;", $v[0]);
H A Dhtml_entity_decode_win1251.phpt140 foreach ($arr as $u => $v) {
144 echo sprintf("%s: %s => %s\n", $v[1], $ent, $d[1]);
146 $ent = sprintf("&#x%X;", $v[0]);
H A Dhtml_entity_decode_cp866.phpt136 foreach ($arr as $u => $v) {
140 echo sprintf("%s: %s => %s\n", $v[1], $ent, $d[1]);
142 $ent = sprintf("&#x%X;", $v[0]);
H A Dhtml_entity_decode_koi8-r.phpt136 foreach ($arr as $u => $v) {
140 echo sprintf("%s: %s => %s\n", $v[1], $ent, $d[1]);
142 $ent = sprintf("&#x%X;", $v[0]);
H A Durl_t.phpt83 …L_HOST,PHP_URL_PORT,PHP_URL_USER,PHP_URL_PASS,PHP_URL_PATH,PHP_URL_QUERY,PHP_URL_FRAGMENT) as $v) {
84 var_dump(parse_url($url, $v));
/PHP-5.5/ext/phar/phar/
H A Dpharcommand.inc1580 foreach($version as $k => $v)
1585 foreach($version as $k => $v) {
1586 if (is_bool($v)) {
1587 $v = $v ? 'enabled' : 'disabled';
1589 printf("%-${klen}s %s\n", $k.':', $v);
/PHP-5.5/ext/openssl/
H A Dopenssl.c2221 CONF_VALUE * v; in php_openssl_make_REQ() local
2265 v = sk_CONF_VALUE_value(dn_sk, i); in php_openssl_make_REQ()
2266 type = v->name; in php_openssl_make_REQ()
2299 … if (!X509_NAME_add_entry_by_txt(subj, type, MBSTRING_UTF8, (unsigned char*)v->value, -1, -1, 0)) { in php_openssl_make_REQ()
2300 … php_error_docref(NULL TSRMLS_CC, E_WARNING, "add_entry_by_txt %s -> %s (failed)", type, v->value); in php_openssl_make_REQ()
2334 v = sk_CONF_VALUE_value(attr_sk, i); in php_openssl_make_REQ()
2336 nid = OBJ_txt2nid(v->name); in php_openssl_make_REQ()
2340 if (!X509_REQ_add1_attr_by_txt(csr, v->name, MBSTRING_UTF8, (unsigned char*)v->value, -1)) { in php_openssl_make_REQ()
2345 v->name, v->value); in php_openssl_make_REQ()
/PHP-5.5/build/
H A Dlibtool.m41971 ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
2299 # but apparently some variants of GNU ld only accept -v.
2301 case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
2332 case `$LD -v 2>&1 </dev/null` in
2719 ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
3672 if $CC --version | grep -v '^2\.7' > /dev/null; then
5412 case `$LD -v 2>/dev/null` in
5554 if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
5575 case `$LD -v 2>&1` in
6220 compiler_flags=-v
[all …]
/PHP-5.5/ext/opcache/
H A DZendAccelerator.c116 # define INCREMENT(v) InterlockedIncrement(&ZCSG(v)) argument
117 # define DECREMENT(v) InterlockedDecrement(&ZCSG(v)) argument
118 # define LOCKVAL(v) (ZCSG(v)) argument
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c199 #define CGIG(v) TSRMG(php_cgi_globals_id, php_cgi_globals_struct *, v) argument
202 #define CGIG(v) (php_cgi_globals.v) argument
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_portability.h339 double v; member
/PHP-5.5/
H A D.gdbinit35 set $v = $eg.current_execute_data.op_array.vars
40 printf "%d = %s\n", $i, $v[$i].name
H A Dconfig.sub203 -sco3.2v[4-9]*)
H A DREADME.RELEASE_PROCESS75 7. Check ./sapi/cli/php -v output for version matching.
168 6. Check ./sapi/cli/php -v output for version matching.
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregcomp.c1964 int v; in quantifiers_memory_node_info() local
1966 v = quantifiers_memory_node_info(NCAR(node)); in quantifiers_memory_node_info()
1967 if (v > r) r = v; in quantifiers_memory_node_info()
1968 } while (v >= 0 && IS_NOT_NULL(node = NCDR(node))); in quantifiers_memory_node_info()
2480 int v; in is_not_included() local
2484 v = BITSET_AT(xc->bs, i); in is_not_included()
2485 if ((v != 0 && !IS_NCCLASS_NOT(xc)) || in is_not_included()
2486 (v == 0 && IS_NCCLASS_NOT(xc))) { in is_not_included()
2487 v = BITSET_AT(yc->bs, i); in is_not_included()
2488 if ((v != 0 && !IS_NCCLASS_NOT(yc)) || in is_not_included()
[all …]
/PHP-5.5/win32/build/
H A Dphpize.js.in198 STDOUT.WriteLine("Usage: phpize [--clean|--help|--version|-v]");

Completed in 165 milliseconds

1...<<2122232425