Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 69 for vtoc (0.09 sec)

  1. src/runtime/cgo/asm_ppc64x.s

    	// 32 bytes of argument space, save callee-save regs, and set R0 to $0.
    	STACK_AND_SAVE_HOST_TO_GO_ABI(32)
    	// The above will not preserve R2 (TOC). Save it in case Go is
    	// compiled without a TOC pointer (e.g -buildmode=default).
    	MOVD	R2, 24(R1)
    
    	// Load the current g.
    	BL	runtime·load_g(SB)
    
    #ifdef GO_PPC64X_HAS_FUNCDESC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    #toc>ul>li:last-of-type {
    	padding-bottom: 0;
    }
    
    #toc a {
    	font-style: normal;
    }
    
    #toc a:hover,
    #toc a:focus,
    #toc a:hover code,
    #toc a:focus code {
    	color: #1DA2BD;
    }
    
    #toc a:active {
    	text-decoration: none;
    }
    
    /* Site header specific styles */
    .hamburger {
    	background-color: transparent;
    	background-image: none;
    	border: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/runtime/asm_ppc64x.h

    // aix/ppc64 uses XCOFF which uses function descriptors.
    // AIX cannot perform the TOC relocation in a text section.
    // Therefore, these descriptors must live in a data section.
    #ifdef GOOS_aix
    #ifdef GOARCH_ppc64
    #define GO_PPC64X_HAS_FUNCDESC
    #define DEFINE_PPC64X_FUNCDESC(funcname, localfuncname)	\
    	DATA	funcname+0(SB)/8, $localfuncname(SB) 	\
    	DATA	funcname+8(SB)/8, $TOC(SB)		\
    	DATA	funcname+16(SB)/8, $0			\
    	GLOBL	funcname(SB), NOPTR, $24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/obj9.go

    		// becomes
    		//     MOVD runtime.duffxxx@TOC, R12
    		//     ADD $offset, R12
    		//     MOVD R12, LR
    		//     BL (LR)
    		var sym *obj.LSym
    		if p.As == obj.ADUFFZERO {
    			sym = c.ctxt.Lookup("runtime.duffzero")
    		} else {
    			sym = c.ctxt.Lookup("runtime.duffcopy")
    		}
    		// Retrieve or create the TOC anchor.
    		symtoc := c.ctxt.LookupInit("TOC."+sym.Name, func(s *obj.LSym) {
    			s.Type = objabi.SDATA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

        public MetadataGraph addEdge(MetadataGraphVertex vFrom, MetadataGraphVertex vTo, MetadataGraphEdge e)
                throws MetadataResolutionException {
            checkVertex(vFrom);
            checkVertex(vTo);
    
            checkVertices();
    
            checkEdge(e);
            checkEdges();
    
            e.setSource(vFrom);
            e.setTarget(vTo);
    
            vFrom.setCompareVersion(versionedVertices);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 05 18:41:13 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_aix_ppc64.S

     * Linux assembly.
     */
      .toc
      .csect .text[PR]
      .globl crosscall_ppc64
      .globl .crosscall_ppc64
      .csect crosscall_ppc64[DS]
    crosscall_ppc64:
      .llong .crosscall_ppc64, TOC[tc0], 0
      .csect .text[PR]
    .crosscall_ppc64:
    	// Start with standard C stack frame layout and linkage
    	mflr	0
    	std	0, 16(1)	// Save LR in caller's frame
    	std	2, 40(1)	// Save TOC in caller's frame
    	bl	saveregs
    	stdu	1, -296(1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/example_test.go

    	var files []*syntax.File
    	for _, src := range []string{
    		`package main
    import "fmt"
    func main() {
    	freezing := FToC(-18)
    	fmt.Println(freezing, Boiling) }
    `,
    		`package main
    import "fmt"
    type Celsius float64
    func (c Celsius) String() string { return fmt.Sprintf("%g°C", c) }
    func FToC(f float64) Celsius { return Celsius(f - 32 / 9 * 5) }
    const Boiling Celsius = 100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/print.css

        border: none;
        background-color: white;
        margin: 0;
        padding-top: 24%;
        padding-left: 0;
        padding-right: 5%;
        padding-bottom: 0;
    }
    
    .toc {
        page-break-before: always;
    }
    
    .toc * {
        line-height: 120%;
    }
    
    /**
     * Chapter and Appendix title page
     */
    
    .chapter {
        page: contentpage;
        page-break-before: always;
    }
    
    .appendix {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            tocSection.append("<h2>Table Of Contents</h2>");
            Element toc = tocSection.append("<ul class='toc'/>").children().last();
    
            Elements h23elements = document.select("h2,h3");
            for (Element h23element: h23elements) {
                String tag = h23element.tagName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/stylesheets/dslHtml.xsl

    index 0 1 1 0 0 0 0 chapter toc,title Version - © Gradle Inc. 2021 All rights reserved. .cls-1 { fill: #02303a; } gradle Careers | Privacy | Terms of Service | Contact User Manual Home DSL Reference Home Release Notes User Manual Home DSL Reference Home Release Notes signature : :...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top