Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for applyRelocationsAMD64 (0.16 sec)

  1. src/debug/elf/file.go

    // in REL or RELA format.
    func (f *File) applyRelocations(dst []byte, rels []byte) error {
    	switch {
    	case f.Class == ELFCLASS64 && f.Machine == EM_X86_64:
    		return f.applyRelocationsAMD64(dst, rels)
    	case f.Class == ELFCLASS32 && f.Machine == EM_386:
    		return f.applyRelocations386(dst, rels)
    	case f.Class == ELFCLASS32 && f.Machine == EM_ARM:
    		return f.applyRelocationsARM(dst, rels)
    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