Home
last modified time | relevance | path

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

123

/PHP-8.3/ext/spl/
H A Dspl_dllist_arginfo.h89 ZEND_METHOD(SplDoublyLinkedList, shift);
118 ZEND_ME(SplDoublyLinkedList, shift, arginfo_class_SplDoublyLinkedList_shift, ZEND_ACC_PUBLIC)
148 ZEND_MALIAS(SplDoublyLinkedList, dequeue, shift, arginfo_class_SplQueue_dequeue, ZEND_ACC_PUBLIC)
H A Dspl_dllist.stub.php35 public function shift(): mixed {} function in SplDoublyLinkedList
/PHP-8.3/ext/bcmath/libbcmath/src/
H A Drecmul.c98 static void _bc_shift_addsub(bc_num accum, bc_num val, int shift, bool sub) in _bc_shift_addsub() argument
107 assert(accum->n_len + accum->n_scale >= shift + count); in _bc_shift_addsub()
110 accp = (signed char *) (accum->n_value + accum->n_len + accum->n_scale - shift - 1); in _bc_shift_addsub()
/PHP-8.3/ext/opcache/tests/jit/
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.3/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_arm64_aapcs_pe_armasm.asm68 ; shift address in x0 (allocated stack) to lower 16 byte boundary
H A Dmake_ppc32_sysv_elf_gas.S63 # shift address in R3 to lower 16 byte boundary
/PHP-8.3/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)
/PHP-8.3/ext/mbstring/tests/
H A Dmb_send_mail07.phpt34 * the Base64-encoded ISO-2022-KR string contained an extraneous 0xF ('shift out')
H A Diso2022kr_encoding.phpt113 // Regression test: The old implementation would sometimes emit an extra 0x0F ('shift out')
117 // Regression test: Don't shift from KS X 1001 to ASCII mode on invalid escape sequence
/PHP-8.3/ext/pcre/pcre2lib/sljit/
H A DsljitNativeARM_64.c902 sljit_u32 type = (shift << 30); in emit_op_mem()
912 if (argw == 0 || argw == shift) in emit_op_mem()
925 argw = (argw >> shift) & 0xfff; in emit_op_mem()
930 if ((argw & ((1 << shift) - 1)) == 0) { in emit_op_mem()
932 if ((argw >> shift) <= 0xfff) in emit_op_mem()
938 argw = ((argw & 0xfff) >> shift); in emit_op_mem()
1625 sljit_ins type = (shift << 30); in emit_fop_mem()
1634 if (argw == 0 || argw == shift) in emit_fop_mem()
1647 argw = (argw >> shift) & 0xfff; in emit_fop_mem()
1653 if ((argw >> shift) <= 0xfff) in emit_fop_mem()
[all …]

Completed in 38 milliseconds

123