Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for qsub (0.05 sec)

  1. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v0.AddArg(x)
    		v.AddArg(v0)
    		return true
    	}
    	// match: (SUB x x)
    	// result: (MOVDconst [0])
    	for {
    		x := v_0
    		if x != v_1 {
    			break
    		}
    		v.reset(OpS390XMOVDconst)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    	// match: (SUB <t> x g:(MOVDload [off] {sym} ptr mem))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    		x := v_0.Args[0]
    		if !(is32Bit(-c)) {
    			break
    		}
    		v.reset(OpPPC64ADDconst)
    		v.AuxInt = int64ToAuxInt(-c)
    		v.AddArg(x)
    		return true
    	}
    	// match: (NEG (SUB x y))
    	// result: (SUB y x)
    	for {
    		if v_0.Op != OpPPC64SUB {
    			break
    		}
    		y := v_0.Args[1]
    		x := v_0.Args[0]
    		v.reset(OpPPC64SUB)
    		v.AddArg2(y, x)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	DSCLIQ:         "dscliq",
    	DSCLIQCC:       "dscliq.",
    	DSCRI:          "dscri",
    	DSCRICC:        "dscri.",
    	DSCRIQ:         "dscriq",
    	DSCRIQCC:       "dscriq.",
    	DSUB:           "dsub",
    	DSUBCC:         "dsub.",
    	DSUBQ:          "dsubq",
    	DSUBQCC:        "dsubq.",
    	DTSTDC:         "dtstdc",
    	DTSTDCQ:        "dtstdcq",
    	DTSTDG:         "dtstdg",
    	DTSTDGQ:        "dtstdgq",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	{ir.OADD, types.TFLOAT64}: ssa.OpAdd64F,
    
    	{ir.OSUB, types.TINT8}:    ssa.OpSub8,
    	{ir.OSUB, types.TUINT8}:   ssa.OpSub8,
    	{ir.OSUB, types.TINT16}:   ssa.OpSub16,
    	{ir.OSUB, types.TUINT16}:  ssa.OpSub16,
    	{ir.OSUB, types.TINT32}:   ssa.OpSub32,
    	{ir.OSUB, types.TUINT32}:  ssa.OpSub32,
    	{ir.OSUB, types.TINT64}:   ssa.OpSub64,
    	{ir.OSUB, types.TUINT64}:  ssa.OpSub64,
    	{ir.OSUB, types.TFLOAT32}: ssa.OpSub32F,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	69,  // 186: v1alpha1.IntOrString.strVal:type_name -> google.protobuf.StringValue
    	187, // [187:187] is the sub-list for method output_type
    	187, // [187:187] is the sub-list for method input_type
    	187, // [187:187] is the sub-list for extension type_name
    	187, // [187:187] is the sub-list for extension extendee
    	0,   // [0:187] is the sub-list for field type_name
    }
    
    func init() { file_pkg_apis_istio_v1alpha1_values_types_proto_init() }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    				return
    			}
    		}
    		if deadline.IsZero() {
    			st.readDeadline = nil
    		} else if st.readDeadline == nil {
    			st.readDeadline = sc.srv.afterFunc(deadline.Sub(sc.srv.now()), st.onReadTimeout)
    		} else {
    			st.readDeadline.Reset(deadline.Sub(sc.srv.now()))
    		}
    	})
    	return nil
    }
    
    func (w *http2responseWriter) SetWriteDeadline(deadline time.Time) error {
    	st := w.rws.stream
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    // packet with the given sourceIP, destIP, and destPort.
    func (tracer *iptablesTracer) ruleMatches(rule *iptablestest.Rule, sourceIP, protocol, destIP, destPort string) bool {
    	// The sub-rules within an iptables rule are ANDed together, so the rule only
    	// matches if all of them match. So go through the subrules, and if any of them
    	// DON'T match, then fail.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top