Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for powx (0.26 sec)

  1. lib/fips140/v1.0.0.zip

    BSD-style // license that can be found in the LICENSE file. package aes import "testing" // See const.go for overview of math here. // Test that powx is initialized correctly. // (Can adapt this code to generate it too.) func TestPowx(t *testing.T) { p := 1 for i := 0; i < len(powx); i++ { if powx[i] != byte(p) { 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...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
  2. RELEASE.md

        *   gRPC: Propagate truncated errors (instead of returning gRPC internal
            error).
        *   Augment `parallel_interleave` to support 2 kinds of prefetching.
        *   Improved XLA support for C64-related ops log, pow, atan2, tanh.
        *   Add probabilistic convolutional layers.
    
    ## API Changes
    
    *   Introducing `prepare_variance` boolean with default setting to False for
        backward compatibility.
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 20:54:38 UTC 2025
    - 740K bytes
    - Viewed (1)
Back to top