Home
last modified time | relevance | path

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

123

/PHP-8.3/Zend/asm/
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.3/ext/pcre/pcre2lib/sljit/
H A DsljitNativePPC_common.c248 #define SLWI(shift) (RLWINM | RLWI_SH(shift) | RLWI_MBE(0, 31 - (shift))) argument
249 #define SLDI(shift) (RLDICR | RLDI_SH(shift) | RLDI_ME(63 - (shift))) argument
251 #define SRWI(shift) (RLWINM | RLWI_SH(32 - (shift)) | RLWI_MBE((shift), 31)) argument
252 #define SRDI(shift) (RLDICL | RLDI_SH(64 - (shift)) | RLDI_MB(shift)) argument
255 #define SLWI_W(shift) SLWI(shift) argument
257 #define SLWI_W(shift) SLDI(shift) argument
H A DsljitNativeARM_32.c3244 sljit_uw add, shift; in sljit_emit_mem_unaligned() local
3359 shift = 8; in sljit_emit_mem_unaligned()
3372 FAIL_IF(push_inst(compiler, ORR | RD(tmp_reg) | RN(tmp_reg) | RM(TMP_REG2) | (shift << 7))); in sljit_emit_mem_unaligned()
3373 shift += 8; in sljit_emit_mem_unaligned()
3384 return push_inst(compiler, ORR | RD(reg) | RN(tmp_reg) | RM(TMP_REG2) | (shift << 7)); in sljit_emit_mem_unaligned()
H A DsljitNativeARM_T2_32.c940 #define ALIGN_CHECK(argw, imm, shift) (!((argw) & ~((imm) << (shift)))) argument
/PHP-8.3/ext/mbstring/tests/
H A Dmb_convert_case_various_mode.phpt53 * checking whether we should shift in/out of 'title mode', then the conversion will be incorrect */
/PHP-8.3/ext/standard/
H A Dbase64.c170 const uint8x16_t shift = vbslq_u8(eq_2f, vdupq_n_u8(16), sh); in decode_fromascii() local
174 return vaddq_u8(input, shift); in decode_fromascii()
720 const __m512i shift = _mm512_mask_mov_epi8(sh, eq_2f, _mm512_set1_epi8(16)); in php_base64_decode_ex_avx512() local
721 str = _mm512_add_epi8(str, shift); in php_base64_decode_ex_avx512()
/PHP-8.3/ext/opcache/jit/dynasm/
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.3/ext/gmp/
H A Dgmp.c337 zend_long shift = zval_get_long(op2); in shift_operator_helper() local
339 if (shift < 0) { in shift_operator_helper()
352 op(gmpnum_result, gmpnum_op, (gmp_ulong) shift); in shift_operator_helper()
/PHP-8.3/ext/mbstring/tests/data/
H A DJISX0201.txt24 # Column #1 is the shift JIS code (in hex as 0xXX)
H A DSHIFTJIS.txt24 # Column #1 is the shift-JIS code (in hex)
H A DJISX0208.txt24 # Column #1 is the shift-JIS code (in hex)
/PHP-8.3/ext/mbstring/
H A Dmbstring.c2766 int shift = 0; in remove_non_encodings_from_elist() local
2770 shift++; /* Remove this encoding from the list */ in remove_non_encodings_from_elist()
2771 } else if (shift) { in remove_non_encodings_from_elist()
2772 elist[i - shift] = encoding; in remove_non_encodings_from_elist()
2775 *size -= shift; in remove_non_encodings_from_elist()
4991 #define _mm256_shift_epi8(hi, lo, shift) _mm256_alignr_epi8(lo, _mm256_permute2x128_si256(hi, lo, 3… argument
/PHP-8.3/ext/hash/xxhash/
H A Dxxhash.h3410 XXH_FORCE_INLINE xxh_u64 XXH_xorshift64(xxh_u64 v64, int shift) in XXH_xorshift64() argument
3412 XXH_ASSERT(0 <= shift && shift < 64); in XXH_xorshift64()
3413 return v64 ^ (v64 >> shift); in XXH_xorshift64()
/PHP-8.3/ext/spl/
H A Dspl_dllist.c536 PHP_METHOD(SplDoublyLinkedList, shift) in PHP_METHOD() argument
/PHP-8.3/ext/pcre/tests/
H A D005.phpt45 conflicts: 2 shift/reduce
/PHP-8.3/build/
H A Dphp.m41558 dnl autoconf undefines the builtin "shift" :-(
1559 dnl If possible, we use the builtin shift anyway, otherwise we use the ubercool
1562 ifdef([builtin],[builtin(define, phpshift, [builtin(shift, $@)])],[
H A Dlibtool.m4422 shift
436 shift
/PHP-8.3/ext/ffi/
H A Dffi.c686 uint64_t shift = 64 - (field->bits % 64); in zend_ffi_bit_field_to_zval() local
687 if (shift != 0) { in zend_ffi_bit_field_to_zval()
688 val = (int64_t)(val << shift) >> shift; in zend_ffi_bit_field_to_zval()
/PHP-8.3/
H A DNEWS460 . Fix shift out of bounds on 32-bit non-fast-path platforms. (nielsdos)
/PHP-8.3/ext/opcache/jit/
H A Dzend_jit_arm64.dasc725 /* Update IP with register 'reg'. Note: shift variant is handled by ADD_IP_SHIFT. */
736 |.macro ADD_IP_SHIFT, reg, shift, tmp_reg
738 | add IP, IP, reg, shift
741 | add tmp_reg, tmp_reg, reg, shift
2125 | LOAD_ADDR CARG2, "Bit shift by negative number"
H A Dzend_jit_x86.dasc2080 | LOAD_ADDR CARG2, "Bit shift by negative number"
2084 | push "Bit shift by negative number"
/PHP-8.3/ext/fileinfo/tests/
H A Dmagic14813 # cluster shift; log2(cluster size / sector size) like: 0~1=ClusterSize/SectorSize
14814 >7 ubyte >0 \b, cluster shift %u
14815 #>7 ubyte x \b, cluster shift %u
14988 >44 lelong x \b, block shift %d
H A Dmagic私はガラスを食べられます14813 # cluster shift; log2(cluster size / sector size) like: 0~1=ClusterSize/SectorSize
14814 >7 ubyte >0 \b, cluster shift %u
14815 #>7 ubyte x \b, cluster shift %u
14988 >44 lelong x \b, block shift %d

Completed in 438 milliseconds

123