Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for vtoc (0.08 sec)

  1. src/go/constant/value.go

    func itof(x intVal) floatVal     { return floatVal{newFloat().SetInt(x.val)} }
    func rtof(x ratVal) floatVal     { return floatVal{newFloat().SetRat(x.val)} }
    func vtoc(x Value) complexVal    { return complexVal{x, int64Val(0)} }
    
    func makeInt(x *big.Int) Value {
    	if x.IsInt64() {
    		return int64Val(x.Int64())
    	}
    	return intVal{x}
    }
    
    func makeRat(x *big.Rat) Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{149, "EDC5149I", "Value Overflow Error."},
    	{150, "EDC5150I", "UNIX System Services is not active."},
    	{151, "EDC5151I", "Dynamic allocation error."},
    	{152, "EDC5152I", "Common VTOC access facility (CVAF) error."},
    	{153, "EDC5153I", "Catalog obtain error."},
    	{156, "EDC5156I", "Process initialization error."},
    	{157, "EDC5157I", "An internal error has occurred."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. src/strconv/atoc.go

    qiulaidongfeng <******@****.***> 1714788079 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    	XCOFF_R_REL = 0x02 // A(sym-*) Relative to self
    	XCOFF_R_TOC = 0x03 // A(sym-TOC) Relative to TOC
    	XCOFF_R_TRL = 0x12 // A(sym-TOC) TOC Relative indirect load.
    
    	XCOFF_R_TRLA = 0x13 // A(sym-TOC) TOC Rel load address. modifiable inst
    	XCOFF_R_GL   = 0x05 // A(external TOC of sym) Global Linkage
    	XCOFF_R_TCL  = 0x06 // A(local TOC of sym) Local object TOC address
    	XCOFF_R_RL   = 0x0C // A(sym) Pos indirect load. modifiable instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    //                      TOC save slot is rewrittent to restore TOC.
    // NOTOC -> TOC [P10]: A PIC call stub using P10 instructions to call the global entry
    // NOTOC -> TOC [P8]:  A PIC call stub using P8 instructions to call the global entry
    //
    // TOC   -> dynamic:              A PLT call stub is generated which saves R2.
    //                                 TOC save slot is rewritten to restore TOC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. src/internal/xcoff/xcoff.go

    	R_REL = 0x02 // A(sym-*) Relative to self
    	R_TOC = 0x03 // A(sym-TOC) Relative to TOC
    	R_TRL = 0x12 // A(sym-TOC) TOC Relative indirect load.
    
    	R_TRLA = 0x13 // A(sym-TOC) TOC Rel load address. modifiable inst
    	R_GL   = 0x05 // A(external TOC of sym) Global Linkage
    	R_TCL  = 0x06 // A(local TOC of sym) Local object TOC address
    	R_RL   = 0x0C // A(sym) Pos indirect load. modifiable instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    //
    // There are 3 cases today (as paraphrased from the ELFv2 document):
    //
    //  1. R2 holds the TOC pointer on entry. The call stub must save R2 into the ELFv2 TOC stack save slot.
    //
    //  2. R2 holds the TOC pointer on entry. The caller has already saved R2 to the TOC stack save slot.
    //
    //  3. R2 does not hold the TOC pointer on entry. The caller has no expectations of R2.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/base.css

        }
    
        .appendix .toc > dl > dt,
        .appendix .toc > dl > dt:last-of-type
        .book .home .toc > dl > dt,
        .book .home .toc > dl > dt:last-of-type
        .chapter .toc > dl > dt,
        .chapter .toc > dl > dt:last-of-type {
            padding: 0.5rem 0;
            margin: 0;
        }
    
        .appendix .toc a,
        .book .home .toc a,
        .chapter .toc a {
            padding-left: 10px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. pkg/ctrlz/assets/static/css/all.css

    .toc-inlined {
        padding-bottom: 1em
    }
    
    .toc-inlined .directory {
        border-left: 0
    }
    
    .toc-inlined .directory li {
        font-size: 1rem
    }
    
    .toc-inlined .directory ul {
        list-style-type: none !important;
        padding-left: 0;
        padding-bottom: 0;
        margin: 0
    }
    
    .toc-inlined .directory ul ul {
        padding-left: 1em
    }
    
    .toc-inlined .directory ul a {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  10. RELEASE_BRANCHES.md

      held off after the release. Hiding/Showing documentation does not require TOC approval.
    * Cases for other API changes require TOC approval
        * Simple `meshConfig` changes have been approved in the past. Functionality should not be enabled by default.
    * For large API changes, 2 members of the TOC must approve the PR before release manager approval in the release branch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 23:27:43 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top