Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,361 for aloop (0.05 sec)

  1. src/runtime/time_windows_arm.s

    //go:build !faketime
    
    #include "go_asm.h"
    #include "textflag.h"
    #include "time_windows.h"
    
    TEXT time·now(SB),NOSPLIT,$0-20
    	MOVW	$_INTERRUPT_TIME, R3
    loop:
    	MOVW	time_hi1(R3), R1
    	DMB	MB_ISH
    	MOVW	time_lo(R3), R0
    	DMB	MB_ISH
    	MOVW	time_hi2(R3), R2
    	CMP	R1, R2
    	BNE	loop
    
    	// wintime = R1:R0, multiply by 100
    	MOVW	$100, R2
    	MULLU	R0, R2, (R4, R3)    // R4:R3 = R1:R0 * R2
    	MULA	R1, R2, R4, R4
    
    	// wintime*100 = R4:R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/fuse_test.go

    			Goto("empty")),
    		Bloc("else",
    			Valu("call2", OpStaticCall, types.TypeMem, 0, AuxCallLSym("_"), "mem"),
    			Goto("empty")),
    		Bloc("empty",
    			Goto("loop")),
    		Bloc("loop",
    			Goto("loop")))
    
    	CheckFunc(fun.f)
    	fuseLate(fun.f)
    
    	for _, b := range fun.f.Blocks {
    		if b == fun.blocks["then"] && b.Kind == BlockInvalid {
    			t.Errorf("then is eliminated, but should not")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    	return wait
    }
    
    // ConditionFunc returns true if the condition is satisfied, or an error
    // if the loop should be aborted.
    type ConditionFunc func() (done bool, err error)
    
    // ConditionWithContextFunc returns true if the condition is satisfied, or an error
    // if the loop should be aborted.
    //
    // The caller passes along a context that can be used by the condition function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. src/runtime/memclr_ppc64x.s

    	MOVD   R15, CTR         // loop counter of 16 bytes
    	XXLXOR VS32, VS32, VS32 // clear VS32 (V0)
    
    zero512preloop:  // clear up to 128 alignment
    	STXVD2X VS32, (R3+R0)         // clear 16 bytes
    	ADD     $16, R3               // update ptr
    	ADD     $-16, R4              // dec count
    	BDNZ    zero512preloop
    
    zero512setup:  // setup for dcbz loop
    	CMP  R4, $512   // check if at least 512
    	BLT  remain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/shape_inference.cc

                }
              }
            }
          }
        }
    
        // Merge node causes a loop so we remove NextIteration->Merge edge before
        // performing shape inference. But removing those edges also prevents us
        // from inferring output shape for Merge node (we need shapes for all its
        // inputs).
        // For loop invariant resource input's Merge node, we set output resource
        // shape as Enter node's resource shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

                                    TF::WhileOp* while_op) {
      // Given a while loop body function 'body_func', find the tf.While Op that
      // uses it.
      auto uses_optional = body_func.getSymbolUses(module);
      if (!uses_optional.has_value()) {
        body_func.emitOpError() << "no use of while loop body";
        return LogicalResult::failure();
      }
      *while_op = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. test/fixedbugs/issue7525b.go

    // Issue 7525: self-referential array types.
    
    package main
    
    var y struct { // GC_ERROR "initialization cycle: y refers to itself"
    	d [len(y.d)]int // GCCGO_ERROR "array bound|typechecking loop|invalid array"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 14:21:33 UTC 2022
    - 385 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/region-control-flow-to-functional.mlir

          %zero = arith.constant dense<0> : tensor<i32>
          %ne = "tf.NotEqual"(%carg1, %zero) : (tensor<i32>, tensor<i32>) -> tensor<i1>
          "tf.Yield"(%ne) : (tensor<i1>) -> ()
        },
        {
          // loop body
          ^bb0(%barg0: tensor<*xf32>, %barg1: tensor<i32>):
          %add = "tf.Add"(%barg0, %barg0) : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
          %one = arith.constant dense<1> : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 11:15:34 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  9. src/runtime/asm_wasm.s

    // The Go stack on the linear memory is then used to jump to the correct functions
    // with this loop, without having to restore the full WebAssembly stack.
    // It is expected to have a pending call before entering the loop, so check PAUSE first.
    	Get PAUSE
    	I32Eqz
    	If
    	loop:
    		Loop
    			// Get PC_B & PC_F from -8(SP)
    			Get SP
    			I32Const $8
    			I32Sub
    			I32Load16U $0 // PC_B
    
    			Get SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. test/syntax/semi4.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	for x		// GCCGO_ERROR "undefined"
    	{		// ERROR "unexpected {, expected for loop condition|expecting .*{.* after for clause"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 01 22:37:04 UTC 2022
    - 359 bytes
    - Viewed (0)
Back to top