Home
last modified time | relevance | path

Searched refs:v (Results 676 – 700 of 739) sorted by relevance

1...<<21222324252627282930

/php-src/sapi/apache2handler/
H A Dconfig.m460 ac_output=$($APXS_HTTPD -v 2>&1 | grep version | $SED -e 's/Oracle-HTTP-//')
/php-src/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c1606 int64_t v = in php_mysqlnd_rowp_read_text_protocol() local
1612 ZVAL_LONG(current_field, (zend_long) v); /* the cast is safe */ in php_mysqlnd_rowp_read_text_protocol()
1614 uint64_t v = in php_mysqlnd_rowp_read_text_protocol() local
1623 if (uns == TRUE && v > 9223372036854775807L) in php_mysqlnd_rowp_read_text_protocol()
1625 if ((uns == TRUE && v > L64(2147483647)) || in php_mysqlnd_rowp_read_text_protocol()
1626 (uns == FALSE && (( L64(2147483647) < (int64_t) v) || in php_mysqlnd_rowp_read_text_protocol()
1627 (L64(-2147483648) > (int64_t) v)))) in php_mysqlnd_rowp_read_text_protocol()
1634 ZVAL_LONG(current_field, (zend_long) v); /* the cast is safe */ in php_mysqlnd_rowp_read_text_protocol()
H A Dmysqlnd_portability.h149 double v; member
/php-src/sapi/fpm/fpm/
H A Dfpm_main.c179 #define CGIG(v) ZEND_TSRMG(php_cgi_globals_id, php_cgi_globals_struct *, v) argument
182 #define CGIG(v) (php_cgi_globals.v) argument
/php-src/ext/fileinfo/
H A Dlibmagic.patch866 v->magic = &ma[i];
867 - v->magic_rxcomp = &(ml->magic_rxcomp[i]);
3194 uint64_t v;
3198 v = 0;
3224 v = 1;
3282 - v = 0;
3286 - v = 1;
3291 + l = v = 0;
3307 + /* match v = 0, no match v = 1 */
3334 + v = 0;
[all …]
/php-src/Zend/
H A Dzend_strtod.c617 (v) Bigint *v; in Bfree() argument
619 (Bigint *v)
622 if (v) {
623 if (v->k > Kmax)
624 FREE((void*)v);
627 v->next = freelist[v->k];
628 freelist[v->k] = v;
H A Dzend_gc.c291 #define GC_G(v) ZEND_TSRMG_FAST(gc_globals_offset, zend_gc_globals *, v) argument
293 #define GC_G(v) (gc_globals.v) argument
/php-src/ext/standard/
H A Dbrowscap.c60 #define BROWSCAP_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(browscap, v) argument
/php-src/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]);
/php-src/ext/phar/phar/
H A Dpharcommand.inc1592 foreach($version as $k => $v)
1597 foreach($version as $k => $v) {
1598 if (is_bool($v)) {
1599 $v = $v ? 'enabled' : 'disabled';
1601 printf("%-{$klen}s %s\n", $k.':', $v);
/php-src/ext/opcache/
H A Dzend_persist.c279 zval *v; in zend_persist_attributes() local
293 ZEND_HASH_PACKED_FOREACH_VAL(attributes, v) { in zend_persist_attributes()
294 zend_attribute *attr = Z_PTR_P(v); in zend_persist_attributes()
307 ZVAL_PTR(v, copy); in zend_persist_attributes()
/php-src/build/
H A Dlibtool.m41978 ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
2306 # but apparently some variants of GNU ld only accept -v.
2308 case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
2339 case `$LD -v 2>&1 </dev/null` in
2726 ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
3677 if $CC --version | grep -v '^2\.7' > /dev/null; then
5417 case `$LD -v 2>/dev/null` in
5559 if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
5580 case `$LD -v 2>&1` in
6225 compiler_flags=-v
[all …]
H A Dconfig.sub861 i*86v)
1600 sco*v* | scout)
2155 sco3.2v2 | sco3.2v[4-9]* | sco5v6*)
/php-src/ext/ldap/
H A Dldap.c67 void ldap_memvfree(void **v) in ldap_memvfree() argument
69 ldap_value_free((char **)v); in ldap_memvfree()
3775 unsigned char v = (unsigned char) value[i]; in php_ldap_do_escape() local
3777 if (map[v] || ((flags & PHP_LDAP_ESCAPE_DN) && ((i == 0) || (i + 1 == valuelen)) && (v == ' '))) { in php_ldap_do_escape()
3779 ZSTR_VAL(ret)[p++] = hex[v >> 4]; in php_ldap_do_escape()
3780 ZSTR_VAL(ret)[p++] = hex[v & 0x0f]; in php_ldap_do_escape()
3782 ZSTR_VAL(ret)[p++] = v; in php_ldap_do_escape()
/php-src/sapi/cgi/
H A Dcgi_main.c206 #define CGIG(v) ZEND_TSRMG(php_cgi_globals_id, php_cgi_globals_struct *, v) argument
212 #define CGIG(v) (php_cgi_globals.v)
/php-src/docs/
H A Drelease-process.md214 || ./sapi/cli/php -v
222 || ./sapi/cli/php -v
225 6. After each build, check the output of `./sapi/cli/php -v` to ensure the
529 || ./sapi/cli/php -v
537 || ./sapi/cli/php -v
540 7. After each build, check the output of `./sapi/cli/php -v` to ensure the
691 ./bin/createReleaseEntry -v X.Y.Z -r # --security for security releases
828 * Call `php bin/createReleaseEntry -v <version> [ --security ]` in your
/php-src/ext/fileinfo/libmagic/
H A Dcdf.c1237 uint32_t v; member
1268 if (vn[i].v == p) in cdf_print_property_name()
1367 cdf_dump(const void *v, size_t len) in cdf_dump() argument
1370 const unsigned char *p = v; in cdf_dump()
/php-src/ext/phar/tests/files/
H A Dopenssl.phar295 )$��A]-��I���3hY�0� �G4p[�%DԾ�h� ���M����v�Hx�_G��iű��f�B���x��J�'/����P��¼.��.O�%�5px(�fo��…
H A Dopenssl256.phar296 x�aH��B���uDp2/�U�v��p~�F��ƺ���KM3��~�jqUw�ɣ9�F������".� ��';%y�C`(V�������GBMB
/php-src/ext/phar/tests/cache_list/files/
H A Dopenssl.phar295 )$��A]-��I���3hY�0� �G4p[�%DԾ�h� ���M����v�Hx�_G��iű��f�B���x��J�'/����P��¼.��.O�%�5px(�fo��…
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitNativeX86_64.c288 sljit_s32 a, sljit_s32 v, in emit_vex_instruction() argument
326 vex = U8(vex | ((((op & VEX_SSE2_OPV) ? freg_map[v] : reg_map[v]) ^ 0xf) << 3)); in emit_vex_instruction()
/php-src/win32/build/
H A Dphpize.js.in194 STDOUT.WriteLine("Usage: phpize [--clean|--help|--version|-v]");

Completed in 144 milliseconds

1...<<21222324252627282930