Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,482 for qtext (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/internal/obj/arm/obj5.go

    	 */
    	for p := cursym.Func().Text; p != nil; p = p.Link {
    		switch p.As {
    		case obj.ATEXT:
    			p.Mark |= LEAF
    
    		case ADIV, ADIVU, AMOD, AMODU:
    			cursym.Func().Text.Mark &^= LEAF
    
    		case ABL,
    			ABX,
    			obj.ADUFFZERO,
    			obj.ADUFFCOPY:
    			cursym.Func().Text.Mark &^= LEAF
    		}
    	}
    
    	var q2 *obj.Prog
    	for p := cursym.Func().Text; p != nil; p = p.Link {
    		o := p.As
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho.go

    			s := ldr.Lookup("runtime.text", 0)
    			if ldr.SymType(s) == sym.STEXT {
    				addsym(s)
    			}
    		}
    		for n := range Segtext.Sections[1:] {
    			s := ldr.Lookup(fmt.Sprintf("runtime.text.%d", n+1), 0)
    			if s != 0 {
    				addsym(s)
    			} else {
    				break
    			}
    		}
    		if !ctxt.DynlinkingGo() {
    			s := ldr.Lookup("runtime.etext", 0)
    			if ldr.SymType(s) == sym.STEXT {
    				addsym(s)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. src/image/gif/reader.go

    	DisposalPrevious   = 0x03
    )
    
    // Section indicators.
    const (
    	sExtension       = 0x21
    	sImageDescriptor = 0x2C
    	sTrailer         = 0x3B
    )
    
    // Extensions.
    const (
    	eText           = 0x01 // Plain Text
    	eGraphicControl = 0xF9 // Graphic Control
    	eComment        = 0xFE // Comment
    	eApplication    = 0xFF // Application
    )
    
    func readFull(r io.Reader, b []byte) error {
    	_, err := io.ReadFull(r, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top