Searched refs:other_value (Results 1 - 3 of 3) sorted by relevance

/external/cmockery/cmockery_0_1_2/src/example/
H A Dcalculator.c192 int other_value; local
215 other_value = (int)strtol(arguments[i], &end_of_integer, 10);
226 *intermediate_value = function(value, other_value);
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_namespace.cc308 base::NullableString16 other_value = area->GetItem(transaction.key); local
310 if (transaction.value != other_value)
/external/chromium_org/v8/src/
H A Dobjects.cc872 double other_value = other->Number(); local
873 bool equal = this_value == other_value;
875 if (!equal) return std::isnan(this_value) && std::isnan(other_value);
877 return (this_value != 0) || ((1 / this_value) == (1 / other_value));
893 double other_value = other->Number(); local
895 return this_value == other_value
896 || (std::isnan(this_value) && std::isnan(other_value));

Completed in 2127 milliseconds