Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for locOffset (0.1 sec)

  1. src/archive/zip/reader.go

    // found.
    func findDirectory64End(r io.ReaderAt, directoryEndOffset int64) (int64, error) {
    	locOffset := directoryEndOffset - directory64LocLen
    	if locOffset < 0 {
    		return -1, nil // no need to look for a header outside the file
    	}
    	buf := make([]byte, directory64LocLen)
    	if _, err := r.ReadAt(buf, locOffset); err != nil {
    		return -1, err
    	}
    	b := readBuf(buf)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Sat Aug 03 01:05:29 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg debug/macho, type DysymtabCmd struct, Nmodtab uint32
    pkg debug/macho, type DysymtabCmd struct, Ntoc uint32
    pkg debug/macho, type DysymtabCmd struct, Nundefsym uint32
    pkg debug/macho, type DysymtabCmd struct, Tocoffset uint32
    pkg debug/macho, type File struct
    pkg debug/macho, type File struct, ByteOrder binary.ByteOrder
    pkg debug/macho, type File struct, Dysymtab *Dysymtab
    pkg debug/macho, type File struct, Loads []Load
    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