Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ByteOffset (0.2 sec)

  1. src/cmd/cgo/gcc.go

    			continue
    		}
    
    		// Round off up to talign, assumed to be a power of 2.
    		off = (off + talign - 1) &^ (talign - 1)
    
    		if f.ByteOffset > off {
    			fld, sizes = c.pad(fld, sizes, f.ByteOffset-off)
    			off = f.ByteOffset
    		}
    		if f.ByteOffset < off {
    			// Drop a packed field that we can't represent.
    			continue
    		}
    
    		n := len(fld)
    		fld = fld[0 : n+1]
    		if name == "" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg debug/dwarf, type StructField struct
    pkg debug/dwarf, type StructField struct, BitOffset int64
    pkg debug/dwarf, type StructField struct, BitSize int64
    pkg debug/dwarf, type StructField struct, ByteOffset int64
    pkg debug/dwarf, type StructField struct, ByteSize int64
    pkg debug/dwarf, type StructField struct, Name string
    pkg debug/dwarf, type StructField struct, Type Type
    pkg debug/dwarf, type StructType struct
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
Back to top