- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 60 for K2 (0.06 seconds)
-
src/cmd/asm/internal/asm/testdata/avx512enc/avx512cd.s
VPLZCNTQ X26, K2, X28 // 6202fd0a44e2 VPLZCNTQ -17(BP), K2, X28 // 6262fd0a44a5efffffff VPLZCNTQ -15(R14)(R15*8), K2, X28 // 6202fd0a44a4fef1ffffff VPLZCNTQ X9, K2, X24 // 6242fd0a44c1 VPLZCNTQ X15, K2, X24 // 6242fd0a44c7
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue May 22 14:57:15 GMT 2018 - 12.9K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/avx512er.s
VRCP28SS X6, X11, K2, X22 // 62e2250acbf6 VRCP28SS X12, X11, K2, X22 // 62c2250acbf4 VRCP28SS X13, X15, K2, X22 // 62c2050acbf5 VRCP28SS X6, X15, K2, X22 // 62e2050acbf6 VRCP28SS X12, X15, K2, X22 // 62c2050acbf4 VRCP28SS X13, X30, K2, X22 // 62c20d02cbf5
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue May 22 14:57:15 GMT 2018 - 28.4K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi2.s
VPSHLDVW Y12, Y13, K2, Y31 // 6242952a70fc VPSHLDVW 17(SP)(BP*1), Y13, K2, Y31 // 6262952a70bc2c11000000 VPSHLDVW -7(CX)(DX*8), Y13, K2, Y31 // 6262952a70bcd1f9ffffff VPSHLDVW Y2, Y7, K2, Y31 // 6262c52a70fa VPSHLDVW Y21, Y7, K2, Y31 // 6222c52a70fd
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue May 22 14:57:15 GMT 2018 - 97.1K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/gfni_avx512f.s
VGF2P8AFFINEINVQB $47, (DX), Z28, K2, Z28 // 62639d42cf222f VGF2P8AFFINEINVQB $47, Z3, Z14, K2, Z13 // 62738d4acfeb2f VGF2P8AFFINEINVQB $47, Z12, Z14, K2, Z13 // 62538d4acfec2f VGF2P8AFFINEINVQB $47, 99(R15)(R15*1), Z14, K2, Z13 // 62138d4acfac3f630000002f VGF2P8AFFINEINVQB $47, (DX), Z14, K2, Z13 // 62738d4acf2a2f
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue May 22 14:57:15 GMT 2018 - 22.6K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/avx512_4fmaps.s
V4FMADDPS 17(SP), [Z0-Z3], K2, Z8 // 62727f4a9a842411000000 V4FMADDPS -17(BP)(SI*4), [Z0-Z3], K2, Z8 // 62727f4a9a84b5efffffff V4FMADDPS 17(SP), [Z10-Z13], K2, Z8 // 62722f4a9a842411000000 V4FMADDPS -17(BP)(SI*4), [Z10-Z13], K2, Z8 // 62722f4a9a84b5efffffff V4FMADDPS 17(SP), [Z20-Z23], K2, Z8 // 62725f429a842411000000
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue May 22 14:57:15 GMT 2018 - 5.9K bytes - Click Count (0) -
cmd/bucket-replication.go
replicateAll replicationAction = "all" ) // matches k1 with all keys, returns 'true' if one of them matches func equals(k1 string, keys ...string) bool { for _, k2 := range keys { if strings.EqualFold(k1, k2) { return true } } return false } // returns replicationAction by comparing metadata between source and target
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 118.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/TypeTokenTest.java
} private static class TwoTypeArgs<K, V> { @SuppressWarnings("ClassCanBeStatic") // We want to test an inner class. class InnerType<K2, V2> {} } private static class StringForFirstTypeArg<V> extends TwoTypeArgs<String, V> { class StringInnerType<V2> extends InnerType<String, V2> {} }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 89.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java
} private static class TwoTypeArgs<K, V> { @SuppressWarnings("ClassCanBeStatic") // We want to test an inner class. class InnerType<K2, V2> {} } private static class StringForFirstTypeArg<V> extends TwoTypeArgs<String, V> { class StringInnerType<V2> extends InnerType<String, V2> {} }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 89.3K bytes - Click Count (0) -
lib/fips140/v1.26.0.zip
exposing it to applications // as a stand-alone MAC. type CMAC struct { b aes.Block k1 [aes.BlockSize]byte k2 [aes.BlockSize]byte } func NewCMAC(b *aes.Block) *CMAC { c := &CMAC{b: *b} c.deriveSubkeys() return c } func (c *CMAC) deriveSubkeys() { aes.EncryptBlockInternal(&c.b, c.k1[:], c.k1[:]) msb := shiftLeft(&c.k1) c.k1[len(c.k1)-1] ^= msb * 0b10000111 c.k2 = c.k1 msb = shiftLeft(&c.k2) c.k2[len(c.k2)-1] ^= msb * 0b10000111 } func (c *CMAC) MAC(m []byte) [aes.BlockSize]byte { fips140.RecordApproved()...Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jan 08 17:58:32 GMT 2026 - 660.3K bytes - Click Count (0) -
lib/fips140/v1.0.0-c2097c7c.zip
exposing it to applications // as a stand-alone MAC. type CMAC struct { b aes.Block k1 [aes.BlockSize]byte k2 [aes.BlockSize]byte } func NewCMAC(b *aes.Block) *CMAC { c := &CMAC{b: *b} c.deriveSubkeys() return c } func (c *CMAC) deriveSubkeys() { aes.EncryptBlockInternal(&c.b, c.k1[:], c.k1[:]) msb := shiftLeft(&c.k1) c.k1[len(c.k1)-1] ^= msb * 0b10000111 c.k2 = c.k1 msb = shiftLeft(&c.k2) c.k2[len(c.k2)-1] ^= msb * 0b10000111 } func (c *CMAC) MAC(m []byte) [aes.BlockSize]byte { fips140.RecordApproved()...Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Sep 25 19:53:19 GMT 2025 - 642.7K bytes - Click Count (0)