Home
last modified time | relevance | path

Searched refs:v (Results 1 – 25 of 721) sorted by last modified time

12345678910>>...29

/php-src/ext/openssl/
H A Dopenssl.c2918 CONF_VALUE *v; in php_openssl_csr_make() local
2949 v = sk_CONF_VALUE_value(dn_sk, i); in php_openssl_csr_make()
2950 type = v->name; in php_openssl_csr_make()
2983 … if (!X509_NAME_add_entry_by_txt(subj, type, MBSTRING_UTF8, (unsigned char*)v->value, -1, -1, 0)) { in php_openssl_csr_make()
2985 php_error_docref(NULL, E_WARNING, "add_entry_by_txt %s -> %s (failed)", type, v->value); in php_openssl_csr_make()
3020 v = sk_CONF_VALUE_value(attr_sk, i); in php_openssl_csr_make()
3022 nid = OBJ_txt2nid(v->name); in php_openssl_csr_make()
3026 if (!X509_REQ_add1_attr_by_txt(csr, v->name, MBSTRING_UTF8, (unsigned char*)v->value, -1)) { in php_openssl_csr_make()
3032 v->name, v->value); in php_openssl_csr_make()
/php-src/ext/odbc/
H A Dphp_odbc_includes.h290 #define ODBCG(v) ZEND_MODULE_GLOBALS_ACCESSOR(odbc, v) argument
H A Dconfig.m418 if ldd -v /bin/sh | grep GLIBC > /dev/null; then
/php-src/ext/opcache/jit/ir/
H A Dir_x86.dasc46 mem.v =
1854 /* v = AND(_, _); CMP(v, 0) => SKIP_TEST; TEST */
1862 /* v = BINOP(_, _); CMP(v, 0) => BINOP; SETCC */
2404 /* l = LOAD(_, a) ... v = OP(l) ... STORE(l, a, v) => SKIP ... SKIP ... MEM_OP */
2521 /* v = BINOP(_, _); c = CMP(v, 0) ... IF(c) => BINOP; SKIP_CMP ... JCC */
2565 /* v = BINOP(_, _); IF(v) => BINOP; JCC */
2597 /* v = MEM_BINOP(_, _); IF(v) => MEM_BINOP; JCC */
2610 /* v = MEM_BINOP(_, _); IF(v) => MEM_BINOP; JCC */
2694 /* v = MEM_BINOP(_, _); IF(v) => MEM_BINOP; GUARD_JCC */
2708 /* v = MEM_BINOP(_, _); IF(v) => MEM_BINOP; JCC */
[all …]
H A Dir_sccp.c142 v = &_values[input]; in ir_sccp_meet_phi()
143 if (v->op == IR_TOP) { in ir_sccp_meet_phi()
145 if (!v->op1) { in ir_sccp_meet_phi()
146 v->op1 = 1; in ir_sccp_meet_phi()
152 input = v->op1; in ir_sccp_meet_phi()
167 new_const = v; in ir_sccp_meet_phi()
190 v = &_values[input]; in ir_sccp_meet_phi()
191 if (v->op == IR_TOP) { in ir_sccp_meet_phi()
193 if (!v->op1) { in ir_sccp_meet_phi()
194 v->op1 = 1; in ir_sccp_meet_phi()
[all …]
H A Dir_private.h866 IR_ALWAYS_INLINE bool ir_const_is_true(const ir_insn *v) in ir_const_is_true() argument
868 if (IR_IS_SYM_CONST(v->op)) { in ir_const_is_true()
870 } else if (v->type == IR_BOOL) { in ir_const_is_true()
871 return v->val.b; in ir_const_is_true()
872 } else if (IR_IS_TYPE_INT(v->type)) { in ir_const_is_true()
873 return v->val.i64 != 0; in ir_const_is_true()
874 } else if (v->type == IR_DOUBLE) { in ir_const_is_true()
875 return v->val.d != 0.0; in ir_const_is_true()
877 IR_ASSERT(v->type == IR_FLOAT); in ir_const_is_true()
878 return v->val.f != 0.0; in ir_const_is_true()
H A Dir_aarch64.dasc17 typedef struct _ir_mem {uint64_t v;} ir_mem;
19 # define IR_MEM_VAL(loc) ((loc).v)
43 mem.v =
1126 static ir_mem ir_vreg_spill_slot(ir_ctx *ctx, ir_ref v)
1131 IR_ASSERT(v > 0 && v <= ctx->vregs_count && ctx->live_intervals[v]);
1132 offset = ctx->live_intervals[v]->stack_spill_pos;
1134 if (ctx->live_intervals[v]->flags & IR_LIVE_INTERVAL_SPILL_SPECIAL) {
H A Dir_ra.c97 uint32_t v = 0; in ir_assign_virtual_registers() local
107 vregs[i] = v; in ir_assign_virtual_registers()
125 ival->vreg = v; in ir_new_live_range()
548 if (v) { in ir_add_fusion_ranges()
754 if (v) { in ir_compute_live_ranges()
824 if (v) { in ir_compute_live_ranges()
992 if (v) { in ir_compute_live_sets()
1206 if (v) { in ir_add_fusion_ranges()
1372 if (v) { in ir_compute_live_ranges()
3456 uint32_t v; in ir_assign_bound_spill_slots() local
[all …]
H A Dir.h220 _(NOP, v, ___, ___, ___) /* empty instruction */ \
/php-src/ext/mbstring/
H A Dmbstring.c1749 static inline uint32_t _mm_sum_epu8(const __m128i v) in _mm_sum_epu8() argument
1757 __m128i vsum = _mm_sad_epu8(v, _mm_setzero_si128()); in _mm_sum_epu8()
/php-src/Zend/
H A Dzend_alloc.c2434 # define AG(v) ZEND_TSRMG_FAST(alloc_globals_offset, zend_alloc_globals *, v) argument
2436 # define AG(v) (alloc_globals.v) argument
H A Dzend_strtod.c621 (v) Bigint *v; in Bfree() argument
623 (Bigint *v)
626 if (v) {
627 if (v->k > Kmax)
628 FREE((void*)v);
631 v->next = freelist[v->k];
632 freelist[v->k] = v;
/php-src/ext/dom/lexbor/lexbor/core/
H A Ddiyfp.h132 lexbor_diyfp_2d(lexbor_diyfp_t v) in lexbor_diyfp_2d() argument
143 exp = v.exp; in lexbor_diyfp_2d()
144 significand = v.significand; in lexbor_diyfp_2d()
182 lexbor_diyfp_shift_left(lexbor_diyfp_t v, unsigned shift) in lexbor_diyfp_shift_left() argument
184 return lexbor_diyfp(v.significand << shift, v.exp - shift); in lexbor_diyfp_shift_left()
188 lexbor_diyfp_shift_right(lexbor_diyfp_t v, unsigned shift) in lexbor_diyfp_shift_right() argument
190 return lexbor_diyfp(v.significand >> shift, v.exp + shift); in lexbor_diyfp_shift_right()
247 lexbor_diyfp_normalize(lexbor_diyfp_t v) in lexbor_diyfp_normalize() argument
249 return lexbor_diyfp_shift_left(v, in lexbor_diyfp_normalize()
250 (unsigned) lexbor_diyfp_leading_zeros64(v.significand)); in lexbor_diyfp_normalize()
H A Ddtoa.c182 lexbor_diyfp_normalize_boundary(lexbor_diyfp_t v) in lexbor_diyfp_normalize_boundary() argument
184 while ((v.significand & (LEXBOR_DBL_HIDDEN_BIT << 1)) == 0) { in lexbor_diyfp_normalize_boundary()
185 v.significand <<= 1; in lexbor_diyfp_normalize_boundary()
186 v.exp--; in lexbor_diyfp_normalize_boundary()
201 if (v.significand == LEXBOR_DBL_HIDDEN_BIT) { in lexbor_diyfp_normalize_boundaries()
202 mi = lexbor_diyfp((v.significand << 2) - 1, v.exp - 2); in lexbor_diyfp_normalize_boundaries()
205 mi = lexbor_diyfp((v.significand << 1) - 1, v.exp - 1); in lexbor_diyfp_normalize_boundaries()
218 lexbor_diyfp_t v, w_m, w_p, c_mk, W, Wp, Wm; in lexbor_grisu2() local
220 v = lexbor_diyfp_from_d2(value); in lexbor_grisu2()
222 lexbor_diyfp_normalize_boundaries(v, &w_m, &w_p); in lexbor_grisu2()
[all …]
/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 Dphp.m41785 php_version=$($PHP -v | head -n1 | cut -d ' ' -f 2 | cut -d '-' -f 1)
1985 ac_output=`$1 -v 2>&1 | grep version | $SED -e 's/Oracle-HTTP-//'`
/php-src/.github/workflows/
H A Dnightly.yml411 php -v
/php-src/docs/
H A Drelease-process.md215 || ./sapi/cli/php -v
223 || ./sapi/cli/php -v
226 6. After each build, check the output of `./sapi/cli/php -v` to ensure the
519 || ./sapi/cli/php -v
527 || ./sapi/cli/php -v
530 7. After each build, check the output of `./sapi/cli/php -v` to ensure the
681 ./bin/createReleaseEntry -v X.Y.Z -r # --security for security releases
818 * Call `php bin/createReleaseEntry -v <version> [ --security ]` in your
/php-src/ext/reflection/
H A Dphp_reflection.c61 #define REFLECTION_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(reflection, v) in ZEND_DECLARE_MODULE_GLOBALS() argument
/php-src/main/
H A Dphp_output.h151 # define OG(v) ZEND_TSRMG(output_globals_id, zend_output_globals *, v) argument
153 # define OG(v) (output_globals.v)
/php-src/
H A Dconfigure.ac258 if command -v ldd >/dev/null && ldd --version 2>&1 | grep -q ^musl
/php-src/Zend/Optimizer/
H A Dzend_inference.c4444 int i, v; in zend_type_narrowing() local
4454 for (v = op_array->last_var; v < ssa->vars_count; v++) { in zend_type_narrowing()
4455 if ((ssa->var_info[v].type & (MAY_BE_REF | MAY_BE_ANY | MAY_BE_UNDEF)) != MAY_BE_LONG) continue; in zend_type_narrowing()
4456 if (ssa->vars[v].definition < 0) continue; in zend_type_narrowing()
4457 if (ssa->vars[v].no_val) continue; in zend_type_narrowing()
4458 opline = op_array->opcodes + ssa->vars[v].definition; in zend_type_narrowing()
4466 if (can_convert_to_double(op_array, ssa, v, value, visited)) { in zend_type_narrowing()
4468 ssa->var_info[v].use_as_double = 1; in zend_type_narrowing()
/php-src/scripts/dev/
H A Dbless_tests.php183 $v = [1 => 0];
186 $trace[] = $v;
188 if ($k === -$d || ($k !== $d && $v[$k-1] < $v[$k+1])) {
189 $x = $v[$k+1];
191 $x = $v[$k-1] + 1;
200 $v[$k] = $x;
212 $v = $trace[$d];
215 if ($k === -$d || ($k !== $d && $v[$k-1] < $v[$k+1])) {
221 $prevX = $v[$prevK];
/php-src/ext/standard/tests/array/
H A Darray_walk_closure.phpt80 var_dump(array_walk($ar, function($v, $k) { if ($v == 2) throw new Exception; } ));
244 ["$v"]=>
/php-src/Zend/tests/
H A Dclosure_038.phpt9 public function __construct($v) {
10 $this->x = $v;
19 public function __construct($v) {
20 parent::__construct($v);
21 $this->x = $v*2;

Completed in 177 milliseconds

12345678910>>...29