Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,309 for y$ (0.06 sec)

  1. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (Rsh8x32  <t> x y) && !shiftIsBounded(v) => (SRA  <t> (SignExt8to64  x) (OR <y.Type> y (ADDI <y.Type> [-1] (SLTIU <y.Type> [64] (ZeroExt32to64 y)))))
    (Rsh8x64  <t> x y) && !shiftIsBounded(v) => (SRA  <t> (SignExt8to64  x) (OR <y.Type> y (ADDI <y.Type> [-1] (SLTIU <y.Type> [64] y))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  2. src/image/geom.go

    	if r.Min.X > s.Min.X {
    		r.Min.X = s.Min.X
    	}
    	if r.Min.Y > s.Min.Y {
    		r.Min.Y = s.Min.Y
    	}
    	if r.Max.X < s.Max.X {
    		r.Max.X = s.Max.X
    	}
    	if r.Max.Y < s.Max.Y {
    		r.Max.Y = s.Max.Y
    	}
    	return r
    }
    
    // Empty reports whether the rectangle contains no points.
    func (r Rectangle) Empty() bool {
    	return r.Min.X >= r.Max.X || r.Min.Y >= r.Max.Y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. src/image/draw/bench_test.go

    		for y := 0; y < dsth; y++ {
    			for x := 0; x < dstw; x++ {
    				dst1.SetRGBA(x, y, color.RGBA{
    					uint8(5 * x % 0x100),
    					uint8(7 * y % 0x100),
    					uint8((7*x + 5*y) % 0x100),
    					0xff,
    				})
    			}
    		}
    		dst = dst1
    	case color.RGBA64Model:
    		dst1 := image.NewRGBA64(image.Rect(0, 0, dstw, dsth))
    		for y := 0; y < dsth; y++ {
    			for x := 0; x < dstw; x++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Rsh(64|32)x16 x y) => (SRA(D|W) x (LOCGR {s390x.GreaterOrEqual} <y.Type> y (MOVDconst <y.Type> [63]) (CMPWUconst (MOVHZreg y) [64])))
    (Rsh(64|32)x8  x y) => (SRA(D|W) x (LOCGR {s390x.GreaterOrEqual} <y.Type> y (MOVDconst <y.Type> [63]) (CMPWUconst (MOVBZreg y) [64])))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  5. test/closure3.dir/main.go

    			ppanic("x() != 1")
    		}
    	}
    
    	{
    		if y := func(x int) int { // ERROR "can inline main.func3"
    			return x + 2
    		}(40); y != 42 { // ERROR "inlining call to main.func3"
    			ppanic("y != 42")
    		}
    		if y := func(x int) int { // ERROR "can inline main.func4" "func literal does not escape"
    			return x + 2
    		}; y(40) != 42 { // ERROR "inlining call to main.func4"
    			ppanic("y(40) != 42")
    		}
    	}
    
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:29 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. cmd/testdata/xl-many-parts.meta

    ������������� �!�"�#�$�%�&�'�(�)�*�+�,�-�.�/�0�1�2�3�4�5�6�7�8�9�:�;�<�=�>�?�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������������������������������������������������������������������������������������...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 02 21:40:38 UTC 2023
    - 808.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (SUB x (SLLconst [c] y)) => (SUBshiftLL x y [c])
    (SUB (SLLconst [c] y) x) => (RSBshiftLL x y [c])
    (SUB x (SRLconst [c] y)) => (SUBshiftRL x y [c])
    (SUB (SRLconst [c] y) x) => (RSBshiftRL x y [c])
    (SUB x (SRAconst [c] y)) => (SUBshiftRA x y [c])
    (SUB (SRAconst [c] y) x) => (RSBshiftRA x y [c])
    (SUB x (SLL y z)) => (SUBshiftLLreg x y z)
    (SUB (SLL y z) x) => (RSBshiftLLreg x y z)
    (SUB x (SRL y z)) => (SUBshiftRLreg x y z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/logic_test.go

    		{"(y&x)&x", func(x, y int8) int8 { return (y & x) & x }, and},
    		{"x^(x^y)", func(x, y int8) int8 { return x ^ (x ^ y) }, y},
    		{"x^(y^x)", func(x, y int8) int8 { return x ^ (y ^ x) }, y},
    		{"(x^y)^x", func(x, y int8) int8 { return (x ^ y) ^ x }, y},
    		{"(y^x)^x", func(x, y int8) int8 { return (y ^ x) ^ x }, y},
    		{"-(y-x)", func(x, y int8) int8 { return -(y - x) }, func(x, y int8) int8 { return x - y }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Rsh8x(64|32|16|8)  <t> x y) && !shiftIsBounded(v) => (SARB <t> x (OR(Q|L|L|L) <y.Type> y (NOT(Q|L|L|L) <y.Type> (SBB(Q|L|L|L)carrymask <y.Type> (CMP(Q|L|W|B)const y [8])))))
    
    (Rsh64x(64|32|16|8) x y) && shiftIsBounded(v) => (SARQ x y)
    (Rsh32x(64|32|16|8) x y) && shiftIsBounded(v) => (SARL x y)
    (Rsh16x(64|32|16|8) x y) && shiftIsBounded(v) => (SARW x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  10. src/go/types/unify.go

    	// Interpretation of trace:
    	//   x ≡ y    attempt to unify types x and y
    	//   p ➞ y    type parameter p is set to type y (p is inferred to be y)
    	//   p ⇄ q    type parameters p and q match (p is inferred to be q and vice versa)
    	//   x ≢ y    types x and y cannot be unified
    	//   [p, q, ...] ➞ [x, y, ...]    mapping from type parameters to types
    	traceInference = false
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top