Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Flgstoff (0.1 sec)

  1. src/internal/xcoff/ar.go

    	// Sizeof
    	FL_HSZ_BIG = 0x80
    	AR_HSZ_BIG = 0x70
    )
    
    type bigarFileHeader struct {
    	Flmagic    [SAIAMAG]byte // Archive magic string
    	Flmemoff   [20]byte      // Member table offset
    	Flgstoff   [20]byte      // 32-bits global symtab offset
    	Flgst64off [20]byte      // 64-bits global symtab offset
    	Flfstmoff  [20]byte      // First member offset
    	Fllstmoff  [20]byte      // Last member offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/internal/xcoff/xcoff.go

    	Listlen  uint32 // Length of import file ID string table
    	Lnimpid  uint32 // Number of import file IDs
    	Limpoff  uint32 // Offset to start of import file IDs
    	Lstlen   uint32 // Length of string table
    	Lstoff   uint32 // Offset to start of string table
    }
    
    type LoaderHeader64 struct {
    	Lversion uint32 // Loader section version number
    	Lnsyms   uint32 // Number of symbol table entries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/internal/xcoff/file.go

    			return nil, err
    		}
    		stlen = lhdr.Lstlen
    		stoff = uint64(lhdr.Lstoff)
    		nsyms = lhdr.Lnsyms
    		symoff = LDHDRSZ_32
    	case U64_TOCMAGIC:
    		lhdr := new(LoaderHeader64)
    		if err := binary.Read(s.sr, binary.BigEndian, lhdr); err != nil {
    			return nil, err
    		}
    		stlen = lhdr.Lstlen
    		stoff = lhdr.Lstoff
    		nsyms = lhdr.Lnsyms
    		symoff = lhdr.Lsymoff
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    	Listlen  uint32 // Length of import file ID string table
    	Lnimpid  int32  // Number of import file IDs
    	Lstlen   uint32 // Length of string table
    	Limpoff  uint64 // Offset to start of import file IDs
    	Lstoff   uint64 // Offset to start of string table
    	Lsymoff  uint64 // Offset to start of symbol table
    	Lrldoff  uint64 // Offset to start of relocation entries
    }
    
    // Loader Symbol
    type XcoffLdSym64 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top