Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for insts (0.06 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    Wei Xiao <******@****.***> 1500351937 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          }
          if (auto custom_op = dyn_cast<mlir::TFL::CustomOp>(inst)) {
            return BuildCustomOperator(inst, custom_op, operands, results);
          }
          if (auto whileOp = dyn_cast<mlir::TFL::WhileOp>(inst)) {
            if (inst->getNumOperands() != inst->getNumResults()) {
              inst->emitOpError(
                  "number of operands and results don't match, only canonical "
                  "TFL While supported");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    // and hold assembly state.
    type AsmBuf struct {
    	buf      [100]byte
    	off      int
    	rexflag  int
    	vexflag  bool // Per inst: true for VEX-encoded
    	evexflag bool // Per inst: true for EVEX-encoded
    	rep      bool
    	repn     bool
    	lock     bool
    
    	evex evexBits // Initialized when evexflag is true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    		if int32(int16(v)) != v {
    			log.Fatalf("mishandled instruction %v", p)
    		}
    		// Offsets in DS form stores must be a multiple of 4
    		inst := c.opstore(p.As)
    		if c.opform(inst) == DS_FORM && v&0x3 != 0 {
    			log.Fatalf("invalid offset for DS form load/store %v", p)
    		}
    		o1 = AOP_IRR(inst, uint32(p.From.Reg), uint32(r), uint32(v))
    
    	case 8: /* mov soreg, r ==> lbz/lhz/lwz o(r), lbz o(r) + extsb r,r */
    		r := int(p.From.Reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			}),
    			valid: []string{
    				"self.ints.sum() == 8",
    				"self.ints.min() == 1",
    				"self.ints.max() == 3",
    				"self.emptyInts.sum() == 0",
    				"self.ints.isSorted()",
    				"self.emptyInts.isSorted()",
    				"self.unsortedInts.isSorted() == false",
    				"self.ints.indexOf(2) == 1",
    				"self.ints.lastIndexOf(2) == 2",
    				"self.ints.indexOf(10) == -1",
    				"self.ints.lastIndexOf(10) == -1",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

              "Graph not traversed in reverse post order; use seen before def!");
        mlir::Operation* inst = node_values_[input_node.id()];
        if (input_edge->IsControlEdge())
          control_operands.push_back(inst->getResult(inst->getNumResults() - 1));
        else
          result.operands.push_back(inst->getResult(input_edge->src_output()));
      }
    
      using FuncPairType = std::pair<const std::string*, const AttrValue*>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    }
    
    func autoConvert_v1alpha2_NamedResourcesIntSlice_To_resource_NamedResourcesIntSlice(in *v1alpha2.NamedResourcesIntSlice, out *resource.NamedResourcesIntSlice, s conversion.Scope) error {
    	out.Ints = *(*[]int64)(unsafe.Pointer(&in.Ints))
    	return nil
    }
    
    // Convert_v1alpha2_NamedResourcesIntSlice_To_resource_NamedResourcesIntSlice is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/reflect/value.go

    						intToReg(regs, st.ireg, st.size, offset)
    					} else {
    						// Only populate the Ints space on the return path.
    						// This is safe because out is kept alive until the
    						// end of this function, and the return path through
    						// makeFuncStub has no preemption, so these pointers
    						// are always visible to the GC.
    						regs.Ints[st.ireg] = uintptr(v.ptr)
    					}
    				case abiStepFloatReg:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Maps;
    import com.google.common.collect.Sets;
    import com.google.common.primitives.Ints;
    import com.google.common.util.concurrent.ExecutionError;
    import com.google.common.util.concurrent.Futures;
    import com.google.common.util.concurrent.ListenableFuture;
    import com.google.common.util.concurrent.SettableFuture;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Maps;
    import com.google.common.collect.Sets;
    import com.google.common.primitives.Ints;
    import com.google.common.util.concurrent.ExecutionError;
    import com.google.common.util.concurrent.Futures;
    import com.google.common.util.concurrent.ListenableFuture;
    import com.google.common.util.concurrent.SettableFuture;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top