Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for TEXTSIZE (0.14 sec)

  1. src/cmd/internal/obj/s390x/anamesz.go

    	"DCON",
    	"SACON",
    	"LACON",
    	"DACON",
    	"SBRA",
    	"LBRA",
    	"SAUTO",
    	"LAUTO",
    	"ZOREG",
    	"SOREG",
    	"LOREG",
    	"TLS_LE",
    	"TLS_IE",
    	"GOK",
    	"ADDR",
    	"SYMADDR",
    	"GOTADDR",
    	"TEXTSIZE",
    	"ANY",
    	"NCLASS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 04:57:30 UTC 2016
    - 505 bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/anames0.go

    	"SACON",
    	"SECON",
    	"LACON",
    	"LECON",
    	"DACON",
    	"STCON",
    	"SBRA",
    	"LBRA",
    	"SAUTO",
    	"LAUTO",
    	"SEXT",
    	"LEXT",
    	"ZOREG",
    	"SOREG",
    	"LOREG",
    	"GOK",
    	"ADDR",
    	"TLS",
    	"TEXTSIZE",
    	"NCLASS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 04 19:06:44 UTC 2020
    - 554 bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm/anames5.go

    	"FAUTO",
    	"HFAUTO",
    	"SAUTO",
    	"LAUTO",
    	"HOREG",
    	"FOREG",
    	"HFOREG",
    	"SOREG",
    	"ROREG",
    	"SROREG",
    	"LOREG",
    	"PC",
    	"SP",
    	"HREG",
    	"ADDR",
    	"C_TLS_LE",
    	"C_TLS_IE",
    	"TEXTSIZE",
    	"GOK",
    	"NCLASS",
    	"SCOND = (1<<4)-1",
    	"SBIT = 1<<4",
    	"PBIT = 1<<5",
    	"WBIT = 1<<6",
    	"FBIT = 1<<7",
    	"UBIT = 1<<7",
    	"SCOND_XOR = 14",
    	"SCOND_EQ = 0 ^ C_SCOND_XOR",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 27 19:54:44 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/anames9.go

    	"64CON",
    	"SACON",
    	"LACON",
    	"DACON",
    	"BRA",
    	"BRAPIC",
    	"ZOREG",
    	"SOREG",
    	"LOREG",
    	"XOREG",
    	"FPSCR",
    	"LR",
    	"CTR",
    	"ANY",
    	"GOK",
    	"ADDR",
    	"TLS_LE",
    	"TLS_IE",
    	"TEXTSIZE",
    	"NCLASS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 673 bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/cnames.go

    	"LECON",
    	"DACON",
    	"STCON",
    	"SBRA",
    	"LBRA",
    	"SAUTO",
    	"LAUTO",
    	"SEXT",
    	"LEXT",
    	"ZOREG",
    	"SOREG",
    	"LOREG",
    	"GOK",
    	"ADDR",
    	"TLS_LE",
    	"TLS_IE",
    	"GOTADDR",
    	"TEXTSIZE",
    	"NCLASS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:21 UTC 2023
    - 629 bytes
    - Viewed (0)
  6. src/cmd/internal/codesign/codesign.go

    // data is the file content without the signature, of size codeSize.
    // textOff and textSize is the file offset and size of the text segment.
    // isMain is true if this is a main executable.
    // id is the identifier used for signing (a field in CodeDirectory blob, which
    // has no significance in ad-hoc signing).
    func Sign(out []byte, data io.Reader, id string, codeSize, textOff, textSize int64, isMain bool) {
    	nhashes := (codeSize + pageSize - 1) / pageSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:19 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/anames7.go

    	"UOREG16K_16",
    	"UOREG16K_8",
    	"UOREG16K",
    	"UOREG32K_16",
    	"UOREG32K",
    	"UOREG64K",
    	"LOREGPOOL",
    	"LOREG",
    	"ADDR",
    	"GOTADDR",
    	"TLS_LE",
    	"TLS_IE",
    	"ROFF",
    	"GOK",
    	"TEXTSIZE",
    	"NCLASS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:37:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/link/internal/ld/asmb.go

    	// Elf
    	case objabi.Hdragonfly,
    		objabi.Hfreebsd,
    		objabi.Hlinux,
    		objabi.Hnetbsd,
    		objabi.Hopenbsd,
    		objabi.Hsolaris:
    		asmbElf(ctxt)
    	}
    
    	if *FlagC {
    		fmt.Printf("textsize=%d\n", Segtext.Filelen)
    		fmt.Printf("datsize=%d\n", Segdata.Filelen)
    		fmt.Printf("bsssize=%d\n", Segdata.Length-Segdata.Filelen)
    		fmt.Printf("symsize=%d\n", symSize)
    		fmt.Printf("lcsize=%d\n", lcSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

    for(const seriesEntry of series){const legendText=this.showTitleInLegend?seriesEntry.title:seriesEntry.key;const textSize=getSVGTextSize(this,legendText);width=Math.max(width,textSize.width+30);height+=textSize.height;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top