Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for j2 (0.02 sec)

  1. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    		binary.LittleEndian.Uint32(nonce[8:12]),
    	}
    	return c, nil
    }
    
    // The constant first 4 words of the ChaCha20 state.
    const (
    	j0 uint32 = 0x61707865 // expa
    	j1 uint32 = 0x3320646e // nd 3
    	j2 uint32 = 0x79622d32 // 2-by
    	j3 uint32 = 0x6b206574 // te k
    )
    
    const blockSize = 64
    
    // quarterRound is the core of ChaCha20. It shuffles the bits of 4 state words.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  2. test/codegen/arithmetic.go

    func constantFold1(i0, j0, i1, j1, i2, j2, i3, j3 int) (int, int, int, int) {
    	// arm64:"SUB","ADD\t[$]2"
    	// ppc64x:"SUB","ADD\t[$]2"
    	r0 := (i0 + 3) - (j0 + 1)
    	// arm64:"SUB","SUB\t[$]4"
    	// ppc64x:"SUB","ADD\t[$]-4"
    	r1 := (i1 - 3) - (j1 + 1)
    	// arm64:"SUB","ADD\t[$]4"
    	// ppc64x:"SUB","ADD\t[$]4"
    	r2 := (i2 + 3) - (j2 - 1)
    	// arm64:"SUB","SUB\t[$]2"
    	// ppc64x:"SUB","ADD\t[$]-2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/x86/ssa.go

    			c.To.Reg = x86.REG_DX
    		}
    
    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = x
    
    		// signed division, rest of the check for -1 case
    		if j != nil {
    			j2 := s.Prog(obj.AJMP)
    			j2.To.Type = obj.TYPE_BRANCH
    
    			var n *obj.Prog
    			if v.Op == ssa.Op386DIVL || v.Op == ssa.Op386DIVW {
    				// n * -1 = -n
    				n = s.Prog(x86.ANEGL)
    				n.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/s390x/ssa.go

    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = divisor
    		p.Reg = 0
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = dividend
    
    		// signed division, rest of the check for -1 case
    		if j != nil {
    			j2 := s.Prog(s390x.ABR)
    			j2.To.Type = obj.TYPE_BRANCH
    
    			var n *obj.Prog
    			if v.Op == ssa.OpS390XDIVD || v.Op == ssa.OpS390XDIVW {
    				// n * -1 = -n
    				n = s.Prog(s390x.ANEG)
    				n.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  5. tests/preload_test.go

    			},
    			Join: Join{Value: "j1"},
    		},
    	}
    	value2 := Value{
    		Name: "value2",
    		Nested: Nested{
    			Preloads: []*Preload{
    				{Value: "p3"}, {Value: "p4"}, {Value: "p5"},
    			},
    			Join: Join{Value: "j2"},
    		},
    	}
    
    	values := []*Value{&value1, &value2}
    	if err := DB.Create(&values).Error; err != nil {
    		t.Errorf("failed to create value, got err: %v", err)
    	}
    
    	var find1 Value
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top