vec_ctiduz

Purpose

Converts a quad vector to 64-bit unsigned integer values with rounding toward zero.

Syntax

d=vec_ctiduz(a)

Result and argument types

The following table describes the types of the returned value and the function arguments.

d a
vector4double vector4double

Result value

Each element of a is rounded towards to zero to floating-point integral value. The corresponding element of the result vector is then set to one of the following values:

Example

a =  (1.6, -8.8,                9.0e22, -5.0e25)
d: (  1,    0, 0xFFFF FFFF FFFF FFFF,       0)