Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ndx (0.01 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

        def "read list of files from readelf"() {
            when:
            def input = """
    Symbol table '.symtab' contains 53 entries:
       Num:    Value          Size Type    Bind   Vis      Ndx Name
         0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT  UND
         1: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS crt1.o
         2: 000000000040037c    32 OBJECT  LOCAL  DEFAULT    4 __abi_tag
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/debug/elf/file.go

    			nameoff := f.ByteOrder.Uint32(d[j+8 : j+12])
    			next := f.ByteOrder.Uint32(d[j+12 : j+16])
    			name, _ = getString(str, int(nameoff))
    			ndx := int(other)
    			if ndx >= len(need) {
    				a := make([]verneed, 2*(ndx+1))
    				copy(a, need)
    				need = a
    			}
    
    			need[ndx] = verneed{file, name}
    			if next == 0 {
    				break
    			}
    			j += int(next)
    		}
    
    		if next == 0 {
    			break
    		}
    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