Searched defs:value_b (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/content/common/
H A Dpage_zoom.cc16 bool ZoomValuesEqual(double value_a, double value_b) { argument
17 return (std::fabs(value_a - value_b) <= kEpsilon);
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-run-properties.cc51 volatile U value_b = static_cast<U>(kValues[j]); local
53 static_cast<double>(value_a) + static_cast<double>(value_b);
120 volatile U value_b = static_cast<U>(kValues[j]); local
122 static_cast<double>(value_a) + static_cast<double>(value_b);
/external/chromium_org/third_party/skia/src/core/
H A DSkFloat.cpp154 int value_b = get_signed_value(packed_b) >> shift_b; local
156 return SkFloat::SetShift(value_a + value_b, exp - EXP_BIAS);
173 int value_b = get_signed_value(packed_b); local
175 return SkFloat::SetShift(mul24(value_a, value_b), exp_a + exp_b - 2*EXP_BIAS + 24);
/external/skia/src/core/
H A DSkFloat.cpp154 int value_b = get_signed_value(packed_b) >> shift_b; local
156 return SkFloat::SetShift(value_a + value_b, exp - EXP_BIAS);
173 int value_b = get_signed_value(packed_b); local
175 return SkFloat::SetShift(mul24(value_a, value_b), exp_a + exp_b - 2*EXP_BIAS + 24);
/external/lldb/source/Symbol/
H A DSymtab.cpp579 addr_t value_b = addr_cache[index_b]; local
580 if (value_b == LLDB_INVALID_ADDRESS)
582 value_b = symbols[index_b].GetAddress().GetFileAddress();
583 addr_cache[index_b] = value_b;
587 if (value_a == value_b) {
596 } else if (value_a < value_b)
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dast_to_hir.cpp165 arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, argument
170 const glsl_type *type_b = value_b->type;
189 if (!apply_implicit_conversion(type_a, value_b, state)
197 type_b = value_b->type;
496 relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, argument
500 const glsl_type *type_b = value_b->type;
521 if (!apply_implicit_conversion(type_a, value_b, state)
529 type_b = value_b->type;
/external/mesa3d/src/glsl/
H A Dast_to_hir.cpp165 arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, argument
170 const glsl_type *type_b = value_b->type;
189 if (!apply_implicit_conversion(type_a, value_b, state)
197 type_b = value_b->type;
496 relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, argument
500 const glsl_type *type_b = value_b->type;
521 if (!apply_implicit_conversion(type_a, value_b, state)
529 type_b = value_b->type;

Completed in 227 milliseconds