Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 106 for 128M (0.06 sec)

  1. src/crypto/cipher/benchmark_test.go

    	}
    }
    
    func BenchmarkAESGCM(b *testing.B) {
    	for _, length := range []int{64, 1350, 8 * 1024} {
    		b.Run("Open-128-"+strconv.Itoa(length), func(b *testing.B) {
    			benchmarkAESGCMOpen(b, make([]byte, length), 128/8)
    		})
    		b.Run("Seal-128-"+strconv.Itoa(length), func(b *testing.B) {
    			benchmarkAESGCMSeal(b, make([]byte, length), 128/8)
    		})
    
    		b.Run("Open-256-"+strconv.Itoa(length), func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 28 19:13:50 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  2. test/fixedbugs/bug313.go

    // errorcheckdir
    
    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 1284
    
    package bug313
    
    /*
    6g bug313.dir/[ab].go
    
    Before:
    bug313.dir/b.go:7: internal compiler error: fault
    
    Now:
    bug313.dir/a.go:10: undefined: fmt.DoesNotExist
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 350 bytes
    - Viewed (0)
  3. src/runtime/os_linux_mipsx.go

    func osArchInit() {}
    
    //go:nosplit
    func cputicks() int64 {
    	// nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
    	return nanotime()
    }
    
    const (
    	_SS_DISABLE  = 2
    	_NSIG        = 128 + 1
    	_SIG_BLOCK   = 1
    	_SIG_UNBLOCK = 2
    	_SIG_SETMASK = 3
    )
    
    type sigset [4]uint32
    
    var sigset_all = sigset{^uint32(0), ^uint32(0), ^uint32(0), ^uint32(0)}
    
    //go:nosplit
    //go:nowritebarrierrec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 987 bytes
    - Viewed (0)
  4. src/runtime/vlop_arm_test.go

    	//   ldr     fp, [pc, #32]   ; (address of 128.0)
    	//   vldr    d0, [fp]
    	//   ldr     fp, [pc, #28]   ; (1024)
    	//   add     fp, fp, r0
    	//   vstr    d0, [fp]
    	// The software floating-point emulator gives up on the add.
    	// This causes the store to not work.
    	// See issue 15440.
    	a[128] = 128.0
    }
    func TestArmFloatBigOffsetWrite(t *testing.T) {
    	var a [129]float64
    	for i := 0; i < 128; i++ {
    		a[i] = float64(i)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  5. src/crypto/sha1/sha1block_amd64.go

    		// So it may read up-to 192 bytes past end of p
    		// We may add checks inside blockAVX2, but this will
    		// just turn it into a copy of blockAMD64,
    		// so call it directly, instead.
    		safeLen := len(p) - 128
    		if safeLen%128 != 0 {
    			safeLen -= 64
    		}
    		blockAVX2(dig, p[:safeLen])
    		blockAMD64(dig, p[safeLen:])
    	} else {
    		blockAMD64(dig, p)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 926 bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/IntegrationTest.groovy

    /**
     * This annotation is a marker and guarantees all integration tests are tagged.
     *
     * When we use JUnit Platform `includeTags('SomeTag')`, all spock tests are excluded:
     * https://github.com/spockframework/spock/issues/1288 . As a workaround,
     * we tag all non-spock integration tests and use `includeTags(none() | SomeTag)` to make
     * sure spock engine tests are executed.
     */
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/crypto/aes/cipher_s390x.go

    	}
    	if alias.InexactOverlap(dst[:BlockSize], src[:BlockSize]) {
    		panic("crypto/aes: invalid buffer overlap")
    	}
    	// The decrypt function code is equal to the function code + 128.
    	cryptBlocks(c.function+128, &c.key[0], &dst[0], &src[0], BlockSize)
    }
    
    // expandKey is used by BenchmarkExpand. cipher message (KM) does not need key
    // expansion so there is no assembly equivalent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/internal/syscall/unix/siginfo_linux.go

    	_           [is64bit]int32 // Extra padding for 64-bit hosts only.
    
    	// End of common part. Beginning of signal-specific part.
    
    	Pid    int32
    	Uid    uint32
    	Status int32
    
    	// Pad to 128 bytes.
    	_ [128 - (6+is64bit)*4]byte
    }
    
    const (
    	// Possible values for SiginfoChild.Code field.
    	_CLD_EXITED    int32 = 1
    	_CLD_KILLED          = 2
    	_CLD_DUMPED          = 3
    	_CLD_TRAPPED         = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/vintage/JUnitVintageLoggingOutputCaptureIntegrationTest.groovy

    import org.gradle.testing.junit.junit4.AbstractJUnit4LoggingOutputCaptureIntegrationTest
    
    import static org.gradle.testing.fixture.JUnitCoverage.JUNIT_VINTAGE
    
    // https://github.com/junit-team/junit5/issues/1285
    @TargetCoverage({ JUNIT_VINTAGE })
    class JUnitVintageLoggingOutputCaptureIntegrationTest extends AbstractJUnit4LoggingOutputCaptureIntegrationTest implements JUnitVintageMultiVersionTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/type.go

    func (f exprFlags) Addressable() bool     { return f&32 != 0 }
    func (f exprFlags) Assignable() bool      { return f&64 != 0 }
    func (f exprFlags) HasOk() bool           { return f&128 != 0 }
    func (f exprFlags) IsRuntimeHelper() bool { return f&256 != 0 } // a runtime function called from transformed syntax
    
    func (f *exprFlags) SetIsVoid()          { *f |= 1 }
    func (f *exprFlags) SetIsType()          { *f |= 2 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top