Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,307 for y$ (0.04 sec)

  1. src/internal/diff/diff.go

    		// establishing that x[start.x:end.x] == y[start.y:end.y].
    		// Note that on the first (or last) iteration we may (or definitely do)
    		// have an empty match: start.x==end.x and start.y==end.y.
    		start := m
    		for start.x > done.x && start.y > done.y && x[start.x-1] == y[start.y-1] {
    			start.x--
    			start.y--
    		}
    		end := m
    		for end.x < len(x) && end.y < len(y) && x[end.x] == y[end.y] {
    			end.x++
    			end.y++
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. test/opt_branchlikely.go

    		y = g(y, z, x)
    	} else {
    		y++
    	}
    	if y == x { // ERROR "Branch prediction rule default < call"
    		y = g(y, z, x)
    	} else {
    	}
    	if y == 2 { // ERROR "Branch prediction rule default < call"
    		z++
    	} else {
    		y = g(z, x, y)
    	}
    	if y+z == 3 { // ERROR "Branch prediction rule call < exit"
    		println("ha ha")
    	} else {
    		panic("help help help")
    	}
    	if x != 0 { // ERROR "Branch prediction rule default < ret"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    (Div64 x y) => (DIVV x y)
    (Div64u ...) => (DIVVU ...)
    (Div32 x y) => (DIVV (SignExt32to64 x) (SignExt32to64 y))
    (Div32u x y) => (DIVVU (ZeroExt32to64 x) (ZeroExt32to64 y))
    (Div16 x y) => (DIVV (SignExt16to64 x) (SignExt16to64 y))
    (Div16u x y) => (DIVVU (ZeroExt16to64 x) (ZeroExt16to64 y))
    (Div8 x y) => (DIVV (SignExt8to64 x) (SignExt8to64 y))
    (Div8u x y) => (DIVVU (ZeroExt8to64 x) (ZeroExt8to64 y))
    (Div(32|64)F ...) => (DIV(F|D) ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  4. test/abi/named_results.go

    	a, b, c := 1, 4, 16
    	x := F(&a, &b, &c)
    	fmt.Printf("x = %d\n", x)
    
    	y := H("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    	z := H("Hello", "Pal!")
    	fmt.Println("len(z) =", len(z))
    	fmt.Println("z =", z)
    
    	fmt.Println()
    
    	y = K("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    	z = K("Hello", "Pal!")
    	fmt.Println("len(z) =", len(z))
    	fmt.Println("z =", z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/go/types/typeterm.go

    	switch {
    	case x == nil && y == nil:
    		return nil, nil // ∅ ∪ ∅ == ∅
    	case x == nil:
    		return y, nil // ∅ ∪ y == y
    	case y == nil:
    		return x, nil // x ∪ ∅ == x
    	case x.typ == nil:
    		return x, nil // 𝓤 ∪ y == 𝓤
    	case y.typ == nil:
    		return y, nil // x ∪ 𝓤 == 𝓤
    	}
    	// ∅ ⊂ x, y ⊂ 𝓤
    
    	if x.disjoint(y) {
    		return x, y // x ∪ y == (x, y) if x ∩ y == ∅
    	}
    	// x.typ == y.typ
    
    	// ~t ∪ ~t == ~t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typeparams/typeterm.go

    	switch {
    	case x == nil && y == nil:
    		return nil, nil // ∅ ∪ ∅ == ∅
    	case x == nil:
    		return y, nil // ∅ ∪ y == y
    	case y == nil:
    		return x, nil // x ∪ ∅ == x
    	case x.typ == nil:
    		return x, nil // 𝓤 ∪ y == 𝓤
    	case y.typ == nil:
    		return y, nil // x ∪ 𝓤 == 𝓤
    	}
    	// ∅ ⊂ x, y ⊂ 𝓤
    
    	if x.disjoint(y) {
    		return x, y // x ∪ y == (x, y) if x ∩ y == ∅
    	}
    	// x.typ == y.typ
    
    	// ~t ∪ ~t == ~t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 21:08:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Mod8u x y) => (Mod32u (ZeroExt8to32 x) (ZeroExt8to32 y))
    (Mod64 x y) && buildcfg.GOPPC64 >=9 => (MODSD x y)
    (Mod64 x y) && buildcfg.GOPPC64 <=8 => (SUB x (MULLD y (DIVD x y)))
    (Mod64u x y) && buildcfg.GOPPC64 >= 9 => (MODUD x y)
    (Mod64u x y) && buildcfg.GOPPC64 <= 8 => (SUB x (MULLD y (DIVDU x y)))
    (Mod32 x y) && buildcfg.GOPPC64 >= 9 => (MODSW x y)
    (Mod32 x y) && buildcfg.GOPPC64 <= 8 => (SUB x (MULLW y (DIVW x y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. src/image/ycbcr.go

    		return (y-p.Rect.Min.Y)*p.CStride + (x/2 - p.Rect.Min.X/2)
    	case YCbCrSubsampleRatio420:
    		return (y/2-p.Rect.Min.Y/2)*p.CStride + (x/2 - p.Rect.Min.X/2)
    	case YCbCrSubsampleRatio440:
    		return (y/2-p.Rect.Min.Y/2)*p.CStride + (x - p.Rect.Min.X)
    	case YCbCrSubsampleRatio411:
    		return (y-p.Rect.Min.Y)*p.CStride + (x/4 - p.Rect.Min.X/4)
    	case YCbCrSubsampleRatio410:
    		return (y/2-p.Rect.Min.Y/2)*p.CStride + (x/4 - p.Rect.Min.X/4)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. src/go/types/predicates.go

    		if y, ok := y.(*Basic); ok {
    			return x.kind == y.kind
    		}
    
    	case *Array:
    		// Two array types are identical if they have identical element types
    		// and the same array length.
    		if y, ok := y.(*Array); ok {
    			// If one or both array lengths are unknown (< 0) due to some error,
    			// assume they are the same to avoid spurious follow-on errors.
    			return (x.len < 0 || y.len < 0 || x.len == y.len) && c.identical(x.elem, y.elem, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (Div8 x y) => (Select1 (DIVV (SignExt8to64 x) (SignExt8to64 y)))
    (Div8u x y) => (Select1 (DIVVU (ZeroExt8to64 x) (ZeroExt8to64 y)))
    (Div(32|64)F ...) => (DIV(F|D) ...)
    
    (Mod64 x y) => (Select0 (DIVV x y))
    (Mod64u x y) => (Select0 (DIVVU x y))
    (Mod32 x y) => (Select0 (DIVV (SignExt32to64 x) (SignExt32to64 y)))
    (Mod32u x y) => (Select0 (DIVVU (ZeroExt32to64 x) (ZeroExt32to64 y)))
    (Mod16 x y) => (Select0 (DIVV (SignExt16to64 x) (SignExt16to64 y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
Back to top