Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for andc (0.04 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	ADDIS $1000, R3, R4             // 3c8303e8
    
    	ANDCC $1, R3                    // 70630001
    	ANDCC $1, R3, R4                // 70640001
    	ANDCC $-1, R4                   // 3be0ffff7fe42039
    	ANDCC $-1, R4, R5               // 3be0ffff7fe52039
    	ANDCC $65535, R5                // 70a5ffff
    	ANDCC $65535, R5, R6            // 70a6ffff
    	ANDCC $65536, R6                // 74c60001
    	ANDCC $65536, R6, R7            // 74c70001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVWZreg ((OR|XOR|AND) <t> x (MOVWZreg y))) => (MOVWZreg ((OR|XOR|AND) <t> x y))
    (MOVHZreg ((OR|XOR|AND) <t> x (MOVWZreg y))) => (MOVHZreg ((OR|XOR|AND) <t> x y))
    (MOVHZreg ((OR|XOR|AND) <t> x (MOVHZreg y))) => (MOVHZreg ((OR|XOR|AND) <t> x y))
    (MOVBZreg ((OR|XOR|AND) <t> x (MOVWZreg y))) => (MOVBZreg ((OR|XOR|AND) <t> x y))
    (MOVBZreg ((OR|XOR|AND) <t> x (MOVHZreg y))) => (MOVBZreg ((OR|XOR|AND) <t> x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    				// to write to the response should return a http.ErrHandlerTimeout error.
    				_, innerHandlerWriteErr := w.Write([]byte("foo"))
    				reqHandlerErrCh <- innerHandlerWriteErr
    
    				panic(http.ErrAbortHandler)
    			}
    		})
    
    		// NOTE: the server will enforce a 5s timeout on every
    		//  incoming request, and the client enforces a timeout of 1m.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (MULQconst [c] (NEGQ x)) && c != -(1<<31) => (MULQconst [-c] x)
    
    // checking AND against 0.
    (CMPQconst a:(ANDQ x y) [0]) && a.Uses == 1 => (TESTQ x y)
    (CMPLconst a:(ANDL x y) [0]) && a.Uses == 1 => (TESTL x y)
    (CMPWconst a:(ANDL x y) [0]) && a.Uses == 1 => (TESTW x y)
    (CMPBconst a:(ANDL x y) [0]) && a.Uses == 1 => (TESTB x y)
    (CMPQconst a:(ANDQconst [c] x) [0]) && a.Uses == 1 => (TESTQconst [c] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis_test.cc

      ops::Switch sw_1 = CreateSwitch(root, "B");
      Output add0 =
          ops::Add(root.WithOpName("and0"), sw_0.output_false, sw_1.output_true);
      Output add1 =
          ops::Add(root.WithOpName("and1"), sw_0.output_false, sw_1.output_false);
      ops::Merge or2(root.WithOpName("or2"), {add0, add1});
      Output add3 =
          ops::Add(root.WithOpName("and3"), or2.output, sw_0.output_false);
      ops::Merge or4(root.WithOpName("or4"), {add3, sw_0.output_true});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritedec64.go

    		return true
    	}
    }
    func rewriteValuedec64_OpEq64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Eq64 x y)
    	// result: (AndB (Eq32 (Int64Hi x) (Int64Hi y)) (Eq32 (Int64Lo x) (Int64Lo y)))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpAndB)
    		v0 := b.NewValue0(v.Pos, OpEq32, typ.Bool)
    		v1 := b.NewValue0(v.Pos, OpInt64Hi, typ.UInt32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "MODWU", argLength: 2, reg: gp21tmp, asm: "MODWU", resultInArg0: true, clobberFlags: true}, // arg0 % arg1
    
    		{name: "AND", argLength: 2, reg: gp21, asm: "AND", commutative: true, clobberFlags: true},                                                                    // arg0 & arg1
    		{name: "ANDW", argLength: 2, reg: gp21, asm: "ANDW", commutative: true, clobberFlags: true},                                                                  // arg0 & arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (ANDW x (MOVDconst [c])) => (ANDWconst [int32(c)] x)
    
    ((AND|ANDW)const [c] ((AND|ANDW)const [d] x)) => ((AND|ANDW)const [c&d] x)
    
    ((OR|XOR) x (MOVDconst [c])) && isU32Bit(c) => ((OR|XOR)const [c] x)
    ((OR|XOR)W x (MOVDconst [c])) => ((OR|XOR)Wconst [int32(c)] x)
    
    // Constant shifts.
    (S(LD|RD|RAD) x (MOVDconst [c])) => (S(LD|RD|RAD)const x [uint8(c&63)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/asm5.go

    		var as2 obj.As
    		switch p.As {
    		case AADD, ASUB, AORR, AEOR, ABIC:
    			as2 = p.As // ADD, SUB, ORR, EOR, BIC
    		case ARSB:
    			as2 = AADD // RSB -> RSB/ADD pair
    		case AADC:
    			as2 = AADD // ADC -> ADC/ADD pair
    		case ASBC:
    			as2 = ASUB // SBC -> SBC/SUB pair
    		case ARSC:
    			as2 = AADD // RSC -> RSC/ADD pair
    		default:
    			c.ctxt.Diag("unknown second op for %v", p)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    	// if sweepgen == h->sweepgen - 1, the span is currently being swept
    	// if sweepgen == h->sweepgen, the span is swept and ready to use
    	// if sweepgen == h->sweepgen + 1, the span was cached before sweep began and is still cached, and needs sweeping
    	// if sweepgen == h->sweepgen + 3, the span was swept and then cached and is still cached
    	// h->sweepgen is incremented by 2 after every GC
    
    	sweepgen              uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top