Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 109 for shr2 (0.05 sec)

  1. src/internal/bytealg/equal_386.s

    si_high:
    	// address ends in 111111xx. Load up to bytes we want, move to correct position.
    	MOVL	-4(SI)(BX*1), SI
    	SHRL	CX, SI
    si_finish:
    
    	// same for DI.
    	MOVL	DI, DX
    	CMPB	DX, $0xfc
    	JA	di_high
    	MOVL	(DI), DI
    	JMP	di_finish
    di_high:
    	MOVL	-4(DI)(BX*1), DI
    	SHRL	CX, DI
    di_finish:
    
    	SUBL	SI, DI
    	SHLL	CX, DI
    equal:
    	SETEQ	(AX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. src/runtime/memclr_plan9_amd64.s

    // func memclrNoHeapPointers(ptr unsafe.Pointer, n uintptr)
    TEXT runtime·memclrNoHeapPointers(SB),NOSPLIT,$0-16
    	MOVQ	ptr+0(FP), DI
    	MOVQ	n+8(FP), CX
    	MOVQ	CX, BX
    	ANDQ	$7, BX
    	SHRQ	$3, CX
    	MOVQ	$0, AX
    	CLD
    	REP
    	STOSQ
    	MOVQ	BX, CX
    	REP
    	STOSB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 29 19:11:07 UTC 2021
    - 511 bytes
    - Viewed (0)
  3. src/runtime/memmove_386.s

    fwdBy4:
    	// Do 4 bytes at a time
    	MOVL	BX, CX
    	SHRL	$2, CX
    	ANDL	$3, BX
    	REP;	MOVSL
    	JMP	tail
    
    /*
     * check overlap
     */
    back:
    	MOVL	SI, CX
    	ADDL	BX, CX
    	CMPL	CX, DI
    	JLS	forward
    /*
     * whole thing backwards has
     * adjusted addresses
     */
    
    	ADDL	BX, DI
    	ADDL	BX, SI
    	STD
    
    /*
     * copy
     */
    	MOVL	BX, CX
    	SHRL	$2, CX
    	ANDL	$3, BX
    
    	SUBL	$4, DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

            String urlpath = getURLPath();
            String shr = getShare();
            if ( urlpath.length() > 1 ) {
                int i = urlpath.length() - 2;
                while ( urlpath.charAt(i) != '/' ) {
                    i--;
                }
                return urlpath.substring(i + 1);
            }
            else if ( shr != null ) {
                return shr + '/';
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_arm.go

    	hwcap2_SHA1  = 1 << 2
    	hwcap2_SHA2  = 1 << 3
    	hwcap2_CRC32 = 1 << 4
    )
    
    func initOptions() {
    	options = []option{
    		{Name: "pmull", Feature: &ARM.HasPMULL},
    		{Name: "sha1", Feature: &ARM.HasSHA1},
    		{Name: "sha2", Feature: &ARM.HasSHA2},
    		{Name: "swp", Feature: &ARM.HasSWP},
    		{Name: "thumb", Feature: &ARM.HasTHUMB},
    		{Name: "thumbee", Feature: &ARM.HasTHUMBEE},
    		{Name: "tls", Feature: &ARM.HasTLS},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  6. src/crypto/sha256/sha256block_386.s

    //   SIGMA0(x) = ROTR(7,x) XOR ROTR(18,x) XOR SHR(3,x)
    //   SIGMA1(x) = ROTR(17,x) XOR ROTR(19,x) XOR SHR(10,x)
    #define MSGSCHEDULE1(index) \
    	MOVL	((index-2)*4)(BP), AX; \
    	MOVL	AX, CX; \
    	RORL	$17, AX; \
    	MOVL	CX, DX; \
    	RORL	$19, CX; \
    	SHRL	$10, DX; \
    	MOVL	((index-15)*4)(BP), BX; \
    	XORL	CX, AX; \
    	MOVL	BX, CX; \
    	XORL	DX, AX; \
    	RORL	$7, BX; \
    	MOVL	CX, DX; \
    	SHRL	$3, DX; \
    	RORL	$18, CX; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/runtime/time_windows_amd64.s

    	// generated code for
    	//	func f(x uint64) (uint64, uint64) { return x/1000000000, x%1000000000 }
    	// adapted to reduce duplication
    	MOVQ	AX, CX
    	MOVQ	$1360296554856532783, AX
    	MULQ	CX
    	ADDQ	CX, DX
    	RCRQ	$1, DX
    	SHRQ	$29, DX
    	MOVQ	DX, sec+0(FP)
    	IMULQ	$1000000000, DX
    	SUBQ	DX, CX
    	MOVL	CX, nsec+8(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 786 bytes
    - Viewed (0)
  8. src/runtime/memclr_plan9_386.s

    	XORL	AX, AX
    
    tail:
    	TESTL	BX, BX
    	JEQ	_0
    	CMPL	BX, $2
    	JBE	_1or2
    	CMPL	BX, $4
    	JB	_3
    	JE	_4
    	CMPL	BX, $8
    	JBE	_5through8
    	CMPL	BX, $16
    	JBE	_9through16
    	MOVL	BX, CX
    	SHRL	$2, CX
    	REP
    	STOSL
    	ANDL	$3, BX
    	JNE	tail
    	RET
    
    _1or2:
    	MOVB	AX, (DI)
    	MOVB	AX, -1(DI)(BX*1)
    	RET
    _0:
    	RET
    _3:
    	MOVW	AX, (DI)
    	MOVB	AX, 2(DI)
    	RET
    _4:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 29 19:11:07 UTC 2021
    - 983 bytes
    - Viewed (0)
  9. src/cmd/internal/obj/pass.go

    	case TYPE_BRANCH, TYPE_TEXTSIZE:
    		if a.Reg != 0 || a.Index != 0 || a.Scale != 0 || a.Name != 0 {
    			break
    		}
    		return
    
    	case TYPE_MEM:
    		return
    
    	case TYPE_CONST:
    		// TODO(rsc): After fixing SHRQ, check a.Index != 0 too.
    		if a.Name != 0 || a.Sym != nil || a.Reg != 0 {
    			ctxt.Diag("argument is TYPE_CONST, should be TYPE_ADDR, in %v", p)
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

        val sectionOffset = rangesBuffer.size.toInt() / 4
    
        // Section prefix.
        sectionIndexBuffer.writeByte(section and 0x1fc000 shr 14)
        sectionIndexBuffer.writeByte((section and 0x3f80) shr 7)
    
        // Section index.
        sectionIndexBuffer.writeByte((sectionOffset and 0x3f80) shr 7)
        sectionIndexBuffer.writeByte(sectionOffset and 0x7f)
    
        // Ranges.
        for (range in sectionMappedRanges) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top