Home
last modified time | relevance | path

Searched refs:max (Results 226 – 250 of 257) sorted by relevance

1234567891011

/PHP-8.2/Zend/Optimizer/
H A Dzend_ssa.c132 zend_ssa_phi *phi, int min_var, int max_var, zend_long min, zend_long max, in pi_range() argument
141 constraint->range.max = max; in pi_range()
H A Dsccp.c1814 && info->range.min == info->range.max) { in value_from_type_and_range()
/PHP-8.2/ext/opcache/jit/ir/
H A Dir_aarch64.dasc4250 ir_val min, max;
4256 max.u64 = 0x8000000000000000;
4259 max.u64 = 0x0;
4273 max.i64 = IR_MAX(max.i64, val->val.i64);
4277 max.u64 = (int64_t)IR_MAX(max.u64, val->val.u64);
4299 if ((max.i64-min.i64) < count * 8) {
4302 for (i = 0; i <= (max.i64 - min.i64); i++) {
4317 if (aarch64_may_encode_imm12(max.i64)) {
4318 | ASM_REG_IMM_OP cmp, type, op2_reg, max.i64
4320 ir_emit_load_imm_int(ctx, type, tmp_reg, max.i64);
[all …]
H A Dir_x86.dasc7269 ir_val min, max;
7279 max.u64 = 0x8000000000000000;
7282 max.u64 = 0x0;
7296 max.i64 = IR_MAX(max.i64, val->val.i64);
7300 max.u64 = (int64_t)IR_MAX(max.u64, val->val.u64);
7321 if ((max.i64-min.i64) < count * 8) {
7324 for (i = 0; i <= (max.i64 - min.i64); i++) {
7339 if (IR_IS_32BIT(type, max)) {
7340 | ASM_REG_IMM_OP cmp, type, op2_reg, max.i32
7345 | mov64 Rq(tmp_reg), max.i64
[all …]
/PHP-8.2/ext/standard/tests/strings/
H A Dstrspn_variation11.phpt54 2147483647, // max positive integer
H A Dstrcspn_variation11.phpt54 2147483647, // max positive integer
H A Dstrspn_variation12.phpt44 2147483647, // max positive integer
54 2147483647, // max positive integer
/PHP-8.2/ext/mbstring/tests/
H A Dmb_strimwidth.phpt91 // With max width of 100, trim marker will not be added
/PHP-8.2/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c2711 int max = (int)GET2(ecode, 1 + IMM2_SIZE); in internal_dfa_match() local
2719 if (++count >= max && max != 0) /* Max 0 => no limit */ in internal_dfa_match()
/PHP-8.2/ext/pcre/pcre2lib/sljit/
H A DsljitNativeRISCV_common.c1045 sljit_ins max = (op & SLJIT_32) ? 32 : 64; in emit_clz_ctz() local
1047 sljit_ins max = 32; in emit_clz_ctz() local
1053 FAIL_IF(push_inst(compiler, ADDI | WORD | RD(OTHER_FLAG) | RS1(TMP_ZERO) | IMM_I(max))); in emit_clz_ctz()
1069 FAIL_IF(push_inst(compiler, ADDI | WORD | RD(TMP_REG1) | RS1(TMP_ZERO) | IMM_I(max))); in emit_clz_ctz()
H A DsljitNativeMIPS_common.c1417 sljit_ins max = (op & SLJIT_32) ? 32 : 64; in emit_clz_ctz() local
1419 sljit_ins max = 32; in emit_clz_ctz() local
1428 …FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | SA(0) | TA(OTHER_FLAG) | IMM(max), OTHER_FL… in emit_clz_ctz()
1440 …FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | SA(0) | T(TMP_REG1) | IMM(max), DR(TMP_REG1… in emit_clz_ctz()
/PHP-8.2/ext/standard/tests/file/
H A Dfread_basic.phpt75 // reading 1000 bytes within the file max size
H A Dfgetcsv_variation1.phpt74 // use the right delimiter and enclosure with max length
/PHP-8.2/
H A D.gdbinit617 usage: print_zstr <ptr> [max length]
H A DCONTRIBUTING.md409 <max 79 characters short description>\n
/PHP-8.2/ext/standard/
H A Dbasic_functions_arginfo.h2212 ZEND_FRAMELESS_FUNCTION(max, 2);
2214 { ZEND_FRAMELESS_FUNCTION_NAME(max, 2), 2 },
2353 ZEND_FUNCTION(max);
2978 ZEND_FRAMELESS_FE(max, arginfo_max, ZEND_ACC_COMPILE_TIME_EVAL, frameless_function_infos_max)
H A Dbasic_functions.stub.php1645 function max(mixed $value, mixed ...$values): mixed {} function
/PHP-8.2/ext/exif/
H A Dexif.c59 #ifndef max
60 # define max(a,b) ((a)>(b) ? (a) : (b)) macro
2800 value_ptr = safe_emalloc(max(byte_count, 4), 1, 0); in exif_ifd_make_value()
/PHP-8.2/ext/phar/phar/
H A Dpharcommand.inc1540 $l = max(strlen($which), $l);
1594 $klen = max($klen, strlen($k));
/PHP-8.2/ext/opcache/jit/
H A Dzend_jit.c181 op1_max = op1_range->max; in zend_jit_is_constant_cmp_long_long()
191 op2_max = op2_range->max; in zend_jit_is_constant_cmp_long_long()
/PHP-8.2/Zend/
H A Dzend.c1364 CG(stack).top = CG(stack).max = 0; \
H A Dzend_hash.c1427 static zend_always_inline void zend_hash_iterators_clamp_max(HashTable *ht, uint32_t max) in zend_hash_iterators_clamp_max() argument
1434 iter->pos = MIN(iter->pos, max); in zend_hash_iterators_clamp_max()
/PHP-8.2/ext/opcache/jit/ir/dynasm/
H A Ddasm_x86.lua1846 sub = 12, min = 13, div = 14, max = 15 } do
/PHP-8.2/.github/workflows/
H A Dnightly.yml477 export SYMFONY_DEPRECATIONS_HELPER=max[total]=999
/PHP-8.2/sapi/fpm/tests/
H A Dtester.inc1291 // Socket max path length is 108 on Linux and 104 on BSD,

Completed in 195 milliseconds

1234567891011