6 references to Create
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (1)
1266public static Vector512<T> Create<T>(Vector64<T> value) => Create(Vector128.Create(value, value));
src\libraries\System.Private.CoreLib\src\System\SearchValues\Strings\Helpers\TeddyBucketizer.cs (4)
38return (Vector512.Create(low), Vector512.Create(high)); 72return (Vector512.Create(low), Vector512.Create(high));
src\libraries\System.Private.CoreLib\src\System\SpanHelpers.T.cs (1)
70vector = Vector512.Create(vec128).AsVector();