Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for andNot (2.92 sec)

  1. src/math/big/int_test.go

    		y.SetString(test.y, 0)
    
    		testBitFun(t, "and", (*Int).And, x, y, test.and)
    		testBitFunSelf(t, "and", (*Int).And, x, y, test.and)
    		testBitFun(t, "andNot", (*Int).AndNot, x, y, test.andNot)
    		testBitFunSelf(t, "andNot", (*Int).AndNot, x, y, test.andNot)
    		testBitFun(t, "or", (*Int).Or, x, y, test.or)
    		testBitFunSelf(t, "or", (*Int).Or, x, y, test.or)
    		testBitFun(t, "xor", (*Int).Xor, x, y, test.xor)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    	syntax.Sub: token.SUB,
    	syntax.Or:  token.OR,
    	syntax.Xor: token.XOR,
    
    	syntax.Mul:    token.MUL,
    	syntax.Div:    token.QUO,
    	syntax.Rem:    token.REM,
    	syntax.And:    token.AND,
    	syntax.AndNot: token.AND_NOT,
    	syntax.Shl:    token.SHL,
    	syntax.Shr:    token.SHR,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    			// if it is used by this block, or live on output from this block and
    			// not set by the code in this block.
    			//
    			// in[b] = uevar[b] \cup (out[b] \setminus varkill[b])
    			newlivein.AndNot(be.liveout, be.varkill)
    			be.livein.Or(newlivein, be.uevar)
    		}
    	}
    }
    
    // Visits all instructions in a basic block and computes a bit vector of live
    // variables at each safe point locations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    		token.SUB: allNumeric,
    		token.MUL: allNumeric,
    		token.QUO: allNumeric,
    		token.REM: allInteger,
    
    		token.AND:     allInteger,
    		token.OR:      allInteger,
    		token.XOR:     allInteger,
    		token.AND_NOT: allInteger,
    
    		token.LAND: allBoolean,
    		token.LOR:  allBoolean,
    	}
    }
    
    // If e != nil, it must be the binary expression; it may be nil for non-constant expressions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // bounds and thus become the padding_value.
        Value x_in_bounds = rewriter.create<AndOp>(
            loc,
            rewriter.create<TF::GreaterEqualOp>(loc, b_false.getType(), n_plus_x,
                                                b_zero),
            rewriter.create<TF::LessOp>(loc, b_false.getType(), n_plus_x, b_cols));
        Value y_in_bounds = rewriter.create<AndOp>(
            loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    		}
    		o1 = LOP_IRR(opu, uint32(p.To.Reg), r, uint32(p.From.Offset>>16))
    		o2 = LOP_IRR(opl, uint32(p.To.Reg), uint32(p.To.Reg), uint32(p.From.Offset)&0xFFFF)
    
    	case 22: /* add $lcon/$andcon,r1,r2 ==> oris+ori+add/ori+add, add $s34con,r1 ==> addis+ori+slw+ori+add */
    		if p.To.Reg == REGTMP || p.Reg == REGTMP {
    			c.ctxt.Diag("can't synthesize large constant\n%v", p)
    		}
    		d := c.vregoff(&p.From)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    	case ir.OAND, ir.OOR, ir.OXOR:
    		n := n.(*ir.BinaryExpr)
    		a := s.expr(n.X)
    		b := s.expr(n.Y)
    		return s.newValue2(s.ssaOp(n.Op(), n.Type()), a.Type, a, b)
    	case ir.OANDNOT:
    		n := n.(*ir.BinaryExpr)
    		a := s.expr(n.X)
    		b := s.expr(n.Y)
    		b = s.newValue1(s.ssaOp(ir.OBITNOT, b.Type), b.Type, b)
    		return s.newValue2(s.ssaOp(ir.OAND, n.Type()), a.Type, a, b)
    	case ir.OLSH, ir.ORSH:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue_test.go

    func TestUnschedulablePodsMap(t *testing.T) {
    	var pods = []*v1.Pod{
    		st.MakePod().Name("p0").Namespace("ns1").Annotation("annot1", "val1").NominatedNodeName("node1").Obj(),
    		st.MakePod().Name("p1").Namespace("ns1").Annotation("annot", "val").Obj(),
    		st.MakePod().Name("p2").Namespace("ns2").Annotation("annot2", "val2").Annotation("annot3", "val3").NominatedNodeName("node3").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. RELEASE.md

    S Nikhil Krishna, Rajeshwar Reddy T, Ramon ViƱAs, Rasmus Diederichsen, Reuben
    Morais, robert, Rohit Gupta, Roland Zimmermann, Roman Soldatow, RonLek, Ruizhe,
    Ryan Jiang, saishruthi, Saleem Abdulrasool, Samantha Andow, Sami Kama,
    Sana-Damani, Saurabh Deoras, sdamani, Sean Morgan, seanshpark, Sebastien Iooss,
    Serv-Inc, Severen Redwood, Shahzad Lone, Shashank Gupta, shashvat, Shashvat
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/opGen.go

    				{0, 1006632944}, // X5 X6 X7 X8 X9 X10 X11 X12 X13 X14 X15 X16 X17 X18 X19 X20 X21 X22 X23 X24 X25 X26 X28 X29 X30
    			},
    		},
    	},
    	{
    		name:   "NOT",
    		argLen: 1,
    		asm:    riscv.ANOT,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 1006632944}, // X5 X6 X7 X8 X9 X10 X11 X12 X13 X14 X15 X16 X17 X18 X19 X20 X21 X22 X23 X24 X25 X26 X28 X29 X30
    			},
    			outputs: []outputInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top