Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AttrBitOffset (0.11 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/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)
  3. 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)
Back to top