Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for 0x000000000000000c (3.52 sec)

  1. src/strconv/eisel_lemire.go

    	{0x0000000000000000, 0xBEBC200000000000}, // 1e8
    	{0x0000000000000000, 0xEE6B280000000000}, // 1e9
    	{0x0000000000000000, 0x9502F90000000000}, // 1e10
    	{0x0000000000000000, 0xBA43B74000000000}, // 1e11
    	{0x0000000000000000, 0xE8D4A51000000000}, // 1e12
    	{0x0000000000000000, 0x9184E72A00000000}, // 1e13
    	{0x0000000000000000, 0xB5E620F480000000}, // 1e14
    	{0x0000000000000000, 0xE35FA931A0000000}, // 1e15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 41.4K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_s390x.s

    DATA    ·crclecons+40(SB)/8, $0x00000001751997d0       // R3
    DATA    ·crclecons+48(SB)/8, $0x0000000000000000
    DATA    ·crclecons+56(SB)/8, $0x0000000163cd6124       // R5
    DATA    ·crclecons+64(SB)/8, $0x0000000000000000
    DATA    ·crclecons+72(SB)/8, $0x00000001F7011641       // u'
    DATA    ·crclecons+80(SB)/8, $0x0000000000000000
    DATA    ·crclecons+88(SB)/8, $0x00000001DB710641       // P'(x) << 1
    
    GLOBL    ·crclecons(SB),RODATA, $144
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  3. test/fixedbugs/bug364.go

    func accum(args ...interface{}) {
    	s += fmt.Sprintln(args...)
    }
    
    func f(){
    	v := 0.0
    	for i := 0; i < 3; i++ {
    		v += 0.1
    		defer accum(v)
    	}
    }
    
    func main() {
    	f()
    	if s != "0.30000000000000004\n0.2\n0.1\n" {
    		println("BUG: defer")
    		print(s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:59 UTC 2012
    - 459 bytes
    - Viewed (0)
  4. src/hash/crc32/gen_const_ppc64le.go

    	fmt.Fprintf(w, "DATA ·%sBarConst+8(SB)/8,$0x0000000000000000\n", polyid)
    	fmt.Fprintf(w, "DATA ·%sBarConst+16(SB)/8,$0x%016x\n", polyid, reflect_bits((uint64(1)<<32)|ref_poly, 33)) // reflected?
    	fmt.Fprintf(w, "DATA ·%sBarConst+24(SB)/8,$0x0000000000000000\n", polyid)
    	fmt.Fprintf(w, "GLOBL ·%sBarConst(SB),RODATA,$32\n", polyid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/link/testdata/pe-llvm/main.go

    //
    // Object dumping the resultant rsrc.syso, we can see the split sections and
    // the @feat.00 SEH symbol:
    //
    //     rsrc.syso:      file format coff-x86-64
    //
    //     architecture: x86_64
    //     start address: 0x0000000000000000
    //
    //     Export Table:
    //     Sections:
    //     Idx Name          Size     VMA              Type
    //       0 .rsrc$01      00000068 0000000000000000 DATA
    //       1 .rsrc$02      00000018 0000000000000000 DATA
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm.go

    // p256One is one in the Montgomery domain.
    var p256One = p256Element{0x0000000000000001, 0xffffffff00000000,
    	0xffffffffffffffff, 0x00000000fffffffe}
    
    var p256Zero = p256Element{}
    
    // p256P is 2²⁵⁶ - 2²²⁴ + 2¹⁹² + 2⁹⁶ - 1 in the Montgomery domain.
    var p256P = p256Element{0xffffffffffffffff, 0x00000000ffffffff,
    	0x0000000000000000, 0xffffffff00000001}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/dev_linux.go

    	major |= uint32((dev & 0xfffff00000000000) >> 32)
    	return major
    }
    
    // Minor returns the minor component of a Linux device number.
    func Minor(dev uint64) uint32 {
    	minor := uint32((dev & 0x00000000000000ff) >> 0)
    	minor |= uint32((dev & 0x00000ffffff00000) >> 12)
    	return minor
    }
    
    // Mkdev returns a Linux device number generated from the given major and minor
    // components.
    func Mkdev(major, minor uint32) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  8. src/math/remainder.go

    	if haveArchRemainder {
    		return archRemainder(x, y)
    	}
    	return remainder(x, y)
    }
    
    func remainder(x, y float64) float64 {
    	const (
    		Tiny    = 4.45014771701440276618e-308 // 0x0020000000000000
    		HalfMax = MaxFloat64 / 2
    	)
    	// special cases
    	switch {
    	case IsNaN(x) || IsNaN(y) || IsInf(x, 0) || y == 0:
    		return NaN()
    	case IsInf(y, 0):
    		return x
    	}
    	sign := false
    	if x < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. src/math/trig_reduce.go

    // that is, 4/pi = Sum mPi4[i]*2^(-64*i)
    // 19 64-bit digits and the leading one bit give 1217 bits
    // of precision to handle the largest possible float64 exponent.
    var mPi4 = [...]uint64{
    	0x0000000000000001,
    	0x45f306dc9c882a53,
    	0xf84eafa3ea69bb81,
    	0xb6c52b3278872083,
    	0xfca2c757bd778ac3,
    	0x6e48dc74849ba5c0,
    	0x0c925dd413a32439,
    	0xfc3bd63962534e7d,
    	0xd1046bea5d768909,
    	0xd338e04d68befc82,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  10. src/archive/tar/stat_unix.go

    		case "linux":
    			// Copied from golang.org/x/sys/unix/dev_linux.go.
    			major := uint32((dev & 0x00000000000fff00) >> 8)
    			major |= uint32((dev & 0xfffff00000000000) >> 32)
    			minor := uint32((dev & 0x00000000000000ff) >> 0)
    			minor |= uint32((dev & 0x00000ffffff00000) >> 12)
    			h.Devmajor, h.Devminor = int64(major), int64(minor)
    		case "darwin", "ios":
    			// Copied from golang.org/x/sys/unix/dev_darwin.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top