Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for argNum (0.14 sec)

  1. src/fmt/errors.go

    		w.err, _ = a[p.wrappedErrs[0]].(error)
    		err = w
    	default:
    		if p.reordered {
    			slices.Sort(p.wrappedErrs)
    		}
    		var errs []error
    		for i, argNum := range p.wrappedErrs {
    			if i > 0 && p.wrappedErrs[i-1] == argNum {
    				continue
    			}
    			if e, ok := a[argNum].(error); ok {
    				errs = append(errs, e)
    			}
    		}
    		err = &wrapErrors{s, errs}
    	}
    	p.free()
    	return err
    }
    
    type wrapError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/fmt/print.go

    func intFromArg(a []any, argNum int) (num int, isInt bool, newArgNum int) {
    	newArgNum = argNum
    	if argNum < len(a) {
    		num, isInt = a[argNum].(int) // Almost always OK.
    		if !isInt {
    			// Work harder.
    			switch v := reflect.ValueOf(a[argNum]); v.Kind() {
    			case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    				n := v.Int()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	argNum := state.argNums[formatArg]
    	if argNum <= 0 {
    		// Shouldn't happen, so catch it with prejudice.
    		panic("negative arg num")
    	}
    	if argNum < len(call.Args)-1 {
    		return true // Always OK.
    	}
    	if call.Ellipsis.IsValid() {
    		return false // We just can't tell; there could be many more arguments.
    	}
    	if argNum < len(call.Args) {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

      int64_t original_args = func.getNumArguments();
      for (int64_t argnum = 0; argnum < original_args; ++argnum) {
        auto arg = func.getArgument(argnum);
        Type t = ta_arg_buffer_type(argnum);
        if (!t) continue;
        arg.setType(t);
        auto grad_it = grads.find(argnum);
        if (grad_it == grads.end()) continue;
        llvm::StringMap<Value> grads_map;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    				// Similarly so for return values: ret, ret1, ret2, ...
    				name := "arg"
    				if isret {
    					name = "ret"
    				}
    				if argnum > 0 {
    					name += strconv.Itoa(argnum)
    				}
    				names = []*ast.Ident{ast.NewIdent(name)}
    			}
    			argnum += len(names)
    
    			// Create variable for each name.
    			for _, id := range names {
    				name := id.Name
    				for _, c := range cc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/lex/input.go

    // The opening parenthesis has been absorbed.
    func (in *Input) argsFor(macro *Macro) map[string][]Token {
    	var args [][]Token
    	// One macro argument per iteration. Collect them all and check counts afterwards.
    	for argNum := 0; ; argNum++ {
    		tokens, tok := in.collectArgument(macro)
    		args = append(args, tokens)
    		if tok == ')' {
    			break
    		}
    	}
    	// Zero-argument macros are tricky.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. src/internal/trace/internal/oldtrace/parser.go

    	for i, a := range desc.Args {
    		fmt.Fprintf(w, " %s=%d", a, ev.Args[i])
    	}
    	return w.String()
    }
    
    // argNum returns total number of args for the event accounting for timestamps,
    // sequence numbers and differences between trace format versions.
    func (raw *rawEvent) argNum() int {
    	desc := &EventDescriptions[raw.typ]
    	if raw.typ == EvStack {
    		return len(raw.args)
    	}
    	narg := len(desc.Args)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// LSRV <Wd>, <Wn>, <Wm>
    	{0xffe0fc00, 0x1ac02400, LSRV, instArgs{arg_Wd, arg_Wn, arg_Wm}, nil},
    	// LSR <Xd>, <Xn>, <Xm>
    	{0xffe0fc00, 0x9ac02400, LSR, instArgs{arg_Xd, arg_Xn, arg_Xm}, nil},
    	// LSRV <Xd>, <Xn>, <Xm>
    	{0xffe0fc00, 0x9ac02400, LSRV, instArgs{arg_Xd, arg_Xn, arg_Xm}, nil},
    	// MUL <Wd>, <Wn>, <Wm>
    	{0xffe0fc00, 0x1b007c00, MUL, instArgs{arg_Wd, arg_Wn, arg_Wm}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //     one register with arrangement:H and element index encoded in "Q:S:size<1>".
    
    type instArg uint16
    
    const (
    	_ instArg = iota
    	arg_Bt
    	arg_Cm
    	arg_Cn
    	arg_cond_AllowALNV_Normal
    	arg_conditional
    	arg_cond_NotAllowALNV_Invert
    	arg_Da
    	arg_Dd
    	arg_Dm
    	arg_Dn
    	arg_Dt
    	arg_Dt2
    	arg_Hd
    	arg_Hn
    	arg_Ht
    	arg_IAddSub
    	arg_immediate_0_127_CRm_op2
    	arg_immediate_0_15_CRm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
  10. internal/grid/grid_types_msgp_test.go

    		zb0001--
    		field, err = dc.ReadMapKeyPtr()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "OrgNum":
    			z.OrgNum, err = dc.ReadInt()
    			if err != nil {
    				err = msgp.WrapError(err, "OrgNum")
    				return
    			}
    		case "OrgString":
    			z.OrgString, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "OrgString")
    				return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top