Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for elf_ (0.12 sec)

  1. src/syscall/mkerrors.sh

    		$2 ~ /^(SIGEV_|SIGSTKSZ|SIGRT(MIN|MAX))/ {next}
    		$2 ~ /^(SCM_SRCRT)$/ {next}
    		$2 ~ /^(MAP_FAILED)$/ {next}
    		$2 ~ /^CLONE_[A-Z_]+/ {next} # These are defined in exec_linux.go.
    		$2 ~ /^ELF_.*$/ {next}	# <asm/elf.h> contains ELF_ARCH, etc.
    
    		$2 !~ /^ETH_/ &&
    		$2 !~ /^EPROC_/ &&
    		$2 !~ /^EQUIV_/ &&
    		$2 !~ /^EXPR_/ &&
    		$2 ~ /^E[A-Z0-9_]+$/ ||
    		$2 ~ /^B[0-9_]+$/ ||
    		$2 ~ /^V[A-Z0-9]+$/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf_test.go

    	defer fi.Close()
    
    	elfFile, err := elf.NewFile(fi)
    	if err != nil {
    		t.Skip("The system may not support ELF, skipped.")
    	}
    	defer elfFile.Close()
    
    	// List of interesting sections. Here "interesting" means progbits/dynamic
    	// and loadable (has an address), nonzero size.
    	secs := []*elf.Section{}
    	for _, s := range elfFile.Sections {
    		if s.Type != elf.SHT_PROGBITS && s.Type != elf.SHT_DYNAMIC {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^E([ABCD]X|[BIS]P|[SD]I|S|FL)$/ {next}  # 386 registers
    		$2 ~ /^(SIGEV_|SIGSTKSZ|SIGRT(MIN|MAX))/ {next}
    		$2 ~ /^(SCM_SRCRT)$/ {next}
    		$2 ~ /^(MAP_FAILED)$/ {next}
    		$2 ~ /^ELF_.*$/ {next}# <asm/elf.h> contains ELF_ARCH, etc.
    
    		$2 ~ /^EXTATTR_NAMESPACE_NAMES/ ||
    		$2 ~ /^EXTATTR_NAMESPACE_[A-Z]+_STRING/ {next}
    
    		$2 !~ /^ECCAPBITS/ &&
    		$2 !~ /^ETH_/ &&
    		$2 !~ /^EPROC_/ &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/obj9.go

    // prologue.
    func isNOTOCfunc(name string) bool {
    	switch {
    	case name == "runtime.duffzero":
    		return true
    	case name == "runtime.duffcopy":
    		return true
    	case strings.HasPrefix(name, "runtime.elf_"):
    		return true
    	default:
    		return false
    	}
    }
    
    // Try converting FMOVD/FMOVS to XXSPLTIDP. If it is converted,
    // return true.
    func convertFMOVtoXXSPLTIDP(p *obj.Prog) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  5. src/debug/dwarf/testdata/ranges.elf

    Ian Lance Taylor <******@****.***> 1458162954 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 14:06:09 UTC 2016
    - 10.1K bytes
    - Viewed (0)
  6. src/debug/dwarf/testdata/rnglistx.elf

    Ian Lance Taylor <******@****.***> 1615926680 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 17 00:54:09 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  7. src/debug/dwarf/testdata/typedef.elf

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/internal/buildid/testdata/a.elf.base64

    Andrew <******@****.***> 1574269611 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 21 14:55:12 UTC 2019
    - 16.6K bytes
    - Viewed (0)
  9. src/debug/dwarf/testdata/line-clang.elf

    Andrew Gerrand <******@****.***> 1441330476 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 04 02:59:49 UTC 2015
    - 10K bytes
    - Viewed (0)
  10. src/debug/dwarf/testdata/line-gcc.elf

    Andrew Gerrand <******@****.***> 1441330476 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 04 02:59:49 UTC 2015
    - 9.9K bytes
    - Viewed (0)
Back to top