Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fieldMul (0.06 sec)

  1. src/archive/zip/reader.go

    			}
    			if needCSize {
    				needCSize = false
    				if len(fieldBuf) < 8 {
    					return ErrFormat
    				}
    				f.CompressedSize64 = fieldBuf.uint64()
    			}
    			if needHeaderOffset {
    				needHeaderOffset = false
    				if len(fieldBuf) < 8 {
    					return ErrFormat
    				}
    				f.headerOffset = int64(fieldBuf.uint64())
    			}
    		case ntfsExtraID:
    			if len(fieldBuf) < 4 {
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Mar 11 22:19:38 UTC 2025
    - 28.4K bytes
    - Viewed (0)
  2. lib/fips140/v1.0.0.zip

    for len := 128; len >= 2; len /= 2 { for start := 0; start < 256; start += 2 * len { zeta := zetas[k] k++ // Bounds check elimination hint. f, flen := f[start:start+len], f[start+len:start+len+len] for j := 0; j < len; j++ { t := fieldMul(zeta, flen[j]) flen[j] = fieldSub(f[j], t) f[j] = fieldAdd(f[j], t) } } } return nttElement(f) } // inverseNTT maps a nttElement back to the ringElement it represents. // // It implements NTT⁻¹, according to FIPS 203, Algorithm 10. func inverseNTT(f nttElement) ringElement...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
  3. api/go1.5.txt

    pkg go/types, const Complex128 = 16
    pkg go/types, const Complex128 BasicKind
    pkg go/types, const Complex64 = 15
    pkg go/types, const Complex64 BasicKind
    pkg go/types, const FieldVal = 0
    pkg go/types, const FieldVal SelectionKind
    pkg go/types, const Float32 = 13
    pkg go/types, const Float32 BasicKind
    pkg go/types, const Float64 = 14
    pkg go/types, const Float64 BasicKind
    pkg go/types, const Int = 2
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
Back to top