Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Abbrevs (0.12 sec)

  1. src/cmd/internal/dwarf/dwarf.go

    	}
    	return uint8(expandedForm)
    }
    
    // Abbrevs returns the finalized abbrev array for the platform,
    // expanding any DW_FORM pseudo-ops to real values.
    func Abbrevs() []dwAbbrev {
    	if abbrevsFinalized {
    		return abbrevs
    	}
    	abbrevs = append(abbrevs, putvarAbbrevs...)
    	for i := 1; i < len(abbrevs); i++ {
    		for j := 0; j < len(abbrevs[i].attr); j++ {
    			abbrevs[i].attr[j].form = expandPseudoForm(abbrevs[i].attr[j].form)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. src/debug/dwarf/entry_test.go

    	for i := 0; i <= len(info); i++ {
    		truncated := info[:i]
    		dw, err := New(abbrev, aranges, frame, truncated, nil, nil, nil, nil)
    		if err == nil {
    			t.Errorf("expected error")
    		} else {
    			if dw != nil {
    				t.Errorf("got non-nil dw, wanted nil")
    			}
    		}
    	}
    }
    
    func TestIssue52045(t *testing.T) {
    	var abbrev, aranges, frame, line, pubnames, ranges, str []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. src/time/zoneinfo_read.go

    		var b byte
    		if b, ok = zonedata.byte(); !ok {
    			return nil, errBadData
    		}
    		zones[i].isDST = b != 0
    		if b, ok = zonedata.byte(); !ok || int(b) >= len(abbrev) {
    			return nil, errBadData
    		}
    		zones[i].name = byteString(abbrev[b:])
    		if runtime.GOOS == "aix" && len(name) > 8 && (name[:8] == "Etc/GMT+" || name[:8] == "Etc/GMT-") {
    			// There is a bug with AIX 7.2 TL 0 with files in Etc,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/debug/pe/file.go

    			}
    			b = dbuf
    		}
    		return b, nil
    	}
    
    	// There are many other DWARF sections, but these
    	// are the ones the debug/dwarf package uses.
    	// Don't bother loading others.
    	var dat = map[string][]byte{"abbrev": nil, "info": nil, "str": nil, "line": nil, "ranges": nil}
    	for _, s := range f.Sections {
    		suffix := dwarfSuffix(s)
    		if suffix == "" {
    			continue
    		}
    		if _, ok := dat[suffix]; !ok {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. Makefile

        sed 's#RELEASE\.\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)T\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)Z#\1-\2-\3T\4:\5:\6Z#')))
    	$(eval VERSION := $(shell git describe --tags --abbrev=0).hotfix.$(shell git rev-parse --short HEAD))
    
    hotfix: hotfix-vars clean install ## builds minio binary with hotfix tags
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. src/debug/dwarf/entry.go

    	"strconv"
    )
    
    // a single entry's description: a sequence of attributes
    type abbrev struct {
    	tag      Tag
    	children bool
    	field    []afield
    }
    
    type afield struct {
    	attr  Attr
    	fmt   format
    	class Class
    	val   int64 // for formImplicitConst
    }
    
    // a map from entry format ids to their descriptions
    type abbrevTable map[uint32]abbrev
    
    // parseAbbrev returns the abbreviation table that starts at byte off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  7. src/debug/dwarf/line_test.go

    	var aranges, frame, pubnames, ranges, str []byte
    	abbrev := []byte{0x10, 0x20, 0x20, 0x20, 0x21, 0x20, 0x10, 0x21, 0x61,
    		0x0, 0x0, 0xff, 0x20, 0xff, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
    		0x20, 0x20, 0x20, 0x20, 0x20, 0x20}
    	info := []byte{0x0, 0x0, 0x0, 0x9, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0,
    		0x20, 0x10, 0x10}
    	line := []byte{0x20}
    	Data0, err := New(abbrev, aranges, frame, info, line, pubnames, ranges, str)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. src/internal/xcoff/file.go

    		if s != nil {
    			b, err := s.Data()
    			if err != nil && uint64(len(b)) < s.Size {
    				return nil, err
    			}
    			dat[i] = b
    		}
    	}
    
    	abbrev, info, line, ranges, str := dat[0], dat[1], dat[2], dat[3], dat[4]
    	return dwarf.New(abbrev, nil, nil, info, line, nil, ranges, str)
    }
    
    // readImportID returns the import file IDs stored inside the .loader section.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. src/debug/macho/file.go

    			}
    			b = dbuf
    		}
    		return b, nil
    	}
    
    	// There are many other DWARF sections, but these
    	// are the ones the debug/dwarf package uses.
    	// Don't bother loading others.
    	var dat = map[string][]byte{"abbrev": nil, "info": nil, "str": nil, "line": nil, "ranges": nil}
    	for _, s := range f.Sections {
    		suffix := dwarfSuffix(s)
    		if suffix == "" {
    			continue
    		}
    		if _, ok := dat[suffix]; !ok {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. src/debug/elf/file.go

    				return nil, err
    			}
    		}
    		return b, nil
    	}
    
    	// There are many DWARf sections, but these are the ones
    	// the debug/dwarf package started with.
    	var dat = map[string][]byte{"abbrev": nil, "info": nil, "str": nil, "line": nil, "ranges": nil}
    	for i, s := range f.Sections {
    		suffix := dwarfSuffix(s)
    		if suffix == "" {
    			continue
    		}
    		if _, ok := dat[suffix]; !ok {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top