Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StrideBitSize (0.6 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: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. 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)
Back to top