- Sort Score
- Result 10 results
- Languages All
Results 211 - 211 of 211 for unnecessarily (0.08 sec)
-
lib/fips140/v1.0.0.zip
that can be found in the LICENSE file. // Package alias implements memory aliasing tests. // This code also exists as golang.org/x/crypto/internal/alias. package alias import "unsafe" // AnyOverlap reports whether x and y share memory at any (not necessarily // corresponding) index. The memory beyond the slice length is ignored. func AnyOverlap(x, y []byte) bool { return len(x) > 0 && len(y) > 0 && uintptr(unsafe.Pointer(&x[0])) <= uintptr(unsafe.Pointer(&y[len(y)-1])) && uintptr(unsafe.Pointer(&y[0]))...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)