Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for phi (0.08 sec)

  1. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    03A5          ; mapped                 ; 03C5          # 1.1  GREEK CAPITAL LETTER UPSILON
    03A6          ; mapped                 ; 03C6          # 1.1  GREEK CAPITAL LETTER PHI
    03A7          ; mapped                 ; 03C7          # 1.1  GREEK CAPITAL LETTER CHI
    03A8          ; mapped                 ; 03C8          # 1.1  GREEK CAPITAL LETTER PSI
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    			// Since target and load are in the same block
    			// we can stop searching when we leave the block.
    			continue
    		}
    		if v.Op == OpPhi {
    			// A Phi implies we have reached the top of the block.
    			// The memory phi, if it exists, is always
    			// the first logical store in the block.
    			continue
    		}
    		if v.Type.IsTuple() && v.Type.FieldType(1).IsMemory() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/encoding/xml/xml.go

    	"Nu":       "\u039D",
    	"Xi":       "\u039E",
    	"Omicron":  "\u039F",
    	"Pi":       "\u03A0",
    	"Rho":      "\u03A1",
    	"Sigma":    "\u03A3",
    	"Tau":      "\u03A4",
    	"Upsilon":  "\u03A5",
    	"Phi":      "\u03A6",
    	"Chi":      "\u03A7",
    	"Psi":      "\u03A8",
    	"Omega":    "\u03A9",
    	"alpha":    "\u03B1",
    	"beta":     "\u03B2",
    	"gamma":    "\u03B3",
    	"delta":    "\u03B4",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. test/fixedbugs/issue60982.go

    	if x >= 1000 {
    		if b { // from #61041
    			var a struct{ f int64 }
    			_ = max(0, a.f)
    		}
    
    		return max(x, 2000)
    	}
    	// generate 1000 basic blocks to put this function
    	// well into the "large function" phi generation algorithm.
    	switch x {
    	case 0:
    		return 0
    	case 1:
    		return 1
    	case 2:
    		return 2
    	case 3:
    		return 3
    	case 4:
    		return 4
    	case 5:
    		return 5
    	case 6:
    		return 6
    	case 7:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 28 16:07:47 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	// assign new elements to slots
    	s.startBlock(assign)
    	p = s.variable(ptrVar, pt)                      // generates phi for ptr
    	l = s.variable(lenVar, types.Types[types.TINT]) // generates phi for len
    	if !inplace {
    		c = s.variable(capVar, types.Types[types.TINT]) // generates phi for cap
    	}
    
    	if inplace {
    		// Update length in place.
    		// We have to wait until here to make sure growslice succeeded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/math/big/nat.go

    	for i := 2; i < 1<<n; i += 2 {
    		p2, p, p1 := powers[i/2], powers[i], powers[i+1]
    		*p = p.sqr(*p2)
    		*p = p.trunc(*p, logM)
    		*p1 = p1.mul(*p, x)
    		*p1 = p1.trunc(*p1, logM)
    	}
    
    	// Because phi(2**logM) = 2**(logM-1), x**(2**(logM-1)) = 1,
    	// so we can compute x**(y mod 2**(logM-1)) instead of x**y.
    	// That is, we can throw away all but the bottom logM-1 bits of y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	// introducing copies just to clean them up again.
    	if result[0] != '(' {
    		// variable
    		if top {
    			// It in not safe in general to move a variable between blocks
    			// (and particularly not a phi node).
    			// Introduce a copy.
    			rr.add(stmtf("v.copyOf(%s)", result))
    		}
    		return result
    	}
    
    	w := normalizeWhitespace(result)
    	if prev := cse[w]; prev != "" {
    		return prev
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    				return !opcodeTable[v.Op].zeroWidth
    			} else {
    				return v.Op == OpInitMem
    			}
    		}
    
    		// Examine the prolog portion of the block to process special
    		// zero-width ops such as Arg, Phi, LoweredGetClosurePtr (etc)
    		// whose lifetimes begin at the block starting point. In an
    		// entry block, allow for the possibility that we may see Arg
    		// ops that appear _after_ other non-zero-width operations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewritegeneric.go

    			break
    		}
    		v.reset(OpConst64)
    		v.AuxInt = int64ToAuxInt(c)
    		return true
    	}
    	// match: (Phi <t> nx:(Not x) ny:(Not y))
    	// cond: nx.Uses == 1 && ny.Uses == 1
    	// result: (Not (Phi <t> x y))
    	for {
    		if len(v.Args) != 2 {
    			break
    		}
    		t := v.Type
    		_ = v.Args[1]
    		nx := v.Args[0]
    		if nx.Op != OpNot {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"MinInt32", Const, 0},
    		{"MinInt64", Const, 0},
    		{"MinInt8", Const, 0},
    		{"Mod", Func, 0},
    		{"Modf", Func, 0},
    		{"NaN", Func, 0},
    		{"Nextafter", Func, 0},
    		{"Nextafter32", Func, 4},
    		{"Phi", Const, 0},
    		{"Pi", Const, 0},
    		{"Pow", Func, 0},
    		{"Pow10", Func, 0},
    		{"Remainder", Func, 0},
    		{"Round", Func, 10},
    		{"RoundToEven", Func, 10},
    		{"Signbit", Func, 0},
    		{"Sin", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top