Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,361 for aloop (0.1 sec)

  1. src/crypto/sha1/sha1block_s390x.s

    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $1, R0                       // SHA-1 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    	KIMD R0, R2      // compute intermediate message digest (KIMD)
    	BVS  loop        // continue if interrupted
    	RET
    
    generic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 608 bytes
    - Viewed (0)
  2. src/math/big/arith.go

    // However, checking i < len(x) && i < len(y) as well is faster than
    // having the compiler do a bounds check in the body of the loop;
    // remarkably it is even faster than hoisting the bounds check
    // out of the loop, by doing something like
    //   _, _ = x[len(z)-1], y[len(z)-1]
    // There are other ways to hoist the bounds check out of the loop,
    // but the compiler's BCE isn't powerful enough for them (yet?).
    // See the discussion in CL 164966.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 20:09:27 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  3. test/typeparam/issue48462.dir/a.go

    // license that can be found in the LICENSE file.
    
    package a
    
    func Unique[T comparable](set []T) []T {
    	nset := make([]T, 0, 8)
    
    loop:
    	for _, s := range set {
    		for _, e := range nset {
    			if s == e {
    				continue loop
    			}
    		}
    
    		nset = append(nset, s)
    	}
    
    	return nset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 00:13:47 UTC 2021
    - 383 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue9400/asm_amd64x.s

    	// will clobber the test pattern created by the caller
    	ADDQ	$(1024 * 8), SP
    
    	// Ask signaller to setgid
    	MOVL	$1, ·Baton(SB)
    
    	// Wait for setgid completion
    loop:
    	PAUSE
    	MOVL	·Baton(SB), AX
    	CMPL	AX, $0
    	JNE	loop
    
    	// Restore stack
    	SUBQ	$(1024 * 8), SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 589 bytes
    - Viewed (0)
  5. test/typecheckloop.go

    // Verify that constant definition loops are caught during
    // typechecking and that the errors print correctly.
    
    package main
    
    const A = 1 + B // ERROR "constant definition loop\n.*A uses B\n.*B uses C\n.*C uses A|initialization cycle"
    const B = C - 1 // ERROR "constant definition loop\n.*B uses C\n.*C uses B|initialization cycle"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 528 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/cgo/internal/test/issue9400/asm_386.s

    	// will clobber the test pattern created by the caller
    	ADDL	$(1024 * 8), SP
    
    	// Ask signaller to setgid
    	MOVL	$1, (BX)
    
    	// Wait for setgid completion
    loop:
    	PAUSE
    	MOVL	(BX), AX
    	CMPL	AX, $0
    	JNE	loop
    
    	// Restore stack
    	SUBL	$(1024 * 8), SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 575 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue9400/asm_s390x.s

    	// will clobber the test pattern created by the caller
    	ADD	$(1024 * 8), R15
    
    	// Ask signaller to setgid
    	MOVD	$·Baton(SB), R5
    	MOVW	$1, 0(R5)
    
    	// Wait for setgid completion
    loop:
    	SYNC
    	MOVW	·Baton(SB), R3
    	CMPBNE	R3, $0, loop
    
    	// Restore stack
    	SUB	$(1024 * 8), R15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 580 bytes
    - Viewed (0)
  10. pkg/kubelet/cloudresource/cloud_request_manager_test.go

    			wantErr:                true,
    			shouldDisableInstances: true,
    		},
    		{
    			name:      "subsequent sync loop succeeds",
    			addrs:     createNodeInternalIPAddress("10.0.1.12"),
    			wantAddrs: createNodeInternalIPAddress("10.0.1.12"),
    		},
    		{
    			name:      "subsequent sync loop encounters an error, last addresses returned",
    			err:       errors.New("bad"),
    			wantAddrs: createNodeInternalIPAddress("10.0.1.12"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top