Searched refs:value_b (Results 1 – 2 of 2) sorted by relevance
/external/skia/src/core/ |
D | SkFloat.cpp | 161 int value_b = get_signed_value(packed_b) >> shift_b; in Add() local 163 return SkFloat::SetShift(value_a + value_b, exp - EXP_BIAS); in Add() 186 int value_b = get_signed_value(packed_b); in Mul() local 188 return SkFloat::SetShift(mul24(value_a, value_b), exp_a + exp_b - 2*EXP_BIAS + 24); in Mul()
|
/external/mesa3d/src/glsl/ |
D | ast_to_hir.cpp | 154 arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, in arithmetic_result_type() argument 159 const glsl_type *type_b = value_b->type; in arithmetic_result_type() 178 if (!apply_implicit_conversion(type_a, value_b, state) in arithmetic_result_type() 186 type_b = value_b->type; in arithmetic_result_type() 470 relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, in relational_result_type() argument 474 const glsl_type *type_b = value_b->type; in relational_result_type() 495 if (!apply_implicit_conversion(type_a, value_b, state) in relational_result_type() 503 type_b = value_b->type; in relational_result_type()
|