Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,798 for argps (0.64 sec)

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

    		for i := 0; i < len(partition); i++ {
    			e := partition[i]
    
    			if opcodeTable[e[0].Op].commutative {
    				// Order the first two args before comparison.
    				for _, v := range e {
    					if valueEqClass[v.Args[0].ID] > valueEqClass[v.Args[1].ID] {
    						v.Args[0], v.Args[1] = v.Args[1], v.Args[0]
    					}
    				}
    			}
    
    			// Sort by eq class of arguments.
    			byArgClass.a = e
    			byArgClass.eqClass = valueEqClass
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. src/internal/coverage/decodecounter/decodecounterfile.go

    		}
    		v, errv := sget()
    		if errv != nil {
    			return errv
    		}
    		if _, ok := cdr.args[k]; ok {
    			return fmt.Errorf("malformed args table")
    		}
    		cdr.args[k] = v
    	}
    	if argcs, ok := cdr.args["argc"]; ok {
    		argc, err := strconv.Atoi(argcs)
    		if err != nil {
    			return fmt.Errorf("malformed argc in counter data file args section")
    		}
    		cdr.osargs = make([]string, 0, argc)
    		for i := 0; i < argc; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. src/runtime/stkframe.go

    	var isReflect bool
    	args, isReflect = frame.argMapInternal()
    	if args.n > 0 && args.bytedata == nil {
    		// Non-empty argument frame, but not a special map.
    		// Fetch the argument map at pcdata.
    		stackmap := (*stackmap)(funcdata(f, abi.FUNCDATA_ArgsPointerMaps))
    		if stackmap == nil || stackmap.n <= 0 {
    			print("runtime: frame ", funcname(f), " untyped args ", hex(frame.argp), "+", hex(args.n*goarch.PtrSize), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/database/sql/fakedb_test.go

    		if args[i].Name == name {
    			return args[i].Value
    		}
    	}
    	return nil
    }
    
    // When doInsert is true, add the row to the table.
    // When doInsert is false do prep-work and error checking, but don't
    // actually add the row to the table.
    func (s *fakeStmt) execInsert(args []driver.NamedValue, doInsert bool) (driver.Result, error) {
    	db := s.c.db
    	if len(args) != s.placeholders {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	if token.IsIdentifier(m) {
    		return m
    	}
    	op, typ, auxint, aux, args := extract(m)
    	if opIsCommutative(op, arch) {
    		if args[1] < args[0] {
    			args[0], args[1] = args[1], args[0]
    		}
    	}
    	s := new(strings.Builder)
    	fmt.Fprintf(s, "%s <%s> [%s] {%s}", op, typ, auxint, aux)
    	for _, arg := range args {
    		prefix, expr := splitNameExpr(arg)
    		fmt.Fprint(s, " ", prefix, normalizeMatch(expr, arch))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  6. src/runtime/stack.go

    }
    
    // Stack frame layout
    //
    // (x86)
    // +------------------+
    // | args from caller |
    // +------------------+ <- frame->argp
    // |  return address  |
    // +------------------+
    // |  caller's BP (*) | (*) if framepointer_enabled && varp > sp
    // +------------------+ <- frame->varp
    // |     locals       |
    // +------------------+
    // |  args to callee  |
    // +------------------+ <- frame->sp
    //
    // (arm)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  7. test/recover.go

    }
    
    // function created by reflect.MakeFunc
    
    func reflectFunc(args []reflect.Value) (results []reflect.Value) {
    	mustRecoverBody(doubleRecover(), recover(), recover(), 15)
    	return nil
    }
    
    func test15() {
    	f := reflect.MakeFunc(reflect.TypeOf((func())(nil)), reflectFunc).Interface().(func())
    	defer f()
    	panic(15)
    }
    
    func reflectFunc2(args []reflect.Value) (results []reflect.Value) {
    	// This will call reflectFunc3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/graph/CachingDirectedGraphWalkerTest.groovy

            1 * graph.getNodeValues(1, _, _) >> { args -> args[1] << '1'; args[2] << 1; args[2] << 2 }
            1 * graph.getNodeValues(2, _, _) >> { args -> args[1] << '2'; args[2] << 3; args[2] << 4 }
            1 * graph.getNodeValues(3, _, _) >> { args -> args[1] << '3'; args[2] << 2 }
            1 * graph.getNodeValues(4, _, _) >> { args -> args[1] << '4' }
            5 * graph.getEdgeValues(_, _, _) >> { args -> args[2] << "${args[0]}->${args[1]}".toString() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. src/runtime/heapdump.go

    	// Information passed up from the callee frame about
    	// the layout of the outargs region.
    	argoff uintptr   // where the arguments start in the frame
    	arglen uintptr   // size of args region
    	args   bitvector // if args.n >= 0, pointer map of args region
    	sp     *uint8    // callee sp
    	depth  uintptr   // depth in call stack (0 == most recent)
    }
    
    // dump kinds & offsets of interesting fields in bv.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    	case LXV:
    		return op + " " + args[1] + "," + args[0]
    
    	case LXVL, LXVLL:
    		return op + " " + args[1] + "," + args[2] + "," + args[0]
    
    	case DCBT, DCBTST, DCBZ, DCBST, ICBI:
    		if args[0] == "0" || args[0] == "R0" {
    			return op + " (" + args[1] + ")"
    		}
    		return op + " (" + args[1] + ")(" + args[0] + ")"
    
    	// branch instructions needs additional handling
    	case BCLR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
Back to top