Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for isptrto (0.15 sec)

  1. api/go1.22.txt

    pkg net/http, method (*Request) SetPathValue(string, string) #61410
    pkg net/netip, method (AddrPort) Compare(AddrPort) int #61642
    pkg os, method (*File) WriteTo(io.Writer) (int64, error) #58808
    pkg reflect, func PtrTo //deprecated #59599
    pkg reflect, func TypeFor[$0 interface{}]() Type #60088
    pkg slices, func Concat[$0 interface{ ~[]$1 }, $1 interface{}](...$0) $0 #56353
    pkg syscall (linux-386), type SysProcAttr struct, PidFD *int #51246
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 20:54:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. docs/debugging/xl-meta/main.go

    								b2 = b3
    							}
    						}
    						toPrint = append(toPrint, fmt.Sprintf("\t%s: %s", string(b), string(b2)))
    					} else if c.Bool("combine") && isPart.MatchString(file.Name) {
    						// name := isPart.FindString(file.Name)
    						name := strings.ReplaceAll(file.Name, ":", "_")
    						r, err := file.Open()
    						if err != nil {
    							return err
    						}
    						all, err := io.ReadAll(r)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/object.go

    	// check if the receiver is set (we cannot just look for non-nil obj.typ).
    	if sig, _ := obj.typ.(*Signature); sig != nil && sig.recv != nil {
    		_, isPtr := deref(sig.recv.typ)
    		return isPtr
    	}
    
    	// If a method's type is not set it may be a method/function that is:
    	// 1) client-supplied (via NewFunc with no signature), or
    	// 2) internally created but not yet type-checked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. src/encoding/gob/decode.go

    	}
    	dec.decodeArrayHelper(state, value, elemOp, length, ovfl, helper)
    }
    
    // decodeIntoValue is a helper for map decoding.
    func decodeIntoValue(state *decoderState, op decOp, isPtr bool, value reflect.Value, instr *decInstr) reflect.Value {
    	v := value
    	if isPtr {
    		v = decAlloc(value)
    	}
    
    	op(instr, state, v)
    	return value
    }
    
    // decodeMap decodes a map and stores it in value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/func.go

    		}
    		var e Node = NewLinksymExpr(pos, name.LinksymABI(abi), types.Types[types.TUINTPTR])
    		e = NewAddrExpr(pos, e)
    		e.SetType(types.Types[types.TUINTPTR].PtrTo())
    		e = NewConvExpr(pos, OCONVNOP, types.Types[types.TUINTPTR], e)
    		e.SetTypecheck(1)
    		return e
    	}
    	// fn is not a defined function. It must be ABIInternal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/go/types/object.go

    	// check if the receiver is set (we cannot just look for non-nil obj.typ).
    	if sig, _ := obj.typ.(*Signature); sig != nil && sig.recv != nil {
    		_, isPtr := deref(sig.recv.typ)
    		return isPtr
    	}
    
    	// If a method's type is not set it may be a method/function that is:
    	// 1) client-supplied (via NewFunc with no signature), or
    	// 2) internally created but not yet type-checked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/builtin.go

    	if tl != nil {
    		s += fmt.Sprintf("\n\t%v", tl)
    	}
    	if tr != nil {
    		s += fmt.Sprintf("\n\t%v", tr)
    	}
    
    	// common mistake: *struct and *interface.
    	if tl != nil && tr != nil && tl.IsPtr() && tr.IsPtr() {
    		if tl.Elem().IsStruct() && tr.Elem().IsInterface() {
    			s += "\n\t(*struct vs *interface)"
    		} else if tl.Elem().IsInterface() && tr.Elem().IsStruct() {
    			s += "\n\t(*interface vs *struct)"
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. src/go/doc/reader.go

    	visited[typ] = true
    	for embedded, isPtr := range typ.embedded {
    		// Once an embedded type is embedded as a pointer type
    		// all embedded types in those types are treated like
    		// pointer types for the purpose of the receiver type
    		// computation; i.e., embeddedIsPtr is sticky for this
    		// embedding hierarchy.
    		thisEmbeddedIsPtr := embeddedIsPtr || isPtr
    		for _, m := range embedded.methods {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/decompose.go

    	}
    	v.reset(OpStringMake)
    	v.AddArg(ptr)
    	v.AddArg(len)
    }
    
    func decomposeSlicePhi(v *Value) {
    	types := &v.Block.Func.Config.Types
    	ptrType := v.Type.Elem().PtrTo()
    	lenType := types.Int
    
    	ptr := v.Block.NewValue0(v.Pos, OpPhi, ptrType)
    	len := v.Block.NewValue0(v.Pos, OpPhi, lenType)
    	cap := v.Block.NewValue0(v.Pos, OpPhi, lenType)
    	for _, a := range v.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/func.go

    func tcUnsafeSlice(n *ir.BinaryExpr) *ir.BinaryExpr {
    	n.X = Expr(n.X)
    	n.Y = Expr(n.Y)
    	if n.X.Type() == nil || n.Y.Type() == nil {
    		n.SetType(nil)
    		return n
    	}
    	t := n.X.Type()
    	if !t.IsPtr() {
    		base.Errorf("first argument to unsafe.Slice must be pointer; have %L", t)
    	} else if t.Elem().NotInHeap() {
    		// TODO(mdempsky): This can be relaxed, but should only affect the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top