Lines Matching refs:ivec4
63 const ivec4 iv = ivec4(20, 30, sp_int, sp_int);
70 const ivec4 iv_from_bv = ivec4(bv_from_iv);
75 const ivec4 iv_from_uv = ivec4(uv);
78 const ivec4 not_iv = ~iv;
79 const ivec4 negate_iv = -iv;
82 const ivec4 iv_add_two = iv + 2;
83 const ivec4 iv_add_two_sub_three = iv + 2 - 3;
84 const ivec4 iv_add_two_sub_four = iv_add_two_sub_three - 4;
87 const ivec4 iv_mul_two = iv * 2;
88 const ivec4 iv_mul_two_div_five = iv_mul_two / 5;
89 const ivec4 iv_rem_four = iv % 4;
92 const ivec4 iv_shift_right_arithmetic = iv >> 10;
93 const ivec4 iv_shift_left = iv << 2;
96 const ivec4 iv_or_1024 = iv | 0x400;
103 const ivec4 iv_yzxw = iv.yzxw;