Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 198 for Hi (0.02 sec)

  1. src/math/rand/v2/pcg.go

    	)
    
    	// state = state * mul + inc
    	hi, lo = bits.Mul64(p.lo, mulLo)
    	hi += p.hi*mulLo + p.lo*mulHi
    	lo, c := bits.Add64(lo, incLo, 0)
    	hi, _ = bits.Add64(hi, incHi, c)
    	p.lo = lo
    	p.hi = hi
    	return hi, lo
    }
    
    // Uint64 return a uniformly-distributed random uint64 value.
    func (p *PCG) Uint64() uint64 {
    	hi, lo := p.next()
    
    	// XSL-RR would be
    	//	hi, lo := p.next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/runtime/panic32.go

    func panicExtendIndex(hi int, lo uint, y int)
    func panicExtendIndexU(hi uint, lo uint, y int)
    func panicExtendSliceAlen(hi int, lo uint, y int)
    func panicExtendSliceAlenU(hi uint, lo uint, y int)
    func panicExtendSliceAcap(hi int, lo uint, y int)
    func panicExtendSliceAcapU(hi uint, lo uint, y int)
    func panicExtendSliceB(hi int, lo uint, y int)
    func panicExtendSliceBU(hi uint, lo uint, y int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue5470.dir/a.go

    package a
    
    type Foo interface {
    	Hi() string
    }
    
    func Test1() Foo { return make(tst1) }
    
    type tst1 map[string]bool
    
    func (r tst1) Hi() string { return "Hi!" }
    
    func Test2() Foo { return make(tst2, 0) }
    
    type tst2 []string
    
    func (r tst2) Hi() string { return "Hi!" }
    
    func Test3() Foo { return make(tst3) }
    
    type tst3 chan string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 07:01:43 UTC 2013
    - 532 bytes
    - Viewed (0)
  4. src/crypto/internal/bigmod/_asm/nat_amd64_asm.go

    	XORQ(carry, carry) // zero out carry
    
    	for i := 0; i < bits/64; i++ {
    		Comment("Iteration " + strconv.Itoa(i))
    		hi, lo := RDX, RAX // implicit MULQ inputs and outputs
    		MOVQ(x.Offset(i*8), lo)
    		MULQ(y)
    		ADDQ(z.Offset(i*8), lo)
    		ADCQ(Imm(0), hi)
    		ADDQ(carry, lo)
    		ADCQ(Imm(0), hi)
    		MOVQ(hi, carry)
    		MOVQ(lo, z.Offset(i*8))
    	}
    
    	Store(carry, ReturnIndex(0))
    	RET()
    
    	Label("adx")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/net/netip/uint128.go

    // its eq alg's generated code.
    func (u uint128) isZero() bool { return u.hi|u.lo == 0 }
    
    // and returns the bitwise AND of u and m (u&m).
    func (u uint128) and(m uint128) uint128 {
    	return uint128{u.hi & m.hi, u.lo & m.lo}
    }
    
    // xor returns the bitwise XOR of u and m (u^m).
    func (u uint128) xor(m uint128) uint128 {
    	return uint128{u.hi ^ m.hi, u.lo ^ m.lo}
    }
    
    // or returns the bitwise OR of u and m (u|m).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 21:28:44 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/internal/BuildScriptTransformerSpec.groovy

        }
    
        def "model blocks are not considered imperative code"() {
            given:
            def scriptData = parse("""
    model {
        task { foo(Task) { println "hi" } }
    }
    
    model { thing { println "hi" } }
    """)
    
            expect:
            scriptData.runDoesSomething
            !scriptData.data.hasImperativeStatements
            !scriptData.hasMethods
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  7. src/math/trig_reduce.go

    	// Multiply mantissa by the digits and extract the upper two digits (hi, lo).
    	z2hi, _ := bits.Mul64(z2, ix)
    	z1hi, z1lo := bits.Mul64(z1, ix)
    	z0lo := z0 * ix
    	lo, c := bits.Add64(z1lo, z2hi, 0)
    	hi, _ := bits.Add64(z0lo, z1hi, c)
    	// The top 3 bits are j.
    	j = hi >> 61
    	// Extract the fraction and find its magnitude.
    	hi = hi<<3 | lo>>61
    	lz := uint(bits.LeadingZeros64(hi))
    	e := uint64(bias - (lz + 1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/idna/trie.go

    func (t *sparseBlocks) lookup(n uint32, b byte) uint16 {
    	offset := t.offset[n]
    	header := t.values[offset]
    	lo := offset + 1
    	hi := lo + uint16(header.lo)
    	for lo < hi {
    		m := lo + (hi-lo)/2
    		r := t.values[m]
    		if r.lo <= b && b <= r.hi {
    			return r.value + uint16(b-r.lo)*header.value
    		}
    		if b < r.lo {
    			hi = m
    		} else {
    			lo = m + 1
    		}
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/compress/lzw/reader.go

    			r.o += copy(r.output[r.o:], r.output[i:])
    			if r.last != decoderInvalidCode {
    				// Save what the hi code expands to.
    				r.suffix[r.hi] = uint8(c)
    				r.prefix[r.hi] = r.last
    			}
    		default:
    			r.err = errors.New("lzw: invalid code")
    			break loop
    		}
    		r.last, r.hi = code, r.hi+1
    		if r.hi >= r.overflow {
    			if r.hi > r.overflow {
    				panic("unreachable")
    			}
    			if r.width == maxWidth {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:39 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/trie.go

    func (t *sparseBlocks) lookup(n uint32, b byte) uint16 {
    	offset := t.offset[n]
    	header := t.values[offset]
    	lo := offset + 1
    	hi := lo + uint16(header.lo)
    	for lo < hi {
    		m := lo + (hi-lo)/2
    		r := t.values[m]
    		if r.lo <= b && b <= r.hi {
    			return r.value + uint16(b-r.lo)*header.value
    		}
    		if b < r.lo {
    			hi = m
    		} else {
    			lo = m + 1
    		}
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top