Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ROUND2 (0.08 sec)

  1. src/crypto/sha1/sha1block_amd64.s

    	ROUND1x(BX, CX, DX, BP, AX, 19)
    
    	ROUND2(AX, BX, CX, DX, BP, 20)
    	ROUND2(BP, AX, BX, CX, DX, 21)
    	ROUND2(DX, BP, AX, BX, CX, 22)
    	ROUND2(CX, DX, BP, AX, BX, 23)
    	ROUND2(BX, CX, DX, BP, AX, 24)
    	ROUND2(AX, BX, CX, DX, BP, 25)
    	ROUND2(BP, AX, BX, CX, DX, 26)
    	ROUND2(DX, BP, AX, BX, CX, 27)
    	ROUND2(CX, DX, BP, AX, BX, 28)
    	ROUND2(BX, CX, DX, BP, AX, 29)
    	ROUND2(AX, BX, CX, DX, BP, 30)
    	ROUND2(BP, AX, BX, CX, DX, 31)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/runtime/runtime1.go

    	}
    
    	*(*uint32)(unsafe.Pointer(&i1)) = ^uint32(1)
    	if i == i1 {
    		throw("float32nan2")
    	}
    	if i == i1 {
    		throw("float32nan3")
    	}
    
    	testAtomic64()
    
    	if fixedStack != round2(fixedStack) {
    		throw("FixedStack is not power-of-2")
    	}
    
    	if !checkASM() {
    		throw("assembly checks failed")
    	}
    }
    
    type dbgVar struct {
    	name   string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/runtime/stack.go

    		adjustframe(&u.frame, &adjinfo)
    	}
    
    	// free old stack
    	if stackPoisonCopy != 0 {
    		fillstack(old, 0xfc)
    	}
    	stackfree(old)
    }
    
    // round x up to a power of 2.
    func round2(x int32) int32 {
    	s := uint(0)
    	for 1<<s < x {
    		s++
    	}
    	return 1 << s
    }
    
    // Called from runtime·morestack when more stack is needed.
    // Allocate larger stack and relocate to new stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top