Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for argLen (0.25 sec)

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

    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagGT_UGT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagGT_ULT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:    "MOVSSconst1",
    		auxType: auxFloat32,
    		argLen:  0,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  2. src/syscall/js/js_test.go

    // JavaScript functions.
    // Note: All JavaScript functions return a JavaScript array, which will cause
    // one allocation to be created to track the Value.gcPtr for the Value finalizer.
    var allocTests = []struct {
    	argLen  int // The number of arguments to use for the syscall
    	expected int // The expected number of allocations
    }{
    	// For less than or equal to 16 arguments, we expect 1 alloction:
    	// - makeValue new(ref)
    	{0,  1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/op.go

    // for each architecture.
    type Op int32
    
    type opInfo struct {
    	name              string
    	reg               regInfo
    	auxType           auxType
    	argLen            int32 // the number of arguments, -1 if variable length
    	asm               obj.As
    	generic           bool      // this is a generic (arch-independent) opcode
    	rematerializeable bool      // this op is rematerializeable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	cleanup = func() {} // no cleanup by default
    
    	var argLen int
    	for _, arg := range cmd.Args {
    		argLen += len(arg)
    	}
    
    	// If we're not approaching 32KB of args, just pass args normally.
    	// (use 30KB instead to be conservative; not sure how accounting is done)
    	if !useResponseFile(cmd.Path, argLen) {
    		return
    	}
    
    	tf, err := os.CreateTemp("", "args")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.h

    LogicalResult MatchReduceToArgMinMaxType2(mhlo::ReduceOp reduce_op,
                                              bool is_argmax);
    
    // Base class for converting mhlo::ReduceOp to TF/TFL ArgMax/ArgMin ops.
    template <typename Reduce, typename ArgReduce, typename BooleanReduce,
              bool is_argmax>
    class ConvertReduceOpToArgMinMax : public OpConversionPattern<mhlo::ReduceOp> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      if (!operand) return InvalidArgument("Unable to cast input to MlirTensor");
      operands_.push_back(operand->getValue());
    
      // Get the next ArgDef and use it to infer the derived attributes associated
      // to this input.
      const tensorflow::OpDef::ArgDef& arg_def =
          op_def_->input_arg(current_ods_input_++);
      Type expected_type;
      if (arg_def.type() != tensorflow::DT_INVALID) {
        Builder builder(context_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.s

    //   func A2e(arr [] byte)
    //   code page conversion from  819 to 1047
    TEXT ·A2e(SB), NOSPLIT|NOFRAME, $0
    	MOVD arg_base+0(FP), R2                        // pointer to arry of characters
    	MOVD arg_len+8(FP), R3                         // count
    	XOR  R0, R0
    	XOR  R1, R1
    	BYTE $0xA7; BYTE $0x15; BYTE $0x00; BYTE $0x82 // BRAS 1,(2+(256/2))
    
    	// ASCII -> EBCDIC conversion table:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/envcmd/env.go

    		case "CGO_CXXFLAGS", "CGO_CFLAGS", "CGO_FFLAGS", "GGO_LDFLAGS":
    			ev.Changed = ev.Value != work.DefaultCFlags
    		}
    	}
    
    	return ret
    }
    
    // argKey returns the KEY part of the arg KEY=VAL, or else arg itself.
    func argKey(arg string) string {
    	i := strings.Index(arg, "=")
    	if i < 0 {
    		return arg
    	}
    	return arg[:i]
    }
    
    func runEnv(ctx context.Context, cmd *base.Command, args []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        const auto set_segment_sizes_attr =
            [&](const tensorflow::NameRangeMap& arg_ranges,
                const tensorflow::protobuf::RepeatedPtrField<
                    tensorflow::OpDef::ArgDef>& args,
                llvm::StringRef attr_name) {
              std::vector<int32_t> values;
              values.reserve(args.size());
              for (const auto& arg : args) {
                auto range = arg_ranges.at(arg.name());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/net/tcpsock_posix.go

    	// This can only happen when we are letting the kernel pick a port (laddr == nil)
    	// and when there is no listener for the destination address.
    	// It's hard to argue this is anything other than a kernel bug. If we
    	// see this happen, rather than expose the buggy effect to users, we
    	// close the fd and try again. If it happens twice more, we relent and
    	// use the result. See also:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top