Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TEXTSIZE (0.07 sec)

  1. src/cmd/link/elf_test.go

    			// gaps (see issue #36023).
    
    			textsize := func(ef *elf.File, name string) uint64 {
    				for _, s := range ef.Sections {
    					if s.Name == ".text" {
    						return s.Size
    					}
    				}
    				t.Fatalf("%s: no .text section", name)
    				return 0
    			}
    			textexe := textsize(elfexe, binexe)
    			textpie := textsize(elfpie, binpie)
    
    			dynsize := func(ef *elf.File) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top