Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 110 for 264 (0.3 sec)

  1. src/runtime/pprof/elf.go

    		shoff = int64(byteOrder.Uint32(buf[32:]))
    		shentsize = int64(byteOrder.Uint16(buf[46:]))
    		if shentsize != 40 {
    			return "", errBadELF
    		}
    		shnum = int(byteOrder.Uint16(buf[48:]))
    	case 2: // 64-bit file header
    		shoff = int64(byteOrder.Uint64(buf[40:]))
    		shentsize = int64(byteOrder.Uint16(buf[58:]))
    		if shentsize != 64 {
    			return "", errBadELF
    		}
    		shnum = int(byteOrder.Uint16(buf[60:]))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/field/fe_test.go

    	if r.lo != 0x19 || r.hi != 0 {
    		t.Errorf("lo-range wide mult failed, got %d + %d*(2**64)", r.lo, r.hi)
    	}
    
    	a = uint64(18014398509481983) // 2^54 - 1
    	b = uint64(18014398509481983) // 2^54 - 1
    	r = mul64(a, b)
    	if r.lo != 0xff80000000000001 || r.hi != 0xfffffffffff {
    		t.Errorf("hi-range wide mult failed, got %d + %d*(2**64)", r.lo, r.hi)
    	}
    
    	a = uint64(1125899906842661)
    	b = uint64(2097155)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. src/math/cmplx/tan.go

    	ix := math.Float64bits(x)
    	exp := int(ix>>shift&mask) - bias - shift
    	ix &= fracMask
    	ix |= 1 << shift
    
    	// mPi is the binary digits of 1/Pi as a uint64 array,
    	// that is, 1/Pi = Sum mPi[i]*2^(-64*i).
    	// 19 64-bit digits give 1216 bits of precision
    	// to handle the largest possible float64 exponent.
    	var mPi = [...]uint64{
    		0x0000000000000000,
    		0x517cc1b727220a94,
    		0xfe13abe8fa9a6ee0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/bitmap_test.go

    	}
    	em = testMetrics{
    		free:      254,
    		used:      0,
    		allocated: 2,
    		errors:    2,
    	}
    	expectMetrics(t, cidrIPv4, em)
    
    	// allocate 264 addresses for each allocator
    	// the full range and 10 more (254 + 10 = 264) for IPv4
    	for i := 0; i < 264; i++ {
    		a.AllocateNext()
    		b.AllocateNext()
    	}
    	em = testMetrics{
    		free:      0,
    		used:      254,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. src/math/erf_s390x.s

    DATA ·erfrodataL13<> + 240(SB)/8, $0.833349307718286047e-02
    DATA ·erfrodataL13<> + 248(SB)/8, $-.693147180559945286e+00
    DATA ·erfrodataL13<> + 256(SB)/8, $-.144269504088896339e+01
    DATA ·erfrodataL13<> + 264(SB)/8, $281475245147134.9375
    DATA ·erfrodataL13<> + 272(SB)/8, $0.358256136398192529E+01
    DATA ·erfrodataL13<> + 280(SB)/8, $-.554084396500738270E+00
    DATA ·erfrodataL13<> + 288(SB)/8, $0.203630123025312046E+02
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 8.5K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_linux_riscv64.go

    	SYS_ARCH_SPECIFIC_SYSCALL  = 244
    	SYS_WAIT4                  = 260
    	SYS_PRLIMIT64              = 261
    	SYS_FANOTIFY_INIT          = 262
    	SYS_FANOTIFY_MARK          = 263
    	SYS_NAME_TO_HANDLE_AT      = 264
    	SYS_OPEN_BY_HANDLE_AT      = 265
    	SYS_CLOCK_ADJTIME          = 266
    	SYS_SYNCFS                 = 267
    	SYS_SETNS                  = 268
    	SYS_SENDMMSG               = 269
    	SYS_PROCESS_VM_READV       = 270
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 23 11:00:41 UTC 2019
    - 8.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/math/LongMath.java

            result += aHi * bLo; // aHi * bLo < 2^63, result < 2^64
            if (result < 0) {
              result = UnsignedLongs.remainder(result, m);
            }
            // result < 2^63 again
            result += aLo * bHi; // aLo * bHi < 2^63, result < 2^64
            result = times2ToThe32Mod(result, m); // result < m < 2^63
            return plusMod(result, UnsignedLongs.remainder(aLo * bLo /* < 2^64 */, m), m);
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go

    	SYS_ARCH_SPECIFIC_SYSCALL   = 244
    	SYS_WAIT4                   = 260
    	SYS_PRLIMIT64               = 261
    	SYS_FANOTIFY_INIT           = 262
    	SYS_FANOTIFY_MARK           = 263
    	SYS_NAME_TO_HANDLE_AT       = 264
    	SYS_OPEN_BY_HANDLE_AT       = 265
    	SYS_CLOCK_ADJTIME           = 266
    	SYS_SYNCFS                  = 267
    	SYS_SETNS                   = 268
    	SYS_SENDMMSG                = 269
    	SYS_PROCESS_VM_READV        = 270
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_linux_loong64.go

    	SYS_ARCH_SPECIFIC_SYSCALL   = 244
    	SYS_WAIT4                   = 260
    	SYS_PRLIMIT64               = 261
    	SYS_FANOTIFY_INIT           = 262
    	SYS_FANOTIFY_MARK           = 263
    	SYS_NAME_TO_HANDLE_AT       = 264
    	SYS_OPEN_BY_HANDLE_AT       = 265
    	SYS_CLOCK_ADJTIME           = 266
    	SYS_SYNCFS                  = 267
    	SYS_SETNS                   = 268
    	SYS_SENDMMSG                = 269
    	SYS_PROCESS_VM_READV        = 270
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/ipallocator_test.go

    	}
    	em = testMetrics{
    		free:      254,
    		used:      0,
    		allocated: 2,
    		errors:    2,
    	}
    	expectMetrics(t, cidrIPv4, em)
    
    	// allocate 264 addresses for each allocator
    	// the full range and 10 more (254 + 10 = 264) for IPv4
    	for i := 0; i < 264; i++ {
    		a.AllocateNext()
    		b.AllocateNext()
    	}
    	em = testMetrics{
    		free:      0,
    		used:      254,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
Back to top