Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for R_ARM (0.07 sec)

  1. src/debug/elf/elf.go

    	R_ARM_THM_PC22           R_ARM = 10
    	R_ARM_THM_PC8            R_ARM = 11
    	R_ARM_AMP_VCALL9         R_ARM = 12
    	R_ARM_SWI24              R_ARM = 13
    	R_ARM_THM_SWI8           R_ARM = 14
    	R_ARM_XPC25              R_ARM = 15
    	R_ARM_THM_XPC22          R_ARM = 16
    	R_ARM_TLS_DTPMOD32       R_ARM = 17
    	R_ARM_TLS_DTPOFF32       R_ARM = 18
    	R_ARM_TLS_TPOFF32        R_ARM = 19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K 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)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(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},
    		{"(R_ARM).GoString", Method, 0},
    		{"(R_ARM).String", Method, 0},
    		{"(R_LARCH).GoString", Method, 19},
    		{"(R_LARCH).String", Method, 19},
    		{"(R_MIPS).GoString", Method, 6},
    		{"(R_MIPS).String", Method, 6},
    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