Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StrideBitSize (0.08 sec)

  1. 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: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 18 15:07:34 UTC 2024
    - 97.1K bytes
    - Viewed (0)
  2. 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: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top