Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for StrideBitSize (0.24 sec)

  1. src/debug/dwarf/type.go

    func (t *QualType) Size() int64 { return t.Type.Size() }
    
    // An ArrayType represents a fixed size array type.
    type ArrayType struct {
    	CommonType
    	Type          Type
    	StrideBitSize int64 // if > 0, number of bits to hold each element
    	Count         int64 // if == -1, an incomplete array, like char x[].
    }
    
    func (t *ArrayType) String() string {
    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/cmd/cgo/gcc.go

    		if t.Size != c.ptrSize {
    			fatalf("%s: unexpected: %d-byte address type - %s", lineno(pos), t.Size, dtype)
    		}
    		t.Go = c.uintptr
    		t.Align = t.Size
    
    	case *dwarf.ArrayType:
    		if dt.StrideBitSize > 0 {
    			// Cannot represent bit-sized elements in Go.
    			t.Go = c.Opaque(t.Size)
    			break
    		}
    		count := dt.Count
    		if count == -1 {
    			// Indicates flexible array member, which Go doesn't support.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(Tag).String", Method, 0},
    		{"AddrType", Type, 0},
    		{"AddrType.BasicType", Field, 0},
    		{"ArrayType", Type, 0},
    		{"ArrayType.CommonType", Field, 0},
    		{"ArrayType.Count", Field, 0},
    		{"ArrayType.StrideBitSize", Field, 0},
    		{"ArrayType.Type", Field, 0},
    		{"Attr", Type, 0},
    		{"AttrAbstractOrigin", Const, 0},
    		{"AttrAccessibility", Const, 0},
    		{"AttrAddrBase", Const, 14},
    		{"AttrAddrClass", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg debug/dwarf, type AddrType struct, embedded BasicType
    pkg debug/dwarf, type ArrayType struct
    pkg debug/dwarf, type ArrayType struct, Count int64
    pkg debug/dwarf, type ArrayType struct, StrideBitSize int64
    pkg debug/dwarf, type ArrayType struct, Type Type
    pkg debug/dwarf, type ArrayType struct, embedded CommonType
    pkg debug/dwarf, type Attr uint32
    pkg debug/dwarf, type BasicType struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top