Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for namebuf (0.27 sec)

  1. src/internal/reflectlite/export_test.go

    func FirstMethodNameBytes(t Type) *byte {
    	_ = pinUnexpMethI
    
    	ut := t.uncommon()
    	if ut == nil {
    		panic("type has no methods")
    	}
    	m := ut.Methods()[0]
    	mname := t.(rtype).nameOff(m.Name)
    	if *mname.DataChecked(0, "name flag field")&(1<<2) == 0 {
    		panic("method name does not have pkgPath *string")
    	}
    	return mname.Bytes
    }
    
    type Buffer struct {
    	buf []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/debug/dwarf/buf.go

    func (u unknownFormat) version() int {
    	return 0
    }
    
    func (u unknownFormat) dwarf64() (bool, bool) {
    	return false, false
    }
    
    func (u unknownFormat) addrsize() int {
    	return 0
    }
    
    func makeBuf(d *Data, format dataFormat, name string, off Offset, data []byte) buf {
    	return buf{d, d.order, format, name, off, data, nil}
    }
    
    func (b *buf) uint8() uint8 {
    	if len(b.data) < 1 {
    		b.error("underflow")
    		return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. src/runtime/plugin.go

    // A ptabEntry is generated by the compiler for each exported function
    // and global variable in the main package of a plugin. It is used to
    // initialize the plugin module's symbol map.
    type ptabEntry struct {
    	name nameOff
    	typ  typeOff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top