Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for argN (0.04 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	op := f.Op.Copy(fn, skip)
    	arg1 := f.Arg1.Copy(fn, skip)
    	var arg2 AST
    	if f.Arg2 != nil {
    		arg2 = f.Arg2.Copy(fn, skip)
    	}
    	if op == nil && arg1 == nil && arg2 == nil {
    		return fn(f)
    	}
    	if op == nil {
    		op = f.Op
    	}
    	if arg1 == nil {
    		arg1 = f.Arg1
    	}
    	if arg2 == nil {
    		arg2 = f.Arg2
    	}
    	f = &Fold{Left: f.Left, Op: op, Arg1: arg1, Arg2: arg2}
    	if r := fn(f); r != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    	var rel obj.Reloc
    	var v int64
    
    	args := make([]int, 0, argListMax)
    	if ft != Ynone*Ymax {
    		args = append(args, ft)
    	}
    	for i := range p.RestArgs {
    		args = append(args, oclass(ctxt, p, &p.RestArgs[i].Addr)*Ymax)
    	}
    	if tt != Ynone*Ymax {
    		args = append(args, tt)
    	}
    
    	for _, yt := range o.ytab {
    		// ytab matching is purely args-based,
    		// but AVX512 suffixes like "Z" or "RU_SAE" will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    //
    // The code for parsing this file lives in rulegen.go; this file generates
    // ssa/rewritegeneric.go.
    
    // values are specified using the following format:
    // (op <type> [auxint] {aux} arg0 arg1 ...)
    // the type, aux, and auxint fields are optional
    // on the matching side
    //  - the type, aux, and auxint fields must match if they are specified.
    //  - the first occurrence of a variable defines that variable.  Subsequent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    // The args are for any placeholder parameters in the query.
    //
    // Exec uses [context.Background] internally; to specify the context, use
    // [DB.ExecContext].
    func (db *DB) Exec(query string, args ...any) (Result, error) {
    	return db.ExecContext(context.Background(), query, args...)
    }
    
    func (db *DB) exec(ctx context.Context, query string, args []any, strategy connReuseStrategy) (Result, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top