Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,635 for Koop (0.05 sec)

  1. 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)
  2. src/image/decode_test.go

    	}
    
    	golden := make(map[string]image.Image)
    loop:
    	for _, it := range imageTests {
    		g := golden[it.goldenFilename]
    		if g == nil {
    			var err error
    			g, _, err = decode(it.goldenFilename)
    			if err != nil {
    				t.Errorf("%s: %v", it.goldenFilename, err)
    				continue loop
    			}
    			golden[it.goldenFilename] = g
    		}
    		m, imageFormat, err := decode(it.filename)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:51:48 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/386.s

    	CMPPD	X0, X1, 4
    	CMPPD	foo+4(SB), X1, 4
    
    // LTYPEX spec10	{ outcode(int($1), &$2); }
    	PINSRD	$1, (AX), X0
    	PINSRD	$2, foo+4(FP), X0
    
    // Was bug: LOOP is a branch instruction.
    	JCS	2(PC)
    loop:
    	LOOP	loop // LOOP
    
    // Tests for TLS reference.
    	MOVL    (TLS), AX
    	MOVL    8(TLS), DX
    
    // LTYPE0 nonnon	{ outcode(int($1), &$2); }
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 18:57:21 UTC 2019
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_main_function.mlir

      "tf_saved_model.session_initializer"() {initializers = [@NoOp]} : () -> ()
      func.func @NoOp() attributes {tf_saved_model.exported_names = ["__tf_saved_model_session_initializer_NoOp"]} {
        func.return
      }
    // CHECK: func @NoOp() attributes {tf_saved_model.exported_names = ["__tf_saved_model_session_initializer_NoOp"]}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/issue9400/asm_loong64.s

    	ADDV	$(1024*8), R3
    
    	// Ask signaller to setgid
    	MOVW	$1, R12
    	DBAR
    	MOVW	R12, ·Baton(SB)
    	DBAR
    
    	// Wait for setgid completion
    loop:
    	DBAR
    	MOVW	·Baton(SB), R12
    	OR	R13, R13, R13	// hint that we're in a spin loop
    	BNE	R12, loop
    	DBAR
    
    	// Restore stack
    	ADDV	$(-1024*8), R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 633 bytes
    - Viewed (0)
  6. test/fixedbugs/issue63955.go

    	var n int
    loop: // we want to have 3 preds here, the function entry and both gotos
    	if v := try(); v == 42 || v == 1337 { // the two || are to trick findIndVar
    		if n < 30 { // this aims to be the matched block
    			if shouldInc() {
    				n++
    				goto loop
    			}
    			n = N(n) // try to prevent some block joining
    			goto loop
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 578 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue9400/asm_mips64x.s

    	ADDV	$(1024*8), R29
    
    	// Ask signaller to setgid
    	MOVW	$1, R1
    	SYNC
    	MOVW	R1, ·Baton(SB)
    	SYNC
    
    	// Wait for setgid completion
    loop:
    	SYNC
    	MOVW	·Baton(SB), R1
    	OR	R2, R2, R2	// hint that we're in a spin loop
    	BNE	R1, loop
    	SYNC
    
    	// Restore stack
    	ADDV	$(-1024*8), R29
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 691 bytes
    - Viewed (0)
  8. tensorflow/cc/ops/while_loop.cc

      // The control dependency is for constants in the cond graph, and other ops
      // that do not depend on the loop variables. This ensures that these ops are
      // in the while loop frame (since they will indirectly depend on an Enter node
      // defining the frame) and that they are executed once per loop iteration.
      //
      // TODO(skyewm): the control dep will be added to all nodes in the cond graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/controller/metrics.go

    	// divided by the type of error:
    	// leak, repair, full, outOfRange, duplicate, invalid, unknown
    	clusterIPRepairIPErrors = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "ip_errors_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue10958.go

    		someglobal1++
    		someglobal1++
    	}
    }
    
    func standinacorner2(i int) {
    	// contains an irreducible loop containing changes to memory
    	if i != 0 {
    		goto midloop
    	}
    
    loop:
    	if someglobal2&1 != 0 {
    		goto done
    	}
    	someglobal2++
    midloop:
    	someglobal2++
    	goto loop
    
    done:
    	return
    }
    
    func standinacorner3() {
    	for someglobal3&1 == 0 {
    		if someglobal3&2 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top