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()

Cette fonction est expérimentale
Puisque cette fonction est toujours en développement dans certains navigateurs, veuillez consulter le tableau de compatibilité pour les préfixes à utiliser selon les navigateurs.
Il convient de noter qu'une fonctionnalité expérimentale peut voir sa syntaxe ou son comportement modifié dans le futur en fonction des évolutions de la spécification.

La méthode SIMD.%type%.fromInt16x8Bits() crée un nouveau vecteur SIMD en effectuant une copie binaire à partir d'un vecteur Int16x8.

Syntaxe

SIMD.Float64x2.fromInt16x8Bits(t)
SIMD.Float32x4.fromInt16x8Bits(t)

SIMD.Int32x4.fromInt16x8Bits(t)
SIMD.Int8x16.fromInt16x8Bits(t)

SIMD.Uint32x4.fromInt16x8Bits(t) 
SIMD.Uint8x16.fromInt16x8Bits(t)
SIMD.Uint8x16.fromInt16x8Bits(t)

Paramètres

t
Un vecteur SIMD du type Int16x8 qu'on souhaite convertir de façon binaire.

Valeur de retour

Un nouveau type de donnée SIMD obtenu à partir d'une copie binaire d'un Int16x8.

Exemples

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]

Spécifications

Spécification État Commentaires
SIMD
La définition de 'SIMDConstructor.fromTIMDBits' dans cette spécification.
Projet Définition initiale.

Compatibilité des navigateurs

Fonctionnalité Chrome Firefox (Gecko) Internet Explorer Opera Safari
Support simple Pas de support Nightly build Pas de support Pas de support Pas de support
Fonctionnalité Android Chrome pour Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Support simple Pas de support Pas de support Nightly build Pas de support Pas de support Pas de support

Voir aussi

Étiquettes et contributeurs liés au document

 Contributeurs à cette page : SphinxKnight
 Dernière mise à jour par : SphinxKnight,