Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AttrBitOffset (0.13 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)
  4. 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)
Back to top