Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SHF_COMPRESSED (0.39 sec)

  1. api/go1.6.txt

    pkg debug/elf, const R_MIPS_TLS_TPREL_HI16 R_MIPS
    pkg debug/elf, const R_MIPS_TLS_TPREL_LO16 = 50
    pkg debug/elf, const R_MIPS_TLS_TPREL_LO16 R_MIPS
    pkg debug/elf, const SHF_COMPRESSED = 2048
    pkg debug/elf, const SHF_COMPRESSED SectionFlag
    pkg debug/elf, method (CompressionType) GoString() string
    pkg debug/elf, method (CompressionType) String() string
    pkg debug/elf, method (R_MIPS) GoString() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:40:13 UTC 2016
    - 12.9K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    			{".debug_info", SHT_PROGBITS, SHF_COMPRESSED, 0x0, 0x68, 0xba, 0x0, 0x0, 0x1, 0x0, 0x72},
    			{".rela.debug_info", SHT_RELA, SHF_INFO_LINK, 0x0, 0x4b8, 0x1c8, 0x13, 0x6, 0x8, 0x18, 0x1c8},
    			{".debug_abbrev", SHT_PROGBITS, 0x0, 0x0, 0xda, 0x5c, 0x0, 0x0, 0x1, 0x0, 0x5c},
    			{".debug_aranges", SHT_PROGBITS, SHF_COMPRESSED, 0x0, 0x136, 0x30, 0x0, 0x0, 0x1, 0x0, 0x2f},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. src/debug/elf/file.go

    func (s *Section) Open() io.ReadSeeker {
    	if s.Type == SHT_NOBITS {
    		return io.NewSectionReader(&nobitsSectionReader{}, 0, int64(s.Size))
    	}
    
    	var zrd func(io.Reader) (io.ReadCloser, error)
    	if s.Flags&SHF_COMPRESSED == 0 {
    
    		if !strings.HasPrefix(s.Name, ".zdebug") {
    			return io.NewSectionReader(s.sr, 0, 1<<63-1)
    		}
    
    		b := make([]byte, 12)
    		n, _ := s.sr.ReadAt(b, 0)
    		if n != 12 || string(b[:4]) != "ZLIB" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	SHF_GROUP            SectionFlag = 0x200      /* Member of section group. */
    	SHF_TLS              SectionFlag = 0x400      /* Section contains TLS data. */
    	SHF_COMPRESSED       SectionFlag = 0x800      /* Section is compressed. */
    	SHF_MASKOS           SectionFlag = 0x0ff00000 /* OS-specific semantics. */
    	SHF_MASKPROC         SectionFlag = 0xf0000000 /* Processor-specific semantics. */
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    		sh.Addr = sect.Vaddr
    	}
    
    	if strings.HasPrefix(sect.Name, ".debug") || strings.HasPrefix(sect.Name, ".zdebug") {
    		sh.Flags = 0
    		sh.Addr = 0
    		if sect.Compressed {
    			sh.Flags |= uint64(elf.SHF_COMPRESSED)
    		}
    	}
    
    	sh.Addralign = uint64(sect.Align)
    	sh.Size = sect.Length
    	if sect.Name != ".tbss" {
    		sh.Off = sect.Seg.Fileoff + sect.Vaddr - sect.Seg.Vaddr
    	}
    
    	return sh
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Rela32.Info", Field, 0},
    		{"Rela32.Off", Field, 0},
    		{"Rela64", Type, 0},
    		{"Rela64.Addend", Field, 0},
    		{"Rela64.Info", Field, 0},
    		{"Rela64.Off", Field, 0},
    		{"SHF_ALLOC", Const, 0},
    		{"SHF_COMPRESSED", Const, 6},
    		{"SHF_EXECINSTR", Const, 0},
    		{"SHF_GROUP", Const, 0},
    		{"SHF_INFO_LINK", Const, 0},
    		{"SHF_LINK_ORDER", Const, 0},
    		{"SHF_MASKOS", Const, 0},
    		{"SHF_MASKPROC", 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