Lines Matching refs:result

135       int result;
139 result = op_mask & LOWER_PACK_SNORM_2x16;
142 result = op_mask & LOWER_PACK_SNORM_4x8;
145 result = op_mask & LOWER_PACK_UNORM_2x16;
148 result = op_mask & LOWER_PACK_UNORM_4x8;
151 result = op_mask & LOWER_PACK_HALF_2x16;
154 result = op_mask & LOWER_UNPACK_SNORM_2x16;
157 result = op_mask & LOWER_UNPACK_SNORM_4x8;
160 result = op_mask & LOWER_UNPACK_UNORM_2x16;
163 result = op_mask & LOWER_UNPACK_UNORM_4x8;
166 result = op_mask & LOWER_UNPACK_HALF_2x16;
169 result = LOWER_PACK_UNPACK_NONE;
173 return static_cast<enum lower_packing_builtins_op>(result);
453 ir_rvalue *result = pack_uvec2_to_uint(
459 assert(result->type == glsl_type::uint_type);
460 return result;
502 ir_rvalue *result = pack_uvec4_to_uint(
508 assert(result->type == glsl_type::uint_type);
509 return result;
559 ir_rvalue *result =
565 assert(result->type == glsl_type::vec2_type);
566 return result;
616 ir_rvalue *result =
622 assert(result->type == glsl_type::vec4_type);
623 return result;
663 ir_rvalue *result = pack_uvec2_to_uint(
666 assert(result->type == glsl_type::uint_type);
667 return result;
707 ir_rvalue *result = pack_uvec4_to_uint(
710 assert(result->type == glsl_type::uint_type);
711 return result;
748 ir_rvalue *result = div(u2f(unpack_uint_to_uvec2(uint_rval)),
751 assert(result->type == glsl_type::vec2_type);
752 return result;
789 ir_rvalue *result = div(u2f(unpack_uint_to_uvec4(uint_rval)),
792 assert(result->type == glsl_type::vec4_type);
793 return result;
896 * result in the same value as if the expression were executed on the
1013 * of the result; the second component specifies the 16 most-significant
1074 ir_rvalue *result = bit_or(lshift(swizzle_y(f16),
1078 assert(result->type == glsl_type::uint_type);
1079 return result;
1292 ir_rvalue *result = expr(ir_unop_bitcast_u2f, f32);
1293 assert(result->type == glsl_type::vec2_type);
1294 return result;