Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for GG (0.27 sec)

  1. src/main/java/jcifs/smb1/util/MD4.java

            A = GG(A, B, C, D, X[ 0],  3);
            D = GG(D, A, B, C, X[ 4],  5);
            C = GG(C, D, A, B, X[ 8],  9);
            B = GG(B, C, D, A, X[12], 13);
            A = GG(A, B, C, D, X[ 1],  3);
            D = GG(D, A, B, C, X[ 5],  5);
            C = GG(C, D, A, B, X[ 9],  9);
            B = GG(B, C, D, A, X[13], 13);
            A = GG(A, B, C, D, X[ 2],  3);
            D = GG(D, A, B, C, X[ 6],  5);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  2. src/cmd/trace/goroutinegen.go

    	gg := new(goroutineGenerator)
    	rg := func(ev *trace.Event) trace.GoID {
    		return ev.Goroutine()
    	}
    	gg.stackSampleGenerator.getResource = rg
    	gg.logEventGenerator.getResource = rg
    	gg.gStates = make(map[trace.GoID]*gState[trace.GoID])
    	gg.focus = focus
    	gg.filter = filter
    
    	// Enable a filter on the emitter.
    	if filter != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p224_sqrt.go

    	v := new(fiat.P224Element).Square(r)
    	v.Mul(v, x)
    
    	// r = x^(2^127-1) * x
    	r.Mul(r, x)
    
    	// for i = n-1 down to 1:
    	//     w = v^(2^(i-1))
    	//     if w == -1 then:
    	//         v <- v*GG[n-i]
    	//         r <- r*GG[n-i-1]
    
    	var p224MinusOne = new(fiat.P224Element).Sub(
    		new(fiat.P224Element), new(fiat.P224Element).One())
    
    	for i := 96 - 1; i >= 1; i-- {
    		w := new(fiat.P224Element).Set(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.1K bytes
    - Viewed (1)
  4. test/newinline.go

    func ee() { // ERROR "can inline ee"
    	ff(100) // ERROR "inlining call to ff" "inlining call to gg" "inlining call to hh"
    }
    
    func ff(x int) { // ERROR "can inline ff"
    	if x < 0 {
    		return
    	}
    	gg(x - 1) // ERROR "inlining call to gg" "inlining call to hh"
    }
    func gg(x int) { // ERROR "can inline gg"
    	hh(x - 1) // ERROR "inlining call to hh" "inlining call to ff"
    }
    func hh(x int) { // ERROR "can inline hh"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. test/inline.go

    func ee() { // ERROR "can inline ee"
    	ff(100) // ERROR "inlining call to ff" "inlining call to gg" "inlining call to hh"
    }
    
    func ff(x int) { // ERROR "can inline ff"
    	if x < 0 {
    		return
    	}
    	gg(x - 1) // ERROR "inlining call to gg" "inlining call to hh"
    }
    func gg(x int) { // ERROR "can inline gg"
    	hh(x - 1) // ERROR "inlining call to hh" "inlining call to ff"
    }
    func hh(x int) { // ERROR "can inline hh"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/cycles5a.go

    func newReader() r // ERROR "r is not a type"
    
    // variations of the theme of #8699 and #20770
    var arr /* ERROR "cycle" */ = f()
    func f() [len(arr)]int
    
    // issue #25790
    func ff(ff /* ERROR "not a type" */ )
    func gg((gg /* ERROR "not a type" */ ))
    
    type T13 /* ERROR "invalid recursive type T13" */ [len(b13)]int
    var b13 T13
    
    func g1() [unsafe.Sizeof(g1)]int
    func g2() [unsafe.Sizeof(x2)]int
    var x2 = g2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/cycles5.go

    func newReader() r // ERROR "r is not a type"
    
    // variations of the theme of #8699 and #20770
    var arr /* ERROR "cycle" */ = f()
    func f() [len(arr)]int
    
    // issue #25790
    func ff(ff /* ERROR "not a type" */ )
    func gg((gg /* ERROR "not a type" */ ))
    
    type T13 /* ERROR "invalid recursive type T13" */ [len(b13)]int
    var b13 T13
    
    func g1() [unsafe.Sizeof(g1)]int
    func g2() [unsafe.Sizeof(x2)]int
    var x2 = g2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/typeinst1.go

    	// force an empty type set
            int
            string
    }
    
    func ff[T none]() {}
    func gg[T any]() {}
    func hh[T ~int]() {}
    
    func _[T none]() {
    	_ = ff[int /* ERROR "cannot satisfy none (empty type set)" */ ]
    	_ = ff[T]  // pathological but ok because T's type set is empty, too
    	_ = gg[int]
    	_ = gg[T]
    	_ = hh[int]
    	_ = hh[T]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. src/runtime/os_openbsd_syscall.go

    //go:build openbsd && mips64
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    //go:noescape
    func tfork(param *tforkt, psize uintptr, mm *m, gg *g, fn uintptr) int32
    
    // May run with m.p==nil, so write barriers are not allowed.
    //
    //go:nowritebarrier
    func newosproc(mp *m) {
    	stk := unsafe.Pointer(mp.g0.stack.hi)
    	if false {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:44:45 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/fp_test.go

    		fail32bool(s, ff, zero, nan, (result>>4)&1 == 1)
    		fail32bool(s, ff, nan, nan, result&1 == 1)
    
    		fail32(s, gg, zero, zero, ev32[(result>>16)&1])
    		fail32(s, gg, zero, one, ev32[(result>>12)&1])
    		fail32(s, gg, zero, inf, ev32[(result>>8)&1])
    		fail32(s, gg, zero, nan, ev32[(result>>4)&1])
    		fail32(s, gg, nan, nan, ev32[(result>>0)&1])
    	}
    }
    
    func expectCx128(t *testing.T, s string, x, expected complex128) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
Back to top