Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for isaddcon (0.11 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset + 8
    		default:
    			return C_GOK
    		}
    		cf := c.instoffset
    		if isaddcon(cf) || isaddcon(-cf) {
    			return C_AACON
    		}
    		if isaddcon2(cf) {
    			return C_AACON2
    		}
    
    		return C_LACON
    
    	case obj.TYPE_BRANCH:
    		return C_SBRA
    
    	case obj.TYPE_SPECIAL:
    		opd := SpecialOperand(a.Offset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/a.out.go

    	C_LIST              // [V1, V2, V3]
    
    	C_ZCON     // $0
    	C_ABCON0   // could be C_ADDCON0 or C_BITCON
    	C_ADDCON0  // 12-bit unsigned, unshifted
    	C_ABCON    // could be C_ADDCON or C_BITCON
    	C_AMCON    // could be C_ADDCON or C_MOVCON
    	C_ADDCON   // 12-bit unsigned, shifted left by 0 or 12
    	C_MBCON    // could be C_MOVCON or C_BITCON
    	C_MOVCON   // generated by a 16-bit constant, optionally inverted and/or shifted by multiple of 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/mips/anames0.go

    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",
    	"DACON",
    	"STCON",
    	"SBRA",
    	"LBRA",
    	"SAUTO",
    	"LAUTO",
    	"SEXT",
    	"LEXT",
    	"ZOREG",
    	"SOREG",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 04 19:06:44 UTC 2020
    - 554 bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/cnames.go

    // 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",
    	"LACON",
    	"LECON",
    	"DACON",
    	"STCON",
    	"SBRA",
    	"LBRA",
    	"SAUTO",
    	"LAUTO",
    	"SEXT",
    	"LEXT",
    	"ZOREG",
    	"SOREG",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:21 UTC 2023
    - 629 bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/anamesz.go

    // 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",
    	"SOREG",
    	"LOREG",
    	"TLS_LE",
    	"TLS_IE",
    	"GOK",
    	"ADDR",
    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/arm64/anames7.go

    	"ZREG",
    	"RSP",
    	"FREG",
    	"VREG",
    	"PAIR",
    	"SHIFT",
    	"EXTREG",
    	"SPR",
    	"SPOP",
    	"COND",
    	"ARNG",
    	"ELEM",
    	"LIST",
    	"ZCON",
    	"ABCON0",
    	"ADDCON0",
    	"ABCON",
    	"AMCON",
    	"ADDCON",
    	"MBCON",
    	"MOVCON",
    	"BITCON",
    	"ADDCON2",
    	"LCON",
    	"MOVCON2",
    	"MOVCON3",
    	"VCON",
    	"FCON",
    	"VCONADDR",
    	"AACON",
    	"AACON2",
    	"LACON",
    	"AECON",
    	"SBRA",
    	"LBRA",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:37:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/asm0.go

    	if a == b {
    		return true
    	}
    	switch a {
    	case C_LCON:
    		if b == C_ZCON || b == C_SCON || b == C_UCON || b == C_ADDCON || b == C_ANDCON {
    			return true
    		}
    
    	case C_ADD0CON:
    		if b == C_ADDCON {
    			return true
    		}
    		fallthrough
    
    	case C_ADDCON:
    		if b == C_ZCON || b == C_SCON {
    			return true
    		}
    
    	case C_AND0CON:
    		if b == C_ANDCON {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/ads.go

    	// a better choice, it introduces a race condition; If we complete initialization of a new push
    	// context between initializeProxy and addCon, we would not get any pushes triggered for the new
    	// push context, leading the proxy to have a stale state until the next full push.
    	s.addCon(con.ID(), con)
    	// Register that initialization is complete. This triggers to calls that it is safe to access the
    	// proxy
    	defer con.MarkInitialized()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/a.out.go

    	BRANCH = 1 << 3
    )
    
    const (
    	C_NONE = iota
    	C_REG
    	C_FREG
    	C_FCSRREG
    	C_FCCREG
    	C_ZCON
    	C_SCON // 12 bit signed
    	C_UCON // 32 bit signed, low 12 bits 0
    	C_ADD0CON
    	C_AND0CON
    	C_ADDCON // -0x800 <= v < 0
    	C_ANDCON // 0 < v <= 0xFFF
    	C_LCON   // other 32
    	C_DCON   // other 64 (could subdivide further)
    	C_SACON  // $n(REG) where n <= int12
    	C_SECON
    	C_LACON // $n(REG) where int12 < n <= int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. tensorflow/c/c_test_util.h

                         const char* name = "split3");
    
    bool IsPlaceholder(const tensorflow::NodeDef& node_def);
    
    bool IsScalarConst(const tensorflow::NodeDef& node_def, int v);
    
    bool IsAddN(const tensorflow::NodeDef& node_def, int n);
    
    bool IsNeg(const tensorflow::NodeDef& node_def, const string& input);
    
    bool GetGraphDef(TF_Graph* graph, tensorflow::GraphDef* graph_def);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 09 01:06:53 UTC 2018
    - 6K bytes
    - Viewed (0)
Back to top