Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 676 for aloop (0.58 sec)

  1. tensorflow/compiler/jit/shape_inference_test.cc

        auto enter =
            ops::internal::Enter(scope.WithOpName("while/Enter"), source, "aloop");
        // Add an unused Enter node. These should be ignored.
        auto enter2 =
            ops::internal::Enter(scope.WithOpName("while/Enter2"), source, "aloop");
        auto merge = ops::Merge(scope.WithOpName("while/Merge"),
                                std::initializer_list<Input>{enter, dummy});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/wasm/wasmobj.go

    		}
    		p = appendp(p, AEnd)
    	}
    
    	// record the branches targeting the entry loop and the unwind exit,
    	// their targets with be filled in later
    	var entryPointLoopBranches []*obj.Prog
    	var unwindExitBranches []*obj.Prog
    	currentDepth := 0
    	for p := s.Func().Text; p != nil; p = p.Link {
    		switch p.As {
    		case ABlock, ALoop, AIf:
    			currentDepth++
    		case AEnd:
    			currentDepth--
    		}
    
    		switch p.As {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/aenum.go

    	ALEAVEW
    	ALEAW
    	ALFENCE
    	ALFSL
    	ALFSQ
    	ALFSW
    	ALGDT
    	ALGSL
    	ALGSQ
    	ALGSW
    	ALIDT
    	ALLDT
    	ALMSW
    	ALOCK
    	ALODSB
    	ALODSL
    	ALODSQ
    	ALODSW
    	ALONG
    	ALOOP
    	ALOOPEQ
    	ALOOPNE
    	ALSLL
    	ALSLQ
    	ALSLW
    	ALSSL
    	ALSSQ
    	ALSSW
    	ALTR
    	ALZCNTL
    	ALZCNTQ
    	ALZCNTW
    	AMASKMOVOU
    	AMASKMOVQ
    	AMAXPD
    	AMAXPS
    	AMAXSD
    	AMAXSS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. src/math/big/arith_arm64.s

    	STP	(R22, R23), 16(R0)
    	SUB	$4, R1
    	B	loop
    done:
    	MOVD.W	R8, -8(R0)	// the first element x[0]
    	MOVD	R5, c+56(FP)	// the part moved out from x[n-1]
    	RET
    copy:
    	CMP	R0, R2
    	BEQ	len0
    	TBZ	$0, R1, ctwo
    	MOVD.W	-8(R2), R4
    	MOVD.W	R4, -8(R0)
    	SUB	$1, R1
    ctwo:
    	TBZ	$1, R1, cloop
    	LDP.W	-16(R2), (R4, R5)
    	STP.W	(R4, R5), -16(R0)
    	SUB	$2, R1
    cloop:
    	CBZ	R1, len0
    	LDP.W	-32(R2), (R4, R5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/likelyadjust.go

    package ssa
    
    import (
    	"fmt"
    )
    
    type loop struct {
    	header *Block // The header node of this (reducible) loop
    	outer  *loop  // loop containing this loop
    
    	// By default, children, exits, and depth are not initialized.
    	children []*loop  // loops nested directly within this loop. Initialized by assembleChildren().
    	exits    []*Block // exits records blocks reached by exits from this loop. Initialized by findExits().
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/rangefunc/rewrite.go

    it does not call the loop body again after it has returned false or
    after the entire loop has exited (it might retain a copy of the body
    function, or pass it to another goroutine) -- each generated loop has
    its own #stateK variable that is used to check for permitted call
    patterns to the yield function for a loop body.
    
    The state values are:
    
    abi.RF_DONE = 0      // body of loop has exited in a non-panic way
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    	loop := body                       // target of back-edge
    	if s.Cond != nil {
    		loop = b.newBlock(KindForLoop, s)
    	}
    	cont := loop // target of 'continue'
    	if s.Post != nil {
    		cont = b.newBlock(KindForPost, s)
    	}
    	if label != nil {
    		label._break = done
    		label._continue = cont
    	}
    	b.jump(loop)
    	b.current = loop
    	if loop != body {
    		b.add(s.Cond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. src/math/big/arith_ppc64x.s

    	CMP   R5, $0
    	MOVD  R5, CTR         // Set up loop counter
    	BEQ   tail            // If R5 = 0, we can't use the loop
    
    	// Process 4 elements per iteration. Unrolling this loop
    	// means a performance trade-off: we will lose performance
    	// for small values of z_len (0.90x in the worst case), but
    	// gain significant performance as z_len increases (up to
    	// 1.45x).
    
    	PCALIGN $16
    loop:
    	MOVD  8(R8), R11      // R11 = x[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    		return true
    	})
    	return nil, nil
    }
    
    // reportCaptured reports a diagnostic stating a loop variable
    // has been captured by a func literal if checkStmt has escaping
    // references to vars. vars is expected to be variables updated by a loop statement,
    // and checkStmt is expected to be a statements from the body of a func literal in the loop.
    func reportCaptured(pass *analysis.Pass, vars []types.Object, checkStmt ast.Stmt) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/internal/bytealg/index_ppc64x.s

    	ADD      $19, R7, R9  // Number of string bytes for loop
    	CMP      R9, LASTBYTE // Compare against last byte of string
    	BLT      index3loop2  // If within, continue this loop
    	CMP      R7, LASTSTR  // Compare against last start byte
    	BLT      index2to16   // Process remainder
    	VSPLTISB $0, V3       // Special case for last 16 bytes
    	BR       index3loop   // Continue this loop
    
    	// Loop to process 4 byte separator
    	// string[0:16] in V2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
Back to top