Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for gcbits (0.23 sec)

  1. test/fixedbugs/issue14651.go

    func test32(a, b float32) {
    	abits := math.Float32bits(a)
    	bbits := math.Float32bits(b)
    	if abits != bbits {
    		panic(fmt.Sprintf("%08x != %08x\n", abits, bbits))
    	}
    }
    
    func test64(a, b float64) {
    	abits := math.Float64bits(a)
    	bbits := math.Float64bits(b)
    	if abits != bbits {
    		panic(fmt.Sprintf("%016x != %016x\n", abits, bbits))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 17:09:29 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	data := NewAt(typ.Elem(), val.UnsafePointer())
    	heapBits := GCBits(data.Interface())
    	// Repeat the bitmap for the slice size, trimming scalars in
    	// the last element.
    	bits = trimBitmap(rep(cap, bits))
    	if bytes.Equal(heapBits, bits) {
    		return
    	}
    	if len(heapBits) > len(bits) && bytes.Equal(heapBits[:len(bits)], bits) {
    		// Just the prefix matching is OK.
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http2/hpack/huffman.go

    	// cur is the bit buffer that has not been fed into n.
    	// cbits is the number of low order bits in cur that are valid.
    	// sbits is the number of bits of the symbol prefix being decoded.
    	cur, cbits, sbits := uint(0), uint8(0), uint8(0)
    	for _, b := range v {
    		cur = cur<<8 | uint(b)
    		cbits += 8
    		sbits += 8
    		for cbits >= 8 {
    			idx := byte(cur >> (cbits - 8))
    			n = n.children[idx]
    			if n == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/sym/symkind.go

    	STYPE,
    	SSTRING,
    	SGOSTRING,
    	SGOFUNC,
    	SGCBITS,
    	SRODATA,
    	SFUNCTAB,
    }
    
    // RelROMap describes the transformation of read-only symbols to rel-ro
    // symbols.
    var RelROMap = map[SymKind]SymKind{
    	STYPE:     STYPERELRO,
    	SSTRING:   SSTRINGRELRO,
    	SGOSTRING: SGOSTRINGRELRO,
    	SGOFUNC:   SGOFUNCRELRO,
    	SGCBITS:   SGCBITSRELRO,
    	SRODATA:   SRODATARELRO,
    	SFUNCTAB:  SFUNCTABRELRO,
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		f := &instFormats[i]
    		if xNoCond&(f.mask|condMask) != f.value || f.priority <= priority {
    			continue
    		}
    		delta := uint32(0)
    		deltaShift := uint(0)
    		for opBits := f.opBits; opBits != 0; opBits >>= 16 {
    			n := uint(opBits & 0xFF)
    			off := uint((opBits >> 8) & 0xFF)
    			delta |= (x >> off) & (1<<n - 1) << deltaShift
    			deltaShift += n
    		}
    		op := f.op + Op(delta)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  6. src/crypto/rsa/pss.go

    	mgf1XOR(db, hash, h)
    
    	// 11. Set the leftmost 8 * emLen - emBits bits of the leftmost octet in
    	//     maskedDB to zero.
    
    	db[0] &= 0xff >> (8*emLen - emBits)
    
    	// 12. Let EM = maskedDB || H || 0xbc.
    	em[emLen-1] = 0xbc
    
    	// 13. Output EM.
    	return em, nil
    }
    
    func emsaPSSVerify(mHash, em []byte, emBits, sLen int, hash hash.Hash) error {
    	// See RFC 8017, Section 9.1.2.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_freebsd_sigaction.c

    		} else {
    			oldgoact->handler = (uintptr_t)(oldact.sa_handler);
    		}
    		for (i = 0 ; i < _SIG_WORDS; i++) {
    			oldgoact->mask.__bits[i] = 0;
    		}
    		for (i = 0; i < 8 * sizeof(oldgoact->mask); i++) {
    			if (sigismember(&oldact.sa_mask, i+1) == 1) {
    				oldgoact->mask.__bits[i/32] |= (uint32_t)(1)<<(i&31);
    			}
    		}
    		oldgoact->flags = oldact.sa_flags;
    	}
    
    	_cgo_tsan_release();
    	return ret;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/internal/zstd/bits.go

    	cnt  uint32  // number of valid bits in the bits field
    }
    
    // makeBitReader makes a bit reader starting at off.
    func (r *Reader) makeBitReader(data block, off int) bitReader {
    	return bitReader{
    		r:    r,
    		data: data,
    		off:  uint32(off),
    	}
    }
    
    // moreBits is called to read more bits.
    // This ensures that at least 16 bits are available.
    func (br *bitReader) moreBits() error {
    	for br.cnt < 16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/math/bits.go

    Russ Cox <******@****.***> 1643915146 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. src/math/bits/bits.go

    // To rotate x right by k bits, call RotateLeft8(x, -k).
    //
    // This function's execution time does not depend on the inputs.
    func RotateLeft8(x uint8, k int) uint8 {
    	const n = 8
    	s := uint(k) & (n - 1)
    	return x<<s | x>>(n-s)
    }
    
    // RotateLeft16 returns the value of x rotated left by (k mod 16) bits.
    // To rotate x right by k bits, call RotateLeft16(x, -k).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top