Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for namebuf (0.12 sec)

  1. src/runtime/symtab.go

    				break
    			}
    		}
    	}
    	return res, true
    }
    
    // funcName returns the string at nameOff in the function name table.
    func (md *moduledata) funcName(nameOff int32) string {
    	if nameOff == 0 {
    		return ""
    	}
    	return gostringnocopy(&md.funcnametab[nameOff])
    }
    
    // FuncForPC returns a *[Func] describing the function that contains the
    // given program counter address, or else nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. src/go/ast/filter.go

    	FilterUnassociatedComments
    	// If set, duplicate import declarations are excluded.
    	FilterImportDuplicates
    )
    
    // nameOf returns the function (foo) or method name (foo.bar) for
    // the given function declaration. If the AST is incorrect for the
    // receiver, it assumes a function instead.
    func nameOf(f *FuncDecl) string {
    	if r := f.Recv; r != nil && len(r.List) == 1 {
    		// looks like a correct receiver declaration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pcln.go

    		}
    		off = sb.SetUint32(ctxt.Arch, off, uint32(entryOff))
    
    		// nameOff int32
    		nameOff, ok := nameOffsets[s]
    		if !ok {
    			panic("couldn't find function name offset")
    		}
    		off = sb.SetUint32(ctxt.Arch, off, uint32(nameOff))
    
    		// args int32
    		// TODO: Move into funcinfo.
    		args := uint32(0)
    		if fi.Valid() {
    			args = uint32(fi.Args())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. src/runtime/iface.go

    		i := &inter.Methods[k]
    		itype := toRType(&inter.Type).typeOff(i.Typ)
    		name := toRType(&inter.Type).nameOff(i.Name)
    		iname := name.Name()
    		ipkg := pkgPath(name)
    		if ipkg == "" {
    			ipkg = inter.PkgPath.Name()
    		}
    		for ; j < nt; j++ {
    			t := &xmhdr[j]
    			rtyp := toRType(typ)
    			tname := rtyp.nameOff(t.Name)
    			if rtyp.typeOff(t.Mtyp) == itype && tname.Name() == iname {
    				pkgPath := pkgPath(tname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/value.go

    			v.Fatalf("spill/restore type %s doesn't fit in slot type %s", v.Type, loc.Type)
    		}
    		return loc.N, loc.Off
    	}
    	// Assume it is a register, return its spill slot, which needs to be live
    	nameOff := v.Aux.(*AuxNameOffset)
    	return nameOff.Name, nameOff.Offset
    }
    
    // CanSSA reports whether values of type t can be represented as a Value.
    func CanSSA(t *types.Type) bool {
    	types.CalcSize(t)
    	if t.Size() > int64(4*types.PtrSize) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadelf/ldelf.go

    	if err := elfmap(elfobj, sect); err != nil {
    		return errorf("malformed elf file: %v", err)
    	}
    	for i := 0; uint(i) < elfobj.nsect; i++ {
    		if elfobj.sect[i].nameoff != 0 {
    			elfobj.sect[i].name = cstring(sect.base[elfobj.sect[i].nameoff:])
    		}
    	}
    
    	// load string table for symbols into memory.
    	elfobj.symtab = section(elfobj, ".symtab")
    
    	if elfobj.symtab == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. src/debug/dwarf/line.go

    			if uint64(int(off)) != off {
    				return "", 0, 0, DecodeError{"line", r.buf.off, "strp/line_strp offset out of range"}
    			}
    			var b1 buf
    			if lf.form == formStrp {
    				b1 = makeBuf(r.buf.dwarf, r.buf.format, "str", 0, r.str)
    			} else {
    				b1 = makeBuf(r.buf.dwarf, r.buf.format, "line_str", 0, r.lineStr)
    			}
    			b1.skip(int(off))
    			str = b1.string()
    			if b1.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  8. src/runtime/heapdump.go

    	// dump the type
    	dumpint(tagType)
    	dumpint(uint64(uintptr(unsafe.Pointer(t))))
    	dumpint(uint64(t.Size_))
    	rt := toRType(t)
    	if x := t.Uncommon(); x == nil || rt.nameOff(x.PkgPath).Name() == "" {
    		dumpstr(rt.string())
    	} else {
    		pkgpath := rt.nameOff(x.PkgPath).Name()
    		name := rt.name()
    		dumpint(uint64(uintptr(len(pkgpath)) + 1 + uintptr(len(name))))
    		dwrite(unsafe.Pointer(unsafe.StringData(pkgpath)), uintptr(len(pkgpath)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/runtime/runtime1.go

    // See go.dev/issue/67401.
    //
    //go:linkname reflect_resolveNameOff reflect.resolveNameOff
    func reflect_resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer {
    	return unsafe.Pointer(resolveNameOff(ptrInModule, nameOff(off)).Bytes)
    }
    
    // reflect_resolveTypeOff resolves an *rtype offset from a base type.
    //
    // reflect_resolveTypeOff is meant for package reflect,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. src/runtime/os_linux.go

    var sysTHPSizePath = []byte("/sys/kernel/mm/transparent_hugepage/hpage_pmd_size\x00")
    
    func getHugePageSize() uintptr {
    	var numbuf [20]byte
    	fd := open(&sysTHPSizePath[0], 0 /* O_RDONLY */, 0)
    	if fd < 0 {
    		return 0
    	}
    	ptr := noescape(unsafe.Pointer(&numbuf[0]))
    	n := read(fd, ptr, int32(len(numbuf)))
    	closefd(fd)
    	if n <= 0 {
    		return 0
    	}
    	n-- // remove trailing newline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top