Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

SIMD.%type%.fromInt16x8Bits()

この記事は編集レビューを必要としています。ぜひご協力ください

この翻訳は不完全です。英語から この記事を翻訳 してください。

This is an experimental technology, part of the Harmony (ECMAScript 7) proposal.
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future version of browsers as the spec changes.

静的なSIMD.%type%.fromInt16x8Bits()メソッドは、int16x8からのビット単位のコピーをもつ新しいSIMDデータ型を生成します。

構文

SIMD.float64x2.fromInt16x8Bits(t)
SIMD.float32x4.fromInt16x8Bits(t)
SIMD.int32x4.fromInt16x8Bits(t)
SIMD.int8x16.fromInt16x8Bits(t)

引数

t
(ビット単位に)変換するInt16x8 SIMD型。

SIMD.float64x2.fromInt16x8Bits

var t = SIMD.int16x8(0, 0, 0, 16368, 0, 0, 0, 16384);
SIMD.float64x2.fromInt16x8Bits(t);
// float64x2[1.0, 2.0]

SIMD.float32x4.fromInt16x8Bits

var t = SIMD.int16x8(0, 16256, 0, 16384, 0, 16448, 0, 16512);
SIMD.float32x4.fromInt16x8Bits(t);
// float32x4[1.0, 2.0, 3.0, 4.0]

SIMD.int32x4.fromInt16x8Bits

var t = SIMD.int16x8(1, 2, 3, 4, 5, 6, 7, 8);
SIMD.int32x4.fromInt16x8Bits(t);
// int32x4[131073, 262147, 393221, 524295]

SIMD.int8x16.fromInt16x8Bits

var t = SIMD.int16x8(1, 2, 3, 4, 5, 6, 7, 8);
SIMD.int8x16.fromInt16x8Bits(t);
// int8x16[1,0,2,0,3,0,4,0,5,0,6,0,7,0,8,0]

Specifications

SIMDはまだ公式規格文書やドラフトでサポートされていません。typed arraysに基づいた標準化作業や互換性実装のために、ecmascript_simd GitHub リポジトリを確かめて下さい。

ブラウザ実装状況

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本サポート 未サポート 未サポート 未サポート 未サポート 未サポート
機能 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本サポート 未サポート 未サポート 未サポート 未サポート 未サポート 未サポート

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: shide55
 最終更新者: shide55,