Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for unsafeaddr (0.19 sec)

  1. src/cmd/compile/internal/walk/expr.go

    		return n
    
    	case ir.ODEREF:
    		n := n.(*ir.StarExpr)
    		n.X = walkExpr(n.X, init)
    		return n
    
    	case ir.OMAKEFACE, ir.OAND, ir.OANDNOT, ir.OSUB, ir.OMUL, ir.OADD, ir.OOR, ir.OXOR, ir.OLSH, ir.ORSH,
    		ir.OUNSAFEADD:
    		n := n.(*ir.BinaryExpr)
    		n.X = walkExpr(n.X, init)
    		n.Y = walkExpr(n.Y, init)
    		return n
    
    	case ir.OUNSAFESLICE:
    		n := n.(*ir.BinaryExpr)
    		return walkUnsafeSlice(n, init)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/typecheck.go

    		n := n.(*ir.CallExpr)
    		return tcPrint(n)
    
    	case ir.OPANIC:
    		n := n.(*ir.UnaryExpr)
    		return tcPanic(n)
    
    	case ir.ORECOVER:
    		n := n.(*ir.CallExpr)
    		return tcRecover(n)
    
    	case ir.OUNSAFEADD:
    		n := n.(*ir.BinaryExpr)
    		return tcUnsafeAdd(n)
    
    	case ir.OUNSAFESLICE:
    		n := n.(*ir.BinaryExpr)
    		return tcUnsafeSlice(n)
    
    	case ir.OUNSAFESLICEDATA:
    		n := n.(*ir.UnaryExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg reflect, method (Value) TryRecv() (Value, bool)
    pkg reflect, method (Value) TrySend(Value) bool
    pkg reflect, method (Value) Type() Type
    pkg reflect, method (Value) Uint() uint64
    pkg reflect, method (Value) UnsafeAddr() uintptr
    pkg reflect, type ChanDir int
    pkg reflect, type Kind uint
    pkg reflect, type Method struct
    pkg reflect, type Method struct, Func Value
    pkg reflect, type Method struct, Index int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		var rtype *ssa.Value
    		if x, ok := n.X.(*ir.DynamicType); ok && x.Op() == ir.ODYNAMICTYPE {
    			rtype = s.expr(x.RType)
    		}
    		return s.newObject(n.Type().Elem(), rtype)
    
    	case ir.OUNSAFEADD:
    		n := n.(*ir.BinaryExpr)
    		ptr := s.expr(n.X)
    		len := s.expr(n.Y)
    
    		// Force len to uintptr to prevent misuse of garbage bits in the
    		// upper part of the register (#48536).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top