Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,953 for qtext (0.06 sec)

  1. src/cmd/internal/obj/sym.go

    		}
    	}
    	lists := [][]*LSym{ctxt.Text, ctxt.Data}
    	files := ctxt.PosTable.FileTable()
    	for _, list := range lists {
    		for _, s := range list {
    			if flag&traverseDefs != 0 {
    				fn(s)
    			}
    			if flag&traverseRefs != 0 {
    				for _, r := range s.R {
    					fnNoNil(r.Sym)
    				}
    			}
    			if flag&traverseAux != 0 {
    				fnNoNil(s.Gotype)
    				if s.Type == objabi.STEXT {
    					f := func(parent *LSym, aux *LSym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-mutable-text-resource.txt

    Anže Sodja <******@****.***> 1717576978 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 827 bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    		if ldr.SymPkg(x) != "" || strings.Contains(name, "-tramp") || strings.HasPrefix(name, "runtime.text.") {
    			// Function within a file
    			syms = xfile.writeSymbolFunc(ctxt, x)
    		} else {
    			// Only runtime.text and runtime.etext come through this way
    			if name != "runtime.text" && name != "runtime.etext" && name != "go:buildid" {
    				Exitf("putaixsym: unknown text symbol %s", name)
    			}
    			s := &XcoffSymEnt64{
    				Nsclass: C_HIDEXT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedLanguageHelloWorldApp.groovy

    .386
    .model    flat
    
    INCLUDE <ks386.inc>
    PUBLIC    _sumx
    _TEXT     SEGMENT
    _sumx    PROC
    mov    eax, DWORD PTR 4[esp]
    add    eax, DWORD PTR 8[esp]
    ret    0
    _sumx    ENDP
    _TEXT   ENDS
    END
    '''
    
        private static String i386GnuAsmSource = '''
        .text
        .globl  _sumx
    _sumx:
        movl    8(%esp), %eax
        addl    4(%esp), %eax
        ret
    '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadxcoff/ldxcoff.go

    		if errmsg != "" {
    			return errorf("error reading symbol %s: %s", sx.Name, errmsg)
    		}
    		if stype == sym.Sxxx {
    			continue
    		}
    
    		s := l.LookupOrCreateSym(sx.Name, 0)
    
    		// Text symbol
    		if l.SymType(s) == sym.STEXT {
    			if l.AttrOnList(s) {
    				return errorf("symbol %s listed multiple times", l.SymName(s))
    			}
    			l.SetAttrOnList(s, true)
    			textp = append(textp, s)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

        public void generate() {
            outputFile.text = text
        }
    }
    
    task a(type: GeneratorTask) {
        text = project.text
        outputFile = file('dest.txt')
    }
    '''
    
            when:
            succeeds "a", "-Ptext=text"
    
            then:
            result.assertTasksNotSkipped(":a")
    
            when:
            succeeds "a", "-Ptext=text"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. src/internal/diff/diff.go

    			for _, s := range ctext {
    				out.WriteString(s)
    			}
    			count.x = 0
    			count.y = 0
    			ctext = ctext[:0]
    		}
    
    		// If we reached EOF, we're done.
    		if end.x >= len(x) && end.y >= len(y) {
    			break
    		}
    
    		// Otherwise start a new chunk.
    		chunk = pair{end.x - C, end.y - C}
    		for _, s := range x[chunk.x:end.x] {
    			ctext = append(ctext, " "+s)
    			count.x++
    			count.y++
    		}
    		done = end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/objz.go

    				q.To.Offset = 0
    			} else if c.cursym.Func().Text.Mark&LEAF == 0 {
    				// A very few functions that do not return to their caller
    				// (e.g. gogo) are not identified as leaves but still have
    				// no frame.
    				c.cursym.Func().Text.Mark |= LEAF
    			}
    
    			if c.cursym.Func().Text.Mark&LEAF != 0 {
    				c.cursym.Set(obj.AttrLeaf, true)
    				break
    			}
    
    			if c.cursym.Func().Text.From.Sym.Wrapper() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  9. src/runtime/symtab.go

    			println("runtime: textAddr", hex(res), "out of range", hex(md.text), "-", hex(md.etext))
    			throw("runtime: text offset out of range")
    		}
    	}
    	return res
    }
    
    // textOff is the opposite of textAddr. It converts a PC to a (virtual) offset
    // to md.text, and returns if the PC is in any Go text section.
    //
    // It is nosplit because it is part of the findfunc implementation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/obj.go

    			}
    
    			if autosize == 0 && c.cursym.Func().Text.Mark&LEAF == 0 {
    				if c.cursym.Func().Text.From.Sym.NoSplit() {
    					if ctxt.Debugvlog {
    						ctxt.Logf("save suppressed in: %s\n", c.cursym.Name)
    					}
    
    					c.cursym.Func().Text.Mark |= LEAF
    				}
    			}
    
    			p.To.Offset = int64(autosize) - ctxt.Arch.FixedFrameSize
    
    			if c.cursym.Func().Text.Mark&LEAF != 0 {
    				c.cursym.Set(obj.AttrLeaf, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top