- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for GF (0.04 sec)
-
cmd/bucket-replication-metrics_gen.go
return } case "rtf": z.RmvTagFailedTotal, err = dc.ReadUint64() if err != nil { err = msgp.WrapError(err, "RmvTagFailedTotal") return } case "gf": z.GetFailedTotal, err = dc.ReadUint64() if err != nil { err = msgp.WrapError(err, "GetFailedTotal") return } case "hf": z.HeadFailedTotal, err = dc.ReadUint64() if err != nil {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 33.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/TraverserTest.java
* d e g * /|\ | * / | \ | * a b c f * } */ private static final SuccessorsFunction<Character> TREE = createDirectedGraph("hd", "he", "hg", "da", "db", "dc", "gf"); /** * Two disjoint tree-shaped graphs that look as follows (all edges are directed facing downwards): * * {@snippet : * a c * | | * | | * b d * } */
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 30 17:09:51 UTC 2025 - 47.4K bytes - Viewed (2) -
lib/fips140/v1.0.0-c2097c7c.zip
t.Errorf("powx[%d] = %#x, want %#x", i, powx[i], p) } p <<= 1 if p&0x100 != 0 { p ^= poly } } } // Multiply b and c as GF(2) polynomials modulo poly func mul(b, c uint32) uint32 { i := b j := c s := uint32(0) for k := uint32(1); k < 0x100 && j != 0; k <<= 1 { // Invariant: k == 1<<n, i == b * xⁿ if j&k != 0 { // s += i in GF(2); xor in binary s ^= i j ^= k // turn off bit to end loop early } // i *= x in GF(2) modulo the polynomial i <<= 1 if i&0x100 != 0 { i ^= poly } } return s } // Test all mul inputs against...
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
t.Errorf("powx[%d] = %#x, want %#x", i, powx[i], p) } p <<= 1 if p&0x100 != 0 { p ^= poly } } } // Multiply b and c as GF(2) polynomials modulo poly func mul(b, c uint32) uint32 { i := b j := c s := uint32(0) for k := uint32(1); k < 0x100 && j != 0; k <<= 1 { // Invariant: k == 1<<n, i == b * xⁿ if j&k != 0 { // s += i in GF(2); xor in binary s ^= i j ^= k // turn off bit to end loop early } // i *= x in GF(2) modulo the polynomial i <<= 1 if i&0x100 != 0 { i ^= poly } } return s } // Test all mul inputs against...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0)