Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for efaceOf (0.24 sec)

  1. src/runtime/map.go

    // complications with instrumentation (coverage, etc).
    func mapinitnoop()
    
    // mapclone for implementing maps.Clone
    //
    //go:linkname mapclone maps.clone
    func mapclone(m any) any {
    	e := efaceOf(&m)
    	e.data = unsafe.Pointer(mapclone2((*maptype)(unsafe.Pointer(e._type)), (*hmap)(e.data)))
    	return m
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    // If ep points to the stack, only static live information will be returned
    // (i.e. not for objects which are only dynamically live stack objects).
    func getgcmask(ep any) (mask []byte) {
    	e := *efaceOf(&ep)
    	p := e.data
    	t := e._type
    
    	var et *_type
    	if t.Kind_&abi.KindMask != abi.Pointer {
    		throw("bad argument to getgcmask: expected type to be a pointer to the value type whose mask is being queried")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    	const struct __go_type_descriptor *__type_descriptor;
    	void *__object;
    } Eface;
    
    extern void runtimeCgoCheckPointer(Eface, Eface)
    	__asm__("runtime.cgoCheckPointer")
    	__attribute__((weak));
    
    extern void localCgoCheckPointer(Eface, Eface)
    	__asm__("GCCGOSYMBOLPREF._cgoCheckPointer");
    
    void localCgoCheckPointer(Eface ptr, Eface arg) {
    	if(runtimeCgoCheckPointer) {
    		runtimeCgoCheckPointer(ptr, arg);
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    		arch:     ctxt.Arch,
    		tmap:     make(map[string]loader.Sym),
    		tdmap:    make(map[loader.Sym]loader.Sym),
    		rtmap:    make(map[loader.Sym]loader.Sym),
    	}
    	d.typeRuntimeEface = d.lookupOrDiag("type:runtime.eface")
    	d.typeRuntimeIface = d.lookupOrDiag("type:runtime.iface")
    
    	if ctxt.HeadType == objabi.Haix {
    		// Initial map used to store package size for each DWARF section.
    		dwsectCUSize = make(map[string]uint64)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top