Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 469 for Roll (0.14 sec)

  1. test/codegen/rotate.go

    	a += bits.RotateLeft64(x, 10)
    
    	return a
    }
    
    func rot32(x uint32) uint32 {
    	var a uint32
    
    	// amd64:"ROLL\t[$]7"
    	// arm:"MOVW\tR\\d+@>25"
    	// ppc64x:"ROTLW\t[$]7"
    	// loong64: "ROTR\t[$]25"
    	// riscv64: "RORIW\t[$]25"
    	a += x<<7 | x>>25
    
    	// amd64:`ROLL\t[$]8`
    	// arm:"MOVW\tR\\d+@>24"
    	// arm64:"RORW\t[$]24"
    	// s390x:"RLL\t[$]8"
    	// ppc64x:"ROTLW\t[$]8"
    	// loong64: "ROTR\t[$]24"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/crypto/md5/md5block_amd64.s

    	XORL	b,		R9; \
    	ADDL	$const,	a; \
    	ADDL	R8,		a; \
    	MOVL	(index*4)(SI),R8; \
    	ADDL	R9,		a; \
    	ROLL	$shift,		a; \
    	ADDL	b,		a
    
    #define ROUND3(a, b, c, d, index, const, shift) \
    	XORL	a,		R9; \
    	XORL	b,		R9; \
    	ADDL	$const,	a; \
    	ADDL	R8,		a; \
    	MOVL	(index*4)(SI),R8; \
    	ADDL	R9,		a; \
    	ROLL	$shift,		a; \
    	ADDL	b,		a
    
    	ROUND3FIRST(AX,BX,CX,DX, 8,0xfffa3942, 4);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue59367.go

    	_ = b[3]             // bounds check
    	x := *p              // load a byte
    	y := uint32(x)       // zero extend to 32 bits
    	b[0] = byte(y >> 24) // compute ROLL
    	b[1] = byte(y >> 16)
    	b[2] = byte(y >> 8)
    	b[3] = byte(y)
    	nop()                // spill/restore ROLL
    	b[0] = byte(y >> 24) // use ROLL
    	b[1] = byte(y >> 16)
    	b[2] = byte(y >> 8)
    	b[3] = byte(y)
    }
    
    //go:noinline
    func f64(p *uint8, b []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 21:11:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/crypto/md5/md5block_386.s

    	ANDL	b, BP; \
    	XORL d, BP; \
    	MOVL (index*4)(SI), DI; \
    	ADDL BP, a; \
    	ROLL $shift, a; \
    	MOVL c, BP; \
    	ADDL b, a
    
    #define ROUND2(a, b, c, d, index, const, shift) \
    	LEAL	const(a)(DI*1),a; \
    	MOVL	d,		DI; \
    	ANDL	b,		DI; \
    	MOVL	d,		BP; \
    	NOTL	BP; \
    	ANDL	c,		BP; \
    	ORL	DI,		BP; \
    	MOVL	(index*4)(SI),DI; \
    	ADDL	BP,		a; \
    	ROLL	$shift,	a; \
    	ADDL	b,		a
    
    #define ROUND3(a, b, c, d, index, const, shift) \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockCoordinationService.java

         *
         * FINISHED - All locks were acquired, release the state lock
         * FAILED - One or more locks were not acquired, roll back any locks that were acquired and release the state lock
         * RETRY - One or more locks were not acquired, roll back any locks that were acquired and block waiting for the
         * state to change, then run the transform again
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    			rootCertRotatorLog.Errorf("Failed to roll forward root certificate (error: %s). "+
    				"Abort new root certificate", err.Error())
    			return
    		}
    		// caSecret is out-of-date. Need to load the latest istio-ca-secret to roll back root certificate.
    		_, err = rotator.updateRootCertificate(nil, false, oldCaCert, oldCaPrivateKey, oldRootCerts)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. src/crypto/sha1/sha1block_386.s

    #define FUNC3(a, b, c, d, e) \
    	MOVL	b, SI; \
    	ORL	c, SI; \
    	ANDL	d, SI; \
    	MOVL	b, DI; \
    	ANDL	c, DI; \
    	ORL	SI, DI
    
    #define FUNC4 FUNC2
    
    #define MIX(a, b, c, d, e, const) \
    	ROLL	$30, b; \
    	ADDL	DI, e; \
    	MOVL	a, SI; \
    	ROLL	$5, SI; \
    	LEAL	const(e)(SI*1), e
    
    #define ROUND1(a, b, c, d, e, index) \
    	LOAD(index, e); \
    	FUNC1(a, b, c, d, e); \
    	MIX(a, b, c, d, e, 0x5A827999)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/TransportProvider.java

     * This API does not try to cover all the requirements out there, just the basic ones, and is intentionally simple.
     * If plugin or extension needs anything more complex feature wise (i.e. HTTP range support or alike) it should
     * probably roll its own.
     * <p>
     * This implementation is backed by Maven Resolver API, supported protocols and transport selection depends on it. If
     * resolver preference regarding transport is altered, it will affect this service as well.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. cmd/site-replication-metrics.go

    	LastOnline    time.Time          `json:"lastOnline"`
    	Online        bool               `json:"isOnline"`
    	Latency       madmin.LatencyStat `json:"latency"`
    
    	// replication metrics across buckets roll up
    	ReplicatedSize int64 `json:"replicatedSize"`
    	// Total number of completed operations
    	ReplicatedCount int64 `json:"replicatedCount"`
    	// Failed captures replication errors in various time windows
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. test/codegen/arithmetic.go

    	// 386:"IMUL3L\t[$]-1431655765","ROLL\t[$]31",-"DIVQ"
    	// arm64:"MOVD\t[$]-6148914691236517205","MOVD\t[$]3074457345618258602","MUL","ROR",-"DIV"
    	// arm:"MUL","CMP\t[$]715827882",-".*udiv"
    	// ppc64x:"MULLD","ROTL\t[$]63"
    	even := n%6 == 0
    
    	// amd64:"MOVQ\t[$]-8737931403336103397","IMULQ",-"ROLQ",-"DIVQ"
    	// 386:"IMUL3L\t[$]678152731",-"ROLL",-"DIVQ"
    	// arm64:"MOVD\t[$]-8737931403336103397","MUL",-"ROR",-"DIV"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top