/external/chromium_org/content/common/ |
page_zoom.cc | 16 bool ZoomValuesEqual(double value_a, double value_b) { 17 return (std::fabs(value_a - value_b) <= kEpsilon);
|
/external/chromium_org/content/public/common/ |
page_zoom.h | 36 CONTENT_EXPORT bool ZoomValuesEqual(double value_a, double value_b);
|
/external/chromium_org/v8/test/cctest/compiler/ |
test-run-properties.cc | 50 volatile U value_a = static_cast<U>(kValues[i]); local 53 static_cast<double>(value_a) + static_cast<double>(value_b); 119 volatile U value_a = static_cast<U>(kValues[i]); local 122 static_cast<double>(value_a) + static_cast<double>(value_b);
|
/external/chromium_org/third_party/skia/src/core/ |
SkFloat.cpp | 153 int value_a = get_signed_value(packed_a) >> shift_a; local 156 return SkFloat::SetShift(value_a + value_b, exp - EXP_BIAS); 172 int value_a = get_signed_value(packed_a); local 175 return SkFloat::SetShift(mul24(value_a, value_b), exp_a + exp_b - 2*EXP_BIAS + 24);
|
/external/clang/test/Sema/ |
conversion.c | 395 void test_8559831(enum E8559831b value_a, E8559831c value_c) { 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/lldb/source/Symbol/ |
Symtab.cpp | 572 addr_t value_a = addr_cache[index_a]; local 573 if (value_a == LLDB_INVALID_ADDRESS) 575 value_a = symbols[index_a].GetAddress().GetFileAddress(); 576 addr_cache[index_a] = value_a; 587 if (value_a == value_b) { 596 } else if (value_a < value_b) [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ast_to_hir.cpp | 165 arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, 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, 499 const glsl_type *type_a = value_a->type; 522 && !apply_implicit_conversion(type_b, value_a, state)) { 528 type_a = value_a->type; [all...] |
/external/mesa3d/src/glsl/ |
ast_to_hir.cpp | 165 arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, 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, 499 const glsl_type *type_a = value_a->type; 522 && !apply_implicit_conversion(type_b, value_a, state)) { 528 type_a = value_a->type; [all...] |