Home
last modified time | relevance | path

Searched refs:shift (Results 26 – 50 of 67) sorted by relevance

123

/PHP-8.1/ext/opcache/tests/jit/
H A Dshift_left_001.phpt37 Exception (ArithmeticError): Bit shift by negative number
H A Dshift_right_001.phpt43 Exception (ArithmeticError): Bit shift by negative number
H A Dshift_left_002.phpt49 Exception (ArithmeticError): Bit shift by negative number
H A Dshift_right_002.phpt55 Exception (ArithmeticError): Bit shift by negative number
H A Dbool_not_002.phpt30 Fatal error: Uncaught ArithmeticError: Bit shift by negative number in %sbool_not_002.php:6
H A Dshift_right_004.phpt38 Fatal error: Uncaught ArithmeticError: Bit shift by negative number in %sshift_right_004.php:8
/PHP-8.1/ext/bcmath/libbcmath/src/
H A Drecmul.c104 _bc_shift_addsub (bc_num accum, bc_num val, int shift, int sub) in _bc_shift_addsub() argument
112 assert (accum->n_len+accum->n_scale >= shift+count); in _bc_shift_addsub()
116 accum->n_len + accum->n_scale - shift - 1); in _bc_shift_addsub()
/PHP-8.1/Zend/asm/
H A Dmake_arm64_aapcs_macho_gas.S59 ; shift address in x0 (allocated stack) to lower 16 byte boundary
H A Dmake_arm64_aapcs_elf_gas.S60 # shift address in x0 (allocated stack) to lower 16 byte boundary
H A Dmake_arm_aapcs_macho_gas.S45 @ shift address in A1 to lower 16 byte boundary
H A Dmake_riscv64_sysv_elf_gas.S66 # shift address in a0 (allocated stack) to lower 16 byte boundary
H A Dmake_arm_aapcs_elf_gas.S48 @ shift address in A1 to lower 16 byte boundary
H A Dmake_mips64_n64_elf_gas.S60 # shift address in A0 to lower 16 byte boundary
H A Dmake_ppc32_sysv_xcoff_gas.S72 # shift address in R3 to lower 16 byte boundary
H A Dmake_ppc64_sysv_xcoff_gas.S84 # shift address in R3 to lower 16 byte boundary
H A Dmake_mips32_o32_elf_gas.S53 # shift address in A0 to lower 16 byte boundary
H A Dmake_ppc32_sysv_elf_gas.S63 # shift address in R3 to lower 16 byte boundary
H A Dmake_ppc64_sysv_elf_gas.S103 # shift address in R3 to lower 16 byte boundary
H A Dmake_i386_ms_pe_masm.asm37 ; shift address in EAX to lower 16 byte boundary
/PHP-8.1/ext/spl/
H A Dspl_dllist.stub.php14 public function shift(): mixed {} function in SplDoublyLinkedList
/PHP-8.1/ext/opcache/jit/dynasm/
H A Ddasm_arm64.lua251 local function parse_reg(expr, shift)
274 return shl(r, shift), tp
284 if shift then waction("VREG", shift, vreg) end
320 local function parse_imm(imm, bits, shift, scale, signed)
329 if s == 0 then return shl(m, shift)
330 elseif s == -1 then return shl(m + shl(1, bits), shift) end
332 if sar(m, bits) == 0 then return shl(m, shift) end
337 waction("IMM", (signed and 32768 or 0)+scale*1024+bits*32+shift, imm)
H A Ddasm_arm.lua600 local function parse_imm(imm, bits, shift, scale, signed)
609 if s == 0 then return shl(m, shift)
610 elseif s == -1 then return shl(m + shl(1, bits), shift) end
612 if sar(m, bits) == 0 then return shl(m, shift) end
617 waction("IMM", (signed and 32768 or 0)+scale*1024+bits*32+shift, imm)
672 local function parse_shift(shift, gprok)
673 if shift == "rrx" then
676 local s, s2 = match(shift, "^(%S+)%s*(.*)$")
H A Ddasm_mips.lua858 local function parse_imm(imm, bits, shift, scale, signed, action)
865 if s == 0 then return shl(m, shift)
866 elseif s == -1 then return shl(m + shl(1, bits), shift) end
868 if sar(m, bits) == 0 then return shl(m, shift) end
877 (signed and 32768 or 0)+shl(scale, 10)+shl(bits, 5)+shift, imm)
H A Ddasm_ppc.lua1538 local function parse_imm(imm, bits, shift, scale, signed)
1545 if s == 0 then return shl(m, shift)
1546 elseif s == -1 then return shl(m + shl(1, bits), shift) end
1548 if sar(m, bits) == 0 then return shl(m, shift) end
1557 waction("IMM", (signed and 32768 or 0)+scale*1024+bits*32+shift, imm)
/PHP-8.1/ext/pcre/pcre2lib/sljit/
H A DsljitNativeARM_64.c860 sljit_u32 shift = MEM_SIZE_SHIFT(flags); in emit_op_mem() local
861 sljit_u32 type = (shift << 30); in emit_op_mem()
871 if (argw == 0 || argw == shift) in emit_op_mem()
884 argw = (argw >> shift) & 0xfff; in emit_op_mem()
890 if ((argw >> shift) <= 0xfff) { in emit_op_mem()
897 argw = ((argw & 0xfff) >> shift); in emit_op_mem()
1381 sljit_ins type = (shift << 30); in emit_fop_mem()
1390 if (argw == 0 || argw == shift) in emit_fop_mem()
1403 argw = (argw >> shift) & 0xfff; in emit_fop_mem()
1409 if ((argw >> shift) <= 0xfff) in emit_fop_mem()
[all …]

Completed in 121 milliseconds

123