Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RelocTypeARM (0.16 sec)

  1. src/debug/macho/reloctype.go

    type RelocTypeARM int
    
    const (
    	ARM_RELOC_VANILLA        RelocTypeARM = 0
    	ARM_RELOC_PAIR           RelocTypeARM = 1
    	ARM_RELOC_SECTDIFF       RelocTypeARM = 2
    	ARM_RELOC_LOCAL_SECTDIFF RelocTypeARM = 3
    	ARM_RELOC_PB_LA_PTR      RelocTypeARM = 4
    	ARM_RELOC_BR24           RelocTypeARM = 5
    	ARM_THUMB_RELOC_BR22     RelocTypeARM = 6
    	ARM_THUMB_32BIT_BRANCH   RelocTypeARM = 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 18:45:40 UTC 2017
    - 2.4K bytes
    - Viewed (0)
  2. src/debug/macho/reloctype_string.go

    var _RelocTypeARM_index = [...]uint8{0, 17, 31, 49, 73, 92, 106, 126, 148, 162, 185}
    
    func (i RelocTypeARM) String() string {
    	if i < 0 || i >= RelocTypeARM(len(_RelocTypeARM_index)-1) {
    		return "RelocTypeARM(" + strconv.FormatInt(int64(i), 10) + ")"
    	}
    	return _RelocTypeARM_name[_RelocTypeARM_index[i]:_RelocTypeARM_index[i+1]]
    }
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:24:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top