Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for R_390 (0.06 sec)

  1. api/go1.7.txt

    pkg debug/elf, const R_390_TLS_LE32 = 50
    pkg debug/elf, const R_390_TLS_LE32 R_390
    pkg debug/elf, const R_390_TLS_LE64 = 51
    pkg debug/elf, const R_390_TLS_LE64 R_390
    pkg debug/elf, const R_390_TLS_LOAD = 37
    pkg debug/elf, const R_390_TLS_LOAD R_390
    pkg debug/elf, const R_390_TLS_TPOFF = 56
    pkg debug/elf, const R_390_TLS_TPOFF R_390
    pkg debug/elf, method (R_390) GoString() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	R_390_RELATIVE    R_390 = 12
    	R_390_GOTOFF      R_390 = 13
    	R_390_GOTPC       R_390 = 14
    	R_390_GOT16       R_390 = 15
    	R_390_PC16        R_390 = 16
    	R_390_PC16DBL     R_390 = 17
    	R_390_PLT16DBL    R_390 = 18
    	R_390_PC32DBL     R_390 = 19
    	R_390_PLT32DBL    R_390 = 20
    	R_390_GOTPCDBL    R_390 = 21
    	R_390_64          R_390 = 22
    	R_390_PC64        R_390 = 23
    	R_390_GOT64       R_390 = 24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/sym/reloc.go

    		case sys.Loong64:
    			return elf.R_LARCH(nr).String()
    		case sys.MIPS, sys.MIPS64:
    			return elf.R_MIPS(nr).String()
    		case sys.PPC64:
    			return elf.R_PPC64(nr).String()
    		case sys.S390X:
    			return elf.R_390(nr).String()
    		case sys.RISCV64:
    			return elf.R_RISCV(nr).String()
    		default:
    			panic("unreachable")
    		}
    	}
    
    	return r.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 15:33:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/debug/elf/file.go

    	if err != nil {
    		return err
    	}
    
    	b := bytes.NewReader(rels)
    	var rela Rela64
    
    	for b.Len() > 0 {
    		binary.Read(b, f.ByteOrder, &rela)
    		symNo := rela.Info >> 32
    		t := R_390(rela.Info & 0xffff)
    
    		if symNo == 0 || symNo > uint64(len(symbols)) {
    			continue
    		}
    		sym := &symbols[symNo-1]
    		if !canApplyRelocation(sym) {
    			continue
    		}
    
    		switch t {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(ProgFlag).String", Method, 0},
    		{"(ProgType).GoString", Method, 0},
    		{"(ProgType).String", Method, 0},
    		{"(R_386).GoString", Method, 0},
    		{"(R_386).String", Method, 0},
    		{"(R_390).GoString", Method, 7},
    		{"(R_390).String", Method, 7},
    		{"(R_AARCH64).GoString", Method, 4},
    		{"(R_AARCH64).String", Method, 4},
    		{"(R_ALPHA).GoString", Method, 0},
    		{"(R_ALPHA).String", Method, 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