- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for impl (1.39 sec)
-
lib/fips140/v1.0.0-c2097c7c.zip
/cpu" "crypto/internal/fips140deps/godebug" "crypto/internal/impl" ) //go:noescape func encryptBlockAsm(nr int, xk *uint32, dst, src *byte) //go:noescape func decryptBlockAsm(nr int, xk *uint32, dst, src *byte) //go:noescape func expandKeyAsm(nr int, key *byte, enc *uint32, dec *uint32) var supportsAES = cpu.X86HasAES && cpu.X86HasSSE41 && cpu.X86HasSSSE3 || cpu.ARM64HasAES || cpu.PPC64 || cpu.PPC64le func init() { if cpu.AMD64 { impl.Register("aes", "AES-NI", &supportsAES) } if cpu.ARM64 { impl.Register("aes",...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.zip
this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build !purego package subtle import ( "crypto/internal/fips140deps/cpu" "crypto/internal/impl" ) var useLSX = cpu.LOONG64HasLSX var useLASX = cpu.LOONG64HasLASX func init() { impl.Register("subtle", "LSX", &useLSX) impl.Register("subtle", "LASX", &useLASX) } //go:noescape func xorBytesBasic(dst, a, b *byte, n int) //go:noescape func xorBytesLSX(dst, a, b *byte, n int) //go:noescape func xorBytesLASX(dst,...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64enc.s
CMPL (BX), DX // 3913 CMPL (BX), R11 // 44391b CMPL (R11), DX // 413913 CMPL (R11), R11 // 45391b CMPL DX, DX // 39d2 or 3bd2 CMPL DX, R11 // 4439da or 413bd3 CMPL R11, DX // 4139d3 or 443bda
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Fri Oct 08 21:38:44 UTC 2021 - 581.9K bytes - Viewed (1) -
RELEASE.md
* `pfor/vectorized_map`: Added support for vectorizing 56 more ops. Vectorizing `tf.cond` is also supported now. * Set as much partial shape as we can infer statically within the gradient impl of the gather op. * Gradient of `tf.while_loop` emits `StatelessWhile` op if `cond` and body functions are stateless. This allows multiple gradients while ops to run in parallel under distribution strategy.Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Tue Oct 28 22:27:41 UTC 2025 - 740.4K bytes - Viewed (3)