Lines Matching full:alias
222 // z must not alias x, y or m.
366 // alias reports whether x and y share the same base array.
367 func alias(x, y nat) bool {
420 if alias(z, x) || alias(z, y) {
421 z = nil // z is an alias for x or y - cannot reuse
562 if alias(z, uIn) || alias(z, v) {
563 z = nil // z is an alias for uIn or v - cannot reuse
568 if alias(u, uIn) || alias(u, v) {
569 u = nil // u is an alias for uIn or v - cannot reuse
866 if alias(z, limit) {
867 z = nil // z is an alias for limit - cannot reuse
902 if alias(z, x) || alias(z, y) {
957 // otherwise the arguments would alias.
1003 // the arguments would alias.