Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for text (1.36 sec)

  1. src/cmd/link/internal/ld/data.go

    		for i < len(textp) && (ldr.SubSym(textp[i]) != 0 || ldr.AttrSubSymbol(textp[i])) {
    			i++
    		}
    		textp = textp[i:]
    		r.Shuffle(len(textp), func(i, j int) {
    			textp[i], textp[j] = textp[j], textp[i]
    		})
    	}
    
    	text := ctxt.xdefine("runtime.text", sym.STEXT, 0)
    	etext := ctxt.xdefine("runtime.etext", sym.STEXT, 0)
    	ldr.SetSymSect(text, sect)
    	if ctxt.IsAIX() && ctxt.IsExternal() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // time.
    //
    // The second, called package list mode, occurs when go test is invoked
    // with explicit package arguments (for example 'go test math', 'go
    // test ./...', and even 'go test .'). In this mode, go test compiles
    // and tests each of the packages listed on the command line. If a
    // package test passes, go test prints only the final 'ok' summary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    // to arrange entries to minimize text size of each opcode.
    //
    // optab is the sorted result of combining optabBase, optabGen, and prefixableOptab.
    var optab []Optab
    
    var optabBase = []Optab{
    	{as: obj.ATEXT, a1: C_LOREG, a6: C_TEXTSIZE, type_: 0, size: 0},
    	{as: obj.ATEXT, a1: C_LOREG, a3: C_32CON, a6: C_TEXTSIZE, type_: 0, size: 0},
    	{as: obj.ATEXT, a1: C_ADDR, a6: C_TEXTSIZE, type_: 0, size: 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    	{ATESTQ, ytestl, Pw, opBytes{0xa9, 0xf7, 00, 0x85, 0x85}},
    	{ATESTW, ytestl, Pe, opBytes{0xa9, 0xf7, 00, 0x85, 0x85}},
    	{ATPAUSE, ywrfsbase, Pq, opBytes{0xae, 06}},
    	{obj.ATEXT, ytext, Px, opBytes{}},
    	{AUCOMISD, yxm, Pe, opBytes{0x2e}},
    	{AUCOMISS, yxm, Pm, opBytes{0x2e}},
    	{AUNPCKHPD, yxm, Pe, opBytes{0x15}},
    	{AUNPCKHPS, yxm, Pm, opBytes{0x15}},
    	{AUNPCKLPD, yxm, Pe, opBytes{0x14}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	op_LTGF    uint32 = 0xE332 // FORMAT_RXY1       LOAD AND TEST (64<-32)
    	op_LTGFR   uint32 = 0xB912 // FORMAT_RRE        LOAD AND TEST (64<-32)
    	op_LTGR    uint32 = 0xB902 // FORMAT_RRE        LOAD AND TEST (64)
    	op_LTR     uint32 = 0x1200 // FORMAT_RR         LOAD AND TEST (32)
    	op_LTXBR   uint32 = 0xB342 // FORMAT_RRE        LOAD AND TEST (extended BFP)
    	op_LTXR    uint32 = 0xB362 // FORMAT_RRE        LOAD AND TEST (extended HFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    func span7(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	if ctxt.Retpoline {
    		ctxt.Diag("-spectre=ret not supported on arm64")
    		ctxt.Retpoline = false // don't keep printing
    	}
    
    	p := cursym.Func().Text
    	if p == nil || p.Link == nil { // handle external functions and ELF section symbols
    		return
    	}
    
    	if oprange[AAND&obj.AMask] == nil {
    		ctxt.Diag("arm64 ops not initialized, call arm64.buildop first")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/cmd/trace/testdata/go122.test

    Carlos Amedee <******@****.***> 1715092668 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    		return p.ImportPath + " [" + p.ForTest + ".test]"
    	}
    	if p.Internal.ForMain != "" {
    		return p.ImportPath + " [" + p.Internal.ForMain + "]"
    	}
    	return p.ImportPath
    }
    
    // IsTestOnly reports whether p is a test-only package.
    //
    // A “test-only” package is one that:
    //   - is a test-only variant of an ordinary package, or
    //   - is a synthesized "main" package for a test binary, or
    //   - contains only _test.go files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    </p>
    
    <ol>
    	<li>The <i>universe block</i> encompasses all Go source text.</li>
    
    	<li>Each <a href="#Packages">package</a> has a <i>package block</i> containing all
    	    Go source text for that package.</li>
    
    	<li>Each file has a <i>file block</i> containing all Go source text
    	    in that file.</li>
    
    	<li>Each <a href="#If_statements">"if"</a>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// bit test/set/clear operations
    		{name: "BTL", argLength: 2, reg: gp2flags, asm: "BTL", typ: "Flags"},                                           // test whether bit arg0%32 in arg1 is set
    		{name: "BTQ", argLength: 2, reg: gp2flags, asm: "BTQ", typ: "Flags"},                                           // test whether bit arg0%64 in arg1 is set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
Back to top