Searched defs:value_a (Results 1 - 6 of 6) 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/third_party/skia/src/core/
H A DSkFloat.cpp153 int value_a = get_signed_value(packed_a) >> shift_a; local
156 return SkFloat::SetShift(value_a + value_b, exp - EXP_BIAS);
178 int value_a = get_signed_value(packed_a); local
181 return SkFloat::SetShift(mul24(value_a, value_b), exp_a + exp_b - 2*EXP_BIAS + 24);
/external/skia/src/core/
H A DSkFloat.cpp153 int value_a = get_signed_value(packed_a) >> shift_a; local
156 return SkFloat::SetShift(value_a + value_b, exp - EXP_BIAS);
178 int value_a = get_signed_value(packed_a); local
181 return SkFloat::SetShift(mul24(value_a, value_b), exp_a + exp_b - 2*EXP_BIAS + 24);
/external/clang/test/Sema/
H A Dconversion.c395 void test_8559831(enum E8559831b value_a, E8559831c value_c) { argument
396 test_8559831_a(value_a); // expected-warning{{implicit conversion from enumeration type 'enum E8559831b' to different enumeration type 'enum E8559831a'}}
397 enum E8559831a a1 = value_a; // expected-warning{{implicit conversion from enumeration type 'enum E8559831b' to different enumeration type 'enum E8559831a'}}
398 a1 = value_a; // expected-warning{{implicit conversion from enumeration type 'enum E8559831b' to different enumeration type 'enum E8559831a'}}
/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
169 const glsl_type *type_a = value_a->type;
190 && !apply_implicit_conversion(type_b, value_a, state)) {
196 type_a = value_a->type;
496 relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, argument
499 const glsl_type *type_a = value_a->type;
522 && !apply_implicit_conversion(type_b, value_a, state)) {
528 type_a = value_a->type;
/external/mesa3d/src/glsl/
H A Dast_to_hir.cpp165 arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, argument
169 const glsl_type *type_a = value_a->type;
190 && !apply_implicit_conversion(type_b, value_a, state)) {
196 type_a = value_a->type;
496 relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, argument
499 const glsl_type *type_a = value_a->type;
522 && !apply_implicit_conversion(type_b, value_a, state)) {
528 type_a = value_a->type;

Completed in 540 milliseconds