Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for 264 (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. android/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)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.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
    - 11K bytes
    - Viewed (0)
  6. src/runtime/mgclimit.go

    }
    
    // duration computes the difference between now and the start time stored in the stamp.
    //
    // Returns 0 if the difference is negative, which may happen if now is stale or if the
    // before and after timestamps cross a 2^(64-limiterEventBits) boundary.
    func (s limiterEventStamp) duration(now int64) int64 {
    	// The top limiterEventBits bits of the timestamp are derived from the current time
    	// when computing a duration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go

    	SYS_RISCV_FLUSH_ICACHE      = 259
    	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
    - 11K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go

    	SYS_MKNODAT                 = 259
    	SYS_FCHOWNAT                = 260
    	SYS_FUTIMESAT               = 261
    	SYS_NEWFSTATAT              = 262
    	SYS_UNLINKAT                = 263
    	SYS_RENAMEAT                = 264
    	SYS_LINKAT                  = 265
    	SYS_SYMLINKAT               = 266
    	SYS_READLINKAT              = 267
    	SYS_FCHMODAT                = 268
    	SYS_FACCESSAT               = 269
    	SYS_PSELECT6                = 270
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go

    	SYS_CLOCK_NANOSLEEP         = 259
    	SYS_SCHED_GETAFFINITY       = 260
    	SYS_SCHED_SETAFFINITY       = 261
    	SYS_TIMER_SETTIME           = 262
    	SYS_TIMER_GETTIME           = 263
    	SYS_TIMER_GETOVERRUN        = 264
    	SYS_TIMER_DELETE            = 265
    	SYS_TIMER_CREATE            = 266
    	SYS_VSERVER                 = 267
    	SYS_IO_SETUP                = 268
    	SYS_IO_DESTROY              = 269
    	SYS_IO_SUBMIT               = 270
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go

    	SYS_TIMER_GETOVERRUN             = 260
    	SYS_TIMER_DELETE                 = 261
    	SYS_CLOCK_SETTIME                = 262
    	SYS_CLOCK_GETTIME                = 263
    	SYS_CLOCK_GETRES                 = 264
    	SYS_CLOCK_NANOSLEEP              = 265
    	SYS_STATFS64                     = 266
    	SYS_FSTATFS64                    = 267
    	SYS_TGKILL                       = 268
    	SYS_UTIMES                       = 269
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top