Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,400 for zout (0.33 sec)

  1. src/crypto/elliptic/params.go

    func (curve *CurveParams) affineFromJacobian(x, y, z *big.Int) (xOut, yOut *big.Int) {
    	if z.Sign() == 0 {
    		return new(big.Int), new(big.Int)
    	}
    
    	zinv := new(big.Int).ModInverse(z, curve.P)
    	zinvsq := new(big.Int).Mul(zinv, zinv)
    
    	xOut = new(big.Int).Mul(x, zinvsq)
    	xOut.Mod(xOut, curve.P)
    	zinvsq.Mul(zinvsq, zinv)
    	yOut = new(big.Int).Mul(y, zinvsq)
    	yOut.Mod(yOut, curve.P)
    	return
    }
    
    // Add implements [Curve.Add].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. docs/fr/docs/history-design-future.md

    > Quelle est l'histoire de ce projet ? Il semble être sorti de nulle part et est devenu génial en quelques semaines [...].
    
    Voici un petit bout de cette histoire.
    
    ## Alternatives
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/target-platforms/groovy/src/main/cpp/main.cpp

    #include <iostream>
    
    int main () {
        #if defined(__clang__)
            std::cout << "Hello from clang!" << std::endl;
        #elif defined(__GNUC__) && defined(__MINGW32__)
            std::cout << "Hello from mingw!" << std::endl;
        #elif defined(__GNUC__) && defined(__CYGWIN__)
            std::cout << "Hello from gcc cygwin!" << std::endl;
        #elif defined(__GNUC__)
            std::cout << "Hello from gcc!" << std::endl;
        #elif defined(_MSC_VER)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 615 bytes
    - Viewed (0)
  4. src/testing/iotest/logger_test.go

    	olp := log.Prefix()
    
    	// Revert the original log settings before we exit.
    	defer func() {
    		log.SetFlags(olf)
    		log.SetPrefix(olp)
    		log.SetOutput(olw)
    	}()
    
    	lOut := new(strings.Builder)
    	log.SetPrefix("lw: ")
    	log.SetOutput(lOut)
    	log.SetFlags(0)
    
    	lw := new(strings.Builder)
    	wl := NewWriteLogger("write:", lw)
    	if _, err := wl.Write([]byte("Hello, World!")); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 07:03:10 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/PlatformDetectingTestApp.groovy

        #if defined(__x86_64__) || defined(_M_X64)
        cout << "amd64";
        #elif defined(__i386) || defined(_M_IX86)
        cout << "i386";
        #elif defined(_M_IA64)
        cout << "itanium";
        #else
        cout << "unknown";
        #endif
        cout << " ";
    
        #if defined(__linux__)
        cout << "linux";
        #elif defined(__APPLE__) && defined(__MACH__)
        cout << "os x";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/internal/bytealg/compare_ppc64x.s

    #endif
    
    #ifdef GOPPC64_power9
    #define SETB_CR0(rout) SETB CR0, rout
    #define SETB_CR1(rout) SETB CR1, rout
    #define SETB_INIT()
    #define SETB_CR0_NE(rout) SETB_CR0(rout)
    #else
    // A helper macro to emulate SETB on P8. This assumes
    // -1 is in R20, and 1 is in R21. crxlt and crxeq must
    // also be the same CR field.
    #define _SETB(crxlt, crxeq, rout) \
    	ISEL	crxeq,R0,R21,rout \
    	ISEL	crxlt,R20,rout,rout
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. src/crypto/des/block.go

    // to the rotation schedule.
    func ksRotate(in uint32) (out []uint32) {
    	out = make([]uint32, 16)
    	last := in
    	for i := 0; i < 16; i++ {
    		// 28-bit circular left shift
    		left := (last << (4 + ksRotations[i])) >> 4
    		right := (last << 4) >> (32 - ksRotations[i])
    		out[i] = left | right
    		last = out[i]
    	}
    	return
    }
    
    // creates 16 56-bit subkeys from the original key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/flavors/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      #ifdef FRENCH
      std::cout << "Bonjour monde!" << std::endl;
      #else
      std::cout << "Hello world!" << std::endl;
      #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/variants/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      #ifdef FRENCH
      std::cout << "Bonjour monde!" << std::endl;
      #else
      std::cout << "Hello world!" << std::endl;
      #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  10. hack/verify-vendor.sh

      # Test for diffs
      if ! _out="$(diff -Naupr --ignore-matching-lines='^\s*\"GoVersion\":' go.mod "${_kubetmp}/go.mod")"; then
        echo "Your go.mod file is different:" >&2
        echo "${_out}" >&2
        echo "Vendor Verify failed." >&2
        echo "If you're seeing this locally, run the below command to fix your go.mod:" >&2
        echo "hack/update-vendor.sh" >&2
        ret=1
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top