Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkAliasingOneArg (0.2 sec)

  1. lib/fips140/v1.0.0-c2097c7c.zip

    eld/fe_alias_test.go // Copyright (c) 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package field import ( "testing" "testing/quick" ) func checkAliasingOneArg(f func(v, x *Element) *Element) func(v, x Element) bool { return func(v, x Element) bool { x1, v1 := x, x // Calculate a reference f(x) without aliasing. if out := f(&v, &x); out != &v && isInBounds(out) { return false } // Test aliasing the...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  2. lib/fips140/v1.1.0-rc1.zip

    eld/fe_alias_test.go // Copyright (c) 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package field import ( "testing" "testing/quick" ) func checkAliasingOneArg(f func(v, x *Element) *Element) func(v, x Element) bool { return func(v, x Element) bool { x1, v1 := x, x // Calculate a reference f(x) without aliasing. if out := f(&v, &x); out != &v && isInBounds(out) { return false } // Test aliasing the...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top