Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for R_ARM (1.29 sec)

  1. api/go1.10.txt

    pkg debug/elf, const R_ARM_ALU_SB_G2 = 74
    pkg debug/elf, const R_ARM_ALU_SB_G2 R_ARM
    pkg debug/elf, const R_ARM_BASE_ABS = 31
    pkg debug/elf, const R_ARM_BASE_ABS R_ARM
    pkg debug/elf, const R_ARM_CALL = 28
    pkg debug/elf, const R_ARM_CALL R_ARM
    pkg debug/elf, const R_ARM_GOTOFF12 = 98
    pkg debug/elf, const R_ARM_GOTOFF12 R_ARM
    pkg debug/elf, const R_ARM_GOTRELAX = 99
    pkg debug/elf, const R_ARM_GOTRELAX R_ARM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  2. src/debug/elf/file.go

    	if err != nil {
    		return err
    	}
    
    	b := bytes.NewReader(rels)
    	var rel Rel32
    
    	for b.Len() > 0 {
    		binary.Read(b, f.ByteOrder, &rel)
    		symNo := rel.Info >> 8
    		t := R_ARM(rel.Info & 0xff)
    
    		if symNo == 0 || symNo > uint32(len(symbols)) {
    			continue
    		}
    		sym := &symbols[symNo-1]
    
    		switch t {
    		case R_ARM_ABS32:
    			if rel.Off+4 >= uint32(len(dst)) {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top