Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,361 for aloop (0.04 sec)

  1. src/internal/bytealg/equal_loong64.s

    TEXT runtime·memequal<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-25
    	BEQ	R4, R5, eq
    	ADDV	R4, R6, R7
    	PCALIGN	$16
    loop:
    	BNE	R4, R7, test
    	MOVV	$1, R4
    	RET
    test:
    	MOVBU	(R4), R9
    	ADDV	$1, R4
    	MOVBU	(R5), R10
    	ADDV	$1, R5
    	BEQ	R9, R10, loop
    
    	MOVB    R0, R4
    	RET
    eq:
    	MOVV	$1, R4
    	RET
    
    // memequal_varlen(a, b unsafe.Pointer) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 875 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/gotoolchain_loop.txt

    stdout go1.21.99
    
    # Toolchain target mismatch should be detected.
    env TESTGO_VERSION_SWITCH=mismatch
    ! go version
    stderr '^go: toolchain go1.21.1 invoked to provide go1.21.99$'
    
    # Toolchain loop should be detected.
    env TESTGO_VERSION_SWITCH=loop
    ! go version
    stderr -count=10 '^go: switching from go1.21.1 to go1.21.99 \[depth 9[0-9]\]$'
    stderr -count=1 '^go: switching from go1.21.1 to go1.21.99 \[depth 100\]$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:20:23 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/while_licm.mlir

          "tf.Yield"(%ne) : (tensor<i1>) -> ()
        },
        {
          // loop body
          ^bb0(%barg0: tensor<4xf32>, %barg1: tensor<i32>):
          %add = "tf.Add"(%barg0, %barg0) : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32>
          %one = arith.constant dense<1> : tensor<i32>
          %sub = "tf.Sub"(%barg1, %one) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    
          // Some loop invariant math
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 03:28:59 UTC 2022
    - 3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc_test.go

    			Goto("loop"),
    		),
    		Bloc("loop",
    			Valu("memphi", OpPhi, types.TypeMem, 0, nil, "mem", "call"),
    			Valu("call", OpAMD64CALLstatic, types.TypeMem, 0, AuxCallLSym("_"), "memphi"),
    			Valu("test", OpAMD64CMPBconst, types.TypeFlags, 0, nil, "cond"),
    			Eq("test", "next", "exit"),
    		),
    		Bloc("next",
    			Goto("loop"),
    		),
    		Bloc("exit",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. src/math/big/arith_arm.s

    	// first word
    	MOVW.P	4(R2), R6
    	MOVW	R6>>R3, R7
    	MOVW	R6<<R4, R6
    	MOVW	R6, c+28(FP)
    	B E6
    
    	// word loop
    L6:
    	MOVW.P	4(R2), R6
    	ORR	R6<<R4, R7
    	MOVW.P	R7, 4(R1)
    	MOVW	R6>>R3, R7
    E6:
    	TEQ	R1, R5
    	BNE	L6
    
    	MOVW	R7, 0(R1)
    	RET
    
    Y6:	// copy loop, because shift 0 == shift 32
    	MOVW.P	4(R2), R6
    	MOVW.P	R6, 4(R1)
    	TEQ R1, R5
    	BNE Y6
    
    X6:
    	MOVW	$0, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/config/types.go

    	// Reconciler runs a periodic loop to reconcile the desired state of the with
    	// the actual state of the world by triggering attach detach operations.
    	// This flag enables or disables reconcile.  Is false by default, and thus enabled.
    	DisableAttachDetachReconcilerSync bool
    	// ReconcilerSyncLoopPeriod is the amount of time the reconciler sync states loop
    	// wait between successive executions. Is set to 60 sec by default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/watch/filter.go

    	return fw.result
    }
    
    // Stop stops the upstream watch, which will eventually stop this watch.
    func (fw *filteredWatch) Stop() {
    	fw.incoming.Stop()
    }
    
    // loop waits for new values, filters them, and resends them.
    func (fw *filteredWatch) loop() {
    	defer close(fw.result)
    	for event := range fw.incoming.ResultChan() {
    		filtered, keep := fw.f(event)
    		if keep {
    			fw.result <- filtered
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Fourth, add all the inputs to sc_forward(). These all come from the
      // while loop operands or the non_tpu() call that's in the loop body. The
      // loop operands need to be pulled from the "i" (or "2") version of the
      // inputs. The inputs coming from non_tpu() are from the same loop iteration
      // (non_tpu_res_i).
      std::vector<Value> f_operands;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. src/math/big/arith_amd64.s

    	MOVQ x+24(FP), R8
    	MOVQ y+48(FP), R9
    	MOVQ z+0(FP), R10
    
    	MOVQ $0, CX		// c = 0
    	MOVQ $0, SI		// i = 0
    
    	// s/JL/JMP/ below to disable the unrolled loop
    	SUBQ $4, DI		// n -= 4
    	JL V1			// if n < 0 goto V1
    
    U1:	// n >= 0
    	// regular loop body unrolled 4x
    	ADDQ CX, CX		// restore CF
    	MOVQ 0(R8)(SI*8), R11
    	MOVQ 8(R8)(SI*8), R12
    	MOVQ 16(R8)(SI*8), R13
    	MOVQ 24(R8)(SI*8), R14
    	ADCQ 0(R9)(SI*8), R11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. src/syscall/js/func.go

    // pause the event loop and spawn a new goroutine.
    // Other wrapped functions which are triggered during a call from Go to JavaScript
    // get executed on the same goroutine.
    //
    // As a consequence, if one wrapped function blocks, JavaScript's event loop
    // is blocked until that function returns. Hence, calling any async JavaScript
    // API, which requires the event loop, like fetch (http.Client), will cause an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top