Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 241 for aloop (0.05 sec)

  1. src/cmd/compile/internal/ssa/deadstore_test.go

    	// make sure we don't get into an infinite loop with phi values.
    	c := testConfig(t)
    	ptrType := c.config.Types.BytePtr
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("start", OpInitMem, types.TypeMem, 0, nil),
    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Valu("v", OpConstBool, c.config.Types.Bool, 1, nil),
    			Valu("addr", OpAddr, ptrType, 0, nil, "sb"),
    			Goto("loop")),
    		Bloc("loop",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testsanitizers/testdata/msan8.go

    	c := make(chan bool)
    	go func() {
    		defer func() { c <- true }()
    		C.msanGoLoop()
    	}()
    
    	for C.msanGoReady() == 0 {
    		time.Sleep(time.Microsecond)
    	}
    
    loop:
    	for {
    		select {
    		case <-c:
    			break loop
    		default:
    			C.msanGoSendSignal()
    			time.Sleep(time.Microsecond)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.s

    	MOVQ 16(DI), R10 // h2
    	MOVQ 24(DI), R11 // r0
    	MOVQ 32(DI), R12 // r1
    
    	CMPQ R15, $16
    	JB   bytes_between_0_and_15
    
    loop:
    	POLY1305_ADD(SI, R8, R9, R10)
    
    multiply:
    	POLY1305_MUL(R8, R9, R10, R11, R12, BX, CX, R13, R14)
    	SUBQ $16, R15
    	CMPQ R15, $16
    	JAE  loop
    
    bytes_between_0_and_15:
    	TESTQ R15, R15
    	JZ    done
    	MOVQ  $1, BX
    	XORQ  CX, CX
    	XORQ  R13, R13
    	ADDQ  R15, SI
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. src/net/interface_test.go

    		t.Fatal(err)
    	}
    }
    
    type ifStats struct {
    	loop  int // # of active loopback interfaces
    	other int // # of active other interfaces
    }
    
    func interfaceStats(ift []Interface) *ifStats {
    	var stats ifStats
    	for _, ifi := range ift {
    		if ifi.Flags&FlagUp != 0 {
    			if ifi.Flags&FlagLoopback != 0 {
    				stats.loop++
    			} else {
    				stats.other++
    			}
    		}
    	}
    	return &stats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/reflect/66056.md

    The new methods [Value.Seq] and [Value.Seq2] return sequences that iterate over the value
    as though it were used in a for/range loop.
    The new methods [Type.CanSeq] and [Type.CanSeq2] report whether calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 11:54:18 UTC 2024
    - 282 bytes
    - Viewed (0)
  6. test/prove_invert_loop_with_unused_iterators.go

    // errorcheck -0 -d=ssa/prove/debug=1
    
    //go:build amd64
    
    package main
    
    func invert(b func(), n int) {
    	for i := 0; i < n; i++ { // ERROR "(Inverted loop iteration|Induction variable: limits \[0,\?\), increment 1)"
    		b()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 225 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. .github/workflows/feedback.yml

      workflow_dispatch:
    
    permissions: {}
    
    jobs:
      feedback:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          # Feedback loop: ask for something on PR/Issue and close if not provided or return to the queue on update.
          # https://github.com/gradle/issue-management-action/blob/main/src/feedback.ts
          - uses: gradle/issue-management-action@v1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 516 bytes
    - Viewed (1)
  10. test/rangegen.go

    		p(b, "	l%ssel := 0\n", s)
    		p(b, "goto L%ssel; L%ssel: select { default: o.log(`L%ssel`)\n", s, s, s)
    		p(b, "	if l%ssel++; l%ssel >= 2 { o.log(`loop L%ssel`); return -1 }\n", s, s, s)
    		p(b, "	l%s := 0\n", s)
    		p(b, "goto L%s; L%s:	for %s i%s := range %s {\n", s, s, prefix, s, rangeExpr)
    		p(b, "	o.log1(`L%s top`, i%s)\n", s, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 23:35:19 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top