Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for incremental (0.16 sec)

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

    			p.To.Type = obj.TYPE_MEM
    			p.To.Reg = dstReg
    			p.To.Offset = offset + 48
    
    			// increment the src reg for next iteration
    			p = s.Prog(ppc64.AADD)
    			p.Reg = srcReg
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = bytesPerLoop
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = srcReg
    
    			// increment the dst reg for next iteration
    			p = s.Prog(ppc64.AADD)
    			p.Reg = dstReg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                // for the initial task...
                // In order to work around that problem, we override the
                // invokeAll method, so that whenever the method is called,
                // the pool core size will be incremented before submitting
                // all the tasks, then the thread will block waiting for all
                // those subtasks to finish.
                // This ensures the number of running workers is no more than
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    //
    //	noteRule("note to self: rule of interest matched")
    //
    // and that message will print when the rule matches.
    func noteRule(s string) bool {
    	fmt.Println(s)
    	return true
    }
    
    // countRule increments Func.ruleMatches[key].
    // If Func.ruleMatches is non-nil at the end
    // of compilation, it will be printed to stdout.
    // This is intended to make it easier to find which functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    			}
    			s.freeRegs(regspec.clobbers)
    			s.tmpused |= regspec.clobbers
    
    			// Pick registers for outputs.
    			{
    				outRegs := noRegisters // TODO if this is costly, hoist and clear incrementally below.
    				maxOutIdx := -1
    				var used regMask
    				if tmpReg != noRegister {
    					// Ensure output registers are distinct from the temporary register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top