Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for cnames9 (0.12 sec)

  1. src/cmd/internal/obj/ppc64/anames9.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ppc64
    
    var cnames9 = []string{
    	"NONE",
    	"REGP",
    	"REG",
    	"FREGP",
    	"FREG",
    	"VREG",
    	"VSREGP",
    	"VSREG",
    	"CREG",
    	"CRBIT",
    	"SPR",
    	"MREG",
    	"ZCON",
    	"U1CON",
    	"U2CON",
    	"U3CON",
    	"U4CON",
    	"U5CON",
    	"U8CON",
    	"U15CON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 673 bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/list9.go

    package ppc64
    
    import (
    	"cmd/internal/obj"
    	"fmt"
    )
    
    func init() {
    	obj.RegisterRegister(obj.RBasePPC64, REG_SPR0+1024, rconv)
    	// Note, the last entry in Anames is "LASTAOUT", it is not a real opcode.
    	obj.RegisterOpcode(obj.ABasePPC64, Anames[:len(Anames)-1])
    	obj.RegisterOpcode(AFIRSTGEN, GenAnames)
    }
    
    func rconv(r int) string {
    	if r == 0 {
    		return "NONE"
    	}
    	if r == REGG {
    		// Special case.
    		return "g"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:12:43 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		pName3 = "pod3"
    	)
    	const (
    		cName00 = "c0"
    		cName01 = "c1"
    		cName10 = "c0" // ensure cName10 conflicts with cName02, but is in a different pod
    		cName20 = "c1" // ensure cName20 conflicts with cName01, but is in a different pod + namespace
    		cName30 = "c0-init"
    		cName31 = "c1"
    	)
    	const (
    		rootfsCapacity    = uint64(10000000)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/scope_test.cc

      EXPECT_EQ(names2[2], "linear_2/c1");
      EXPECT_EQ(names2[3], "linear_2/mul_1");
      EXPECT_EQ(names2[4], "linear_2");
    
      const auto names3 = LinearOp(root.WithOpName("c"));
    
      EXPECT_EQ(names3[0], "c/mul");
      EXPECT_EQ(names3[1], "c/bias_add");
      EXPECT_EQ(names3[2], "c/c1");
      EXPECT_EQ(names3[3], "c/mul_1");
      EXPECT_EQ(names3[4], "c");
    }
    
    TEST(ScopeTest, SingleUseScope) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 08:17:37 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/anamesz.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package s390x
    
    var cnamesz = []string{
    	"NONE",
    	"REG",
    	"FREG",
    	"VREG",
    	"AREG",
    	"ZCON",
    	"SCON",
    	"UCON",
    	"ADDCON",
    	"ANDCON",
    	"LCON",
    	"DCON",
    	"SACON",
    	"LACON",
    	"DACON",
    	"SBRA",
    	"LBRA",
    	"SAUTO",
    	"LAUTO",
    	"ZOREG",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 04:57:30 UTC 2016
    - 505 bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/cnames.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package loong64
    
    // This order should be strictly consistent to that in a.out.go.
    var cnames0 = []string{
    	"NONE",
    	"REG",
    	"FREG",
    	"FCSRREG",
    	"FCCREG",
    	"ZCON",
    	"SCON",
    	"UCON",
    	"ADD0CON",
    	"AND0CON",
    	"ADDCON",
    	"ANDCON",
    	"LCON",
    	"DCON",
    	"SACON",
    	"SECON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:21 UTC 2023
    - 629 bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/anames0.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package mips
    
    var cnames0 = []string{
    	"NONE",
    	"REG",
    	"FREG",
    	"FCREG",
    	"MREG",
    	"WREG",
    	"HI",
    	"LO",
    	"ZCON",
    	"SCON",
    	"UCON",
    	"ADD0CON",
    	"AND0CON",
    	"ADDCON",
    	"ANDCON",
    	"LCON",
    	"DCON",
    	"SACON",
    	"SECON",
    	"LACON",
    	"LECON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 04 19:06:44 UTC 2020
    - 554 bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

                int _namesp = _src.dec_ndr_long();
    
                if ( _namesp != 0 ) {
                    _src = _src.deferred;
                    int _namess = _src.dec_ndr_long();
                    int _namesi = _src.index;
                    _src.advance(16 * _namess);
    
                    if ( this.names == null ) {
                        if ( _namess < 0 || _namess > 0xFFFF )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 35.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/anames5.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package arm
    
    var cnames5 = []string{
    	"NONE",
    	"REG",
    	"REGREG",
    	"REGREG2",
    	"REGLIST",
    	"SHIFT",
    	"SHIFTADDR",
    	"FREG",
    	"PSR",
    	"FCR",
    	"SPR",
    	"RCON",
    	"NCON",
    	"RCON2A",
    	"RCON2S",
    	"SCON",
    	"LCON",
    	"LCONADDR",
    	"ZFCON",
    	"SFCON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 27 19:54:44 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/anames7.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package arm64
    
    // This order should be strictly consistent to that in a.out.go
    var cnames7 = []string{
    	"", // C_NONE starts from 1
    	"NONE",
    	"REG",
    	"ZREG",
    	"RSP",
    	"FREG",
    	"VREG",
    	"PAIR",
    	"SHIFT",
    	"EXTREG",
    	"SPR",
    	"SPOP",
    	"COND",
    	"ARNG",
    	"ELEM",
    	"LIST",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:37:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top