Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for phi2 (0.18 sec)

  1. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⊥":                            "\u22a5",
    	"‱":                         "\u2031",
    	"𝔭":                             "\U0001d52d",
    	"φ":                             "\u03c6",
    	"ϕ":                            "\u03d5",
    	"ℳ":                          "\u2133",
    	"☎":                           "\u260e",
    	"π":                              "\u03c0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Add(64|32|16|8) x (Sub(64|32|16|8) y x)) => y
    (Add(64|32|16|8) x (Add(64|32|16|8) y (Sub(64|32|16|8) z x))) => (Add(64|32|16|8) y z)
    
    // basic phi simplifications
    (Phi (Const8  [c]) (Const8  [c])) => (Const8  [c])
    (Phi (Const16 [c]) (Const16 [c])) => (Const16 [c])
    (Phi (Const32 [c]) (Const32 [c])) => (Const32 [c])
    (Phi (Const64 [c]) (Const64 [c])) => (Const64 [c])
    
    // slice and interface comparisons
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top