Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,077 for zout (0.04 sec)

  1. src/crypto/internal/nistec/p256_asm_amd64.s

    	LDacc (u2)
    	CALL p256SubInternal(SB)
    
    	LDt (r)
    	CALL p256MulInternal(SB)
    
    	LDt (s2)
    	CALL p256SubInternal(SB)
    	ST (yout)
    
    	MOVOU xout(16*0), X0
    	MOVOU xout(16*1), X1
    	MOVOU yout(16*0), X2
    	MOVOU yout(16*1), X3
    	MOVOU zout(16*0), X4
    	MOVOU zout(16*1), X5
    	// Finally output the result
    	MOVQ rptr, AX
    	MOVQ $0, rptr
    	MOVOU X0, (16*0)(AX)
    	MOVOU X1, (16*1)(AX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  2. 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)
  3. src/testing/quick/quick.go

    		err := arbitraryValues(arguments, xType, config, rand)
    		if err != nil {
    			return err
    		}
    
    		xOut := toInterfaces(x.Call(arguments))
    		yOut := toInterfaces(y.Call(arguments))
    
    		if !reflect.DeepEqual(xOut, yOut) {
    			return &CheckEqualError{CheckError{i + 1, toInterfaces(arguments)}, xOut, yOut}
    		}
    	}
    
    	return nil
    }
    
    // arbitraryValues writes Values to args such that args contains Values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. test/fixedbugs/issue30116.out

                          slice[-9876543210:-1] runtime error: slice bounds out of range [:-1]
                           slice[-9876543210:0] runtime error: slice bounds out of range [-9876543210:]
                           slice[-9876543210:3] runtime error: slice bounds out of range [-9876543210:]
                           slice[-9876543210:4] runtime error: slice bounds out of range [:4] with capacity 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:33:38 UTC 2019
    - 53.8K bytes
    - Viewed (0)
  9. test/fixedbugs/issue30116u.out

                                                                slice[4:0] runtime error: slice bounds out of range [4:0]
                                                                slice[4:3] runtime error: slice bounds out of range [4:3]
                                                                slice[4:4] runtime error: slice bounds out of range [:4] with capacity 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:33:38 UTC 2019
    - 44K bytes
    - Viewed (0)
  10. 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)
Back to top