Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for vtoc (0.12 sec)

  1. src/cmd/link/internal/loadxcoff/ldxcoff.go

    			if sectType == xcoff.STYP_DATA {
    				return sym.SDATA, ""
    			}
    			return sym.Sxxx, fmt.Sprintf("unrecognised Section Type 0x%x for Storage Class 0x%x with Storage Map XMC_DS", sectType, s.StorageClass)
    
    		// TOC anchor and TOC entry
    		case xcoff.XMC_TC0, xcoff.XMC_TE:
    			if sectType == xcoff.STYP_DATA {
    				return sym.SXCOFFTOC, ""
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/internal/objabi/reloctype.go

    	// R_ADDRPOWER_TOCREL relocates two D-form instructions like R_ADDRPOWER, but
    	// inserts the offset from the TOC to the address of the relocated symbol
    	// rather than the symbol's address.
    	R_ADDRPOWER_TOCREL
    
    	// R_ADDRPOWER_TOCREL_DS relocates a D-form, DS-form instruction sequence like
    	// R_ADDRPOWER_DS but inserts the offset from the TOC to the address of the
    	// relocated symbol rather than the symbol's address.
    	R_ADDRPOWER_TOCREL_DS
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. hack/gen-swagger-doc/gen-swagger-docs.sh

    cd /build
    
    # gendocs takes "input.json" as the input swagger spec.
    # $1 is expected to be <group>_<version>
    cp /swagger-source/"$1".json input.json
    
    ./gradle-2.5/bin/gradle gendocs --info
    
    #insert a TOC for top level API objects
    buf="== Top Level API Objects\n\n"
    top_level_models=$(grep '&[A-Za-z]*{},' /register.go | sed 's/.*&//;s/{},//')
    
    # check if the top level models exist in the definitions.adoc. If they exist,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 19 12:58:58 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  4. src/internal/goarch/goarch.go

    // It is zero on x86 and PtrSize on most non-x86 (LR-based) systems.
    // On PowerPC it is larger, to cover three more reserved words:
    // the compiler word, the link editor word, and the TOC save word.
    const MinFrameSize = _MinFrameSize
    
    // StackAlign is the required alignment of the SP register.
    // The stack must be at least word aligned, but some architectures require more.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_linux_ppc64x.S

    // a call into a Go ABI. We allocate 32B to match FIXED_FRAME with
    // similar semantics, except we store the backchain pointer, not the
    // LR at offset 0. R2 is stored in the Go TOC save slot (offset 24).
    .set GPR_OFFSET, 32
    .set FPR_OFFSET, GPR_OFFSET + 18*8
    .set VR_OFFSET, FPR_OFFSET + 18*8
    .set FRAME_SIZE, VR_OFFSET + 12*16
    
    .macro FOR_EACH_GPR opcode r=14
    .ifge 31 - \r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:03:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. testing/performance/docs/performance-bisect.md

    <!-- START doctoc generated TOC please keep comment here to allow auto update -->
    <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
    **Table of Contents**  *generated with [DocToc](https://github.com/thlorenz/doctoc)*
    
    - [Tracking down performance regressions with `git bisect`](#tracking-down-performance-regressions-with-git-bisect)
      - [Identify the test which caused the regression](#identify-the-test-which-caused-the-regression)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/debug/macho/macho.go

    		Len            uint32
    		Ilocalsym      uint32
    		Nlocalsym      uint32
    		Iextdefsym     uint32
    		Nextdefsym     uint32
    		Iundefsym      uint32
    		Nundefsym      uint32
    		Tocoffset      uint32
    		Ntoc           uint32
    		Modtaboff      uint32
    		Nmodtab        uint32
    		Extrefsymoff   uint32
    		Nextrefsyms    uint32
    		Indirectsymoff uint32
    		Nindirectsyms  uint32
    		Extreloff      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                attributes.put("icons", "font");
                attributes.put("source-highlighter", "prettify");
                attributes.put("toc", "auto");
                attributes.put("toclevels", 1);
                attributes.put("toc-title", "Contents");
                attributes.put("groovyDslPath", "../dsl");
                attributes.put("javadocPath", "../javadoc");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. mkdocs.yml

            icon: octicons/moon-24
            name: "Switch to Light Mode"
      features:
      - navigation.tabs
    
    extra_css:
      - 'assets/css/app.css'
    
    markdown_extensions:
      - smarty
      - footnotes
      - meta
      - toc:
          permalink: true
      - attr_list
      - pymdownx.betterem:
          smart_enable: all
      - pymdownx.caret
      - pymdownx.emoji:
          emoji_index: !!python/name:materialx.emoji.twemoji
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/runtime/asm_ppc64x.s

    //
    // When dynamically linking Go, it can be returned to from a function
    // implemented in a different module and so needs to reload the TOC pointer
    // from the stack (although this function declares that it does not set up x-a
    // frame, newproc1 does in fact allocate one for goexit and saves the TOC
    // pointer in the correct place).
    // goexit+_PCQuantum is halfway through the usual global entry point prologue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top