/php-src/tests/lang/operators/ |
H A D | bitwiseShiftLeft_basiclong_64bit.phpt | 54 Exception: Bit shift by negative number 62 Exception: Bit shift by negative number 72 Exception: Bit shift by negative number 80 Exception: Bit shift by negative number 90 Exception: Bit shift by negative number 98 Exception: Bit shift by negative number 108 Exception: Bit shift by negative number 116 Exception: Bit shift by negative number 126 Exception: Bit shift by negative number 134 Exception: Bit shift by negative number [all …]
|
H A D | bitwiseShiftRight_basiclong_64bit.phpt | 54 Exception: Bit shift by negative number 62 Exception: Bit shift by negative number 72 Exception: Bit shift by negative number 80 Exception: Bit shift by negative number 90 Exception: Bit shift by negative number 98 Exception: Bit shift by negative number 108 Exception: Bit shift by negative number 116 Exception: Bit shift by negative number 126 Exception: Bit shift by negative number 134 Exception: Bit shift by negative number [all …]
|
H A D | bitwiseShiftLeft_variationStr.phpt | 31 ArithmeticError: Bit shift by negative number 35 ArithmeticError: Bit shift by negative number 59 ArithmeticError: Bit shift by negative number 63 ArithmeticError: Bit shift by negative number 87 ArithmeticError: Bit shift by negative number 91 ArithmeticError: Bit shift by negative number 115 ArithmeticError: Bit shift by negative number 119 ArithmeticError: Bit shift by negative number 143 ArithmeticError: Bit shift by negative number 147 ArithmeticError: Bit shift by negative number [all …]
|
H A D | bitwiseShiftLeft_variationStr_64bit.phpt | 36 ArithmeticError: Bit shift by negative number 40 ArithmeticError: Bit shift by negative number 64 ArithmeticError: Bit shift by negative number 68 ArithmeticError: Bit shift by negative number 92 ArithmeticError: Bit shift by negative number 96 ArithmeticError: Bit shift by negative number 120 ArithmeticError: Bit shift by negative number 124 ArithmeticError: Bit shift by negative number 148 ArithmeticError: Bit shift by negative number 152 ArithmeticError: Bit shift by negative number [all …]
|
H A D | bitwiseShiftRight_variationStr.phpt | 32 ArithmeticError: Bit shift by negative number 36 ArithmeticError: Bit shift by negative number 60 ArithmeticError: Bit shift by negative number 64 ArithmeticError: Bit shift by negative number 88 ArithmeticError: Bit shift by negative number 92 ArithmeticError: Bit shift by negative number 116 ArithmeticError: Bit shift by negative number 120 ArithmeticError: Bit shift by negative number 144 ArithmeticError: Bit shift by negative number 148 ArithmeticError: Bit shift by negative number [all …]
|
/php-src/ext/standard/tests/array/ |
H A D | 005.phpt | 77 Output after shift is : 102 Output after shift is : 119 Output after shift is : 142 Output after shift is : 159 Output after shift is : 176 Output after shift is : 193 Output after shift is : 224 Output after shift is : 239 Output after shift is : 271 Output after shift is : [all …]
|
H A D | array_shift_basic.phpt | 12 echo "\n-- Before shift: --\n"; 15 echo "\n-- After shift: --\n"; 26 -- Before shift: -- 38 -- After shift: --
|
H A D | array_shift_variation4.phpt | 13 echo "\n-- Before shift: --\n"; 19 echo "\n-- After shift: --\n"; 37 -- Before shift: -- 71 -- After shift: --
|
/php-src/Zend/Optimizer/ |
H A D | nop_removal.c | 36 uint32_t new_count, i, shift; in zend_optimizer_nop_removal() local 42 i = new_count = shift = 0; in zend_optimizer_nop_removal() 60 shiftlist[i++] = shift; in zend_optimizer_nop_removal() 62 shift++; in zend_optimizer_nop_removal() 64 if (shift) { in zend_optimizer_nop_removal() 74 if (shift) { in zend_optimizer_nop_removal()
|
/php-src/ext/opcache/tests/jit/ |
H A D | mul_004.phpt | 18 $res = $a * 8; // shift cnt: 3 23 $res = 16 * $a; // shift cnt: 4 28 $res = $a * 0x10000000; // shift cnt: 29 33 $res = $a * 0x100000000; // shift cnt: 32
|
H A D | assign_op_001.phpt | 28 Bit shift by negative number
|
H A D | add_014.phpt | 24 Bit shift by negative number
|
H A D | reg_alloc_009.phpt | 19 Fatal error: Uncaught ArithmeticError: Bit shift by negative number in %sreg_alloc_009.php:4
|
/php-src/Zend/tests/ |
H A D | compound_assign_with_numeric_strings.phpt | 2 Error cases of compound shift assignment on strings 45 Exception: Bit shift by negative number 48 Exception: Bit shift by negative number
|
/php-src/ext/dom/lexbor/lexbor/core/ |
H A D | diyfp.h | 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()
|
H A D | strtod.c | 162 int remaining, dec_exp, adj_exp, orig_e, shift; in lexbor_strtod_diyfp_strtod() local 235 shift = prec_digits + LEXBOR_DENOM_LOG in lexbor_strtod_diyfp_strtod() 238 value = lexbor_diyfp_shift_right(value, shift); in lexbor_strtod_diyfp_strtod() 244 error = (error >> shift) + 1 + LEXBOR_DENOM; in lexbor_strtod_diyfp_strtod() 245 prec_digits -= shift; in lexbor_strtod_diyfp_strtod()
|
/php-src/ext/spl/tests/ |
H A D | dllist_005.phpt | 13 $queue->shift(); 48 Exception: Can't shift from an empty datastructure 49 Exception: Can't shift from an empty datastructure
|
H A D | dllist_001.phpt | 13 $dll->shift(); 25 echo $dll->shift()."\n"; 51 Exception: Can't shift from an empty datastructure
|
H A D | dllist_004.phpt | 13 $stack->shift(); 49 Exception: Can't shift from an empty datastructure
|
H A D | dllist_013.phpt | 38 var_dump($dll->shift()); 39 var_dump($dll->shift());
|
H A D | bug79151.phpt | 19 var_dump($a->shift());
|
/php-src/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativeMIPS_64.c | 48 sljit_s32 shift = 32; in load_immediate() local 73 shift -= 8; in load_immediate() 78 shift -= 4; in load_immediate() 83 shift -= 2; in load_immediate() 89 shift += 1; in load_immediate() 91 …SLJIT_ASSERT(((uimm & 0xc000000000000000l) == 0x4000000000000000l) && (shift > 0) && (shift <= 32)… in load_immediate() 100 imm &= (1l << shift) - 1; in load_immediate() 102 ins = (shift == 32) ? DSLL32 : DSLL; in load_immediate() 103 if (shift < 32) in load_immediate() 104 ins |= SH_IMM(shift); in load_immediate() [all …]
|
H A D | sljitNativePPC_64.c | 39 #define PUSH_SLDI_NEG(reg, shift) \ argument 40 push_inst(compiler, RLDICR | S(reg) | A(reg) | RLDI_SH(63 - shift) | RLDI_ME(shift)) 45 sljit_uw shift; in load_immediate() local 67 ASM_SLJIT_CLZ(tmp, shift); in load_immediate() 68 SLJIT_ASSERT(shift > 0); in load_immediate() 69 shift--; in load_immediate() 70 tmp = ((sljit_uw)imm << shift); in load_immediate() 74 shift += 15; in load_immediate() 81 shift += 31; in load_immediate() 86 shift += 15; in load_immediate() [all …]
|
/php-src/ext/mbstring/libmbfl/mbfl/ |
H A D | mbfl_convert.c | 195 int shift = 28, ret = 0; in mbfl_filt_conv_output_hex() local 197 while (shift >= 0) { in mbfl_filt_conv_output_hex() 198 int n = (w >> shift) & 0xF; in mbfl_filt_conv_output_hex() 206 shift -= 4; in mbfl_filt_conv_output_hex() 351 int shift = 28; in convert_cp_to_hex() local 353 while (shift >= 0) { in convert_cp_to_hex() 354 int n = (cp >> shift) & 0xF; in convert_cp_to_hex() 359 shift -= 4; in convert_cp_to_hex()
|
/php-src/Zend/asm/ |
H A D | make_ppc32_sysv_macho_gas.S | 84 ; shift address in R3 to lower 16 byte boundary
|