Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for AttrBitOffset (0.37 sec)

  1. src/debug/dwarf/type.go

    		//	AttrName: name of base type in programming language of the compilation unit [required]
    		//	AttrEncoding: encoding value for type (encFloat etc) [required]
    		//	AttrByteSize: size of type in bytes [required]
    		//	AttrBitOffset: bit offset of value within containing storage unit
    		//	AttrDataBitOffset: bit offset of value within containing storage unit
    		//	AttrBitSize: size in bits
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  2. src/debug/dwarf/attr_string.go

    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[AttrSibling-1]
    	_ = x[AttrLocation-2]
    	_ = x[AttrName-3]
    	_ = x[AttrOrdering-9]
    	_ = x[AttrByteSize-11]
    	_ = x[AttrBitOffset-12]
    	_ = x[AttrBitSize-13]
    	_ = x[AttrStmtList-16]
    	_ = x[AttrLowpc-17]
    	_ = x[AttrHighpc-18]
    	_ = x[AttrLanguage-19]
    	_ = x[AttrDiscr-21]
    	_ = x[AttrDiscrValue-22]
    	_ = x[AttrVisibility-23]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 03 17:32:37 UTC 2019
    - 7.9K bytes
    - Viewed (0)
  3. src/debug/dwarf/const.go

    type Attr uint32
    
    const (
    	AttrSibling        Attr = 0x01
    	AttrLocation       Attr = 0x02
    	AttrName           Attr = 0x03
    	AttrOrdering       Attr = 0x09
    	AttrByteSize       Attr = 0x0B
    	AttrBitOffset      Attr = 0x0C
    	AttrBitSize        Attr = 0x0D
    	AttrStmtList       Attr = 0x10
    	AttrLowpc          Attr = 0x11
    	AttrHighpc         Attr = 0x12
    	AttrLanguage       Attr = 0x13
    	AttrDiscr          Attr = 0x15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. src/debug/dwarf/entry.go

    // are encoded as block values in DWARF 2 and 3. See DWARF 4, Figure
    // 20.
    var attrIsExprloc = map[Attr]bool{
    	AttrLocation:      true,
    	AttrByteSize:      true,
    	AttrBitOffset:     true,
    	AttrBitSize:       true,
    	AttrStringLength:  true,
    	AttrLowerBound:    true,
    	AttrReturnAddr:    true,
    	AttrStrideSize:    true,
    	AttrUpperBound:    true,
    	AttrCount:         true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"AttrAlignment", Const, 14},
    		{"AttrAllocated", Const, 0},
    		{"AttrArtificial", Const, 0},
    		{"AttrAssociated", Const, 0},
    		{"AttrBaseTypes", Const, 0},
    		{"AttrBinaryScale", Const, 14},
    		{"AttrBitOffset", Const, 0},
    		{"AttrBitSize", Const, 0},
    		{"AttrByteSize", Const, 0},
    		{"AttrCallAllCalls", Const, 14},
    		{"AttrCallAllSourceCalls", Const, 14},
    		{"AttrCallAllTailCalls", Const, 14},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg debug/dwarf, const AttrAllocated Attr
    pkg debug/dwarf, const AttrArtificial Attr
    pkg debug/dwarf, const AttrAssociated Attr
    pkg debug/dwarf, const AttrBaseTypes Attr
    pkg debug/dwarf, const AttrBitOffset Attr
    pkg debug/dwarf, const AttrBitSize Attr
    pkg debug/dwarf, const AttrByteSize Attr
    pkg debug/dwarf, const AttrCallColumn Attr
    pkg debug/dwarf, const AttrCallFile Attr
    pkg debug/dwarf, const AttrCallLine Attr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg debug/dwarf, const AttrAllocated = 78
    pkg debug/dwarf, const AttrArtificial = 52
    pkg debug/dwarf, const AttrAssociated = 79
    pkg debug/dwarf, const AttrBaseTypes = 53
    pkg debug/dwarf, const AttrBitOffset = 12
    pkg debug/dwarf, const AttrBitSize = 13
    pkg debug/dwarf, const AttrByteSize = 11
    pkg debug/dwarf, const AttrCallColumn = 87
    pkg debug/dwarf, const AttrCallFile = 88
    pkg debug/dwarf, const AttrCallLine = 89
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top