Home
last modified time | relevance | path

Searched refs:other_value (Results 1 – 6 of 6) sorted by relevance

/external/devlib/devlib/utils/
Dmisc.py280 other_value = other[k]
282 other_type = type(other_value)
284 (base_value is not None) and (other_value is not None)):
286other_value, other_type))
288 … merged[k] = _merge_two_dicts(base_value, other_value, list_duplicates, match_types, dict_type)
291 … merged[k] = _merge_two_lists(base_value, other_value, list_duplicates, dict_type)
293 merged[k] = _merge_two_lists([], other_value, list_duplicates, dict_type)
296 merged[k] = norm(base_value.union(other_value), dict_type)
298 merged[k] = norm(other_value, dict_type)
/external/cmockery/cmockery_0_1_2/src/example/
Dcalculator.c192 int other_value; in perform_operation() local
215 other_value = (int)strtol(arguments[i], &end_of_integer, 10); in perform_operation()
226 *intermediate_value = function(value, other_value); in perform_operation()
/external/clang/test/Modules/
Dcstd.m5 const double other_value = DBL_MAX;
/external/v8/src/compiler/
Dbytecode-graph-builder.h103 Node* MergeValue(Node* value, Node* other_value, Node* control);
/external/tensorflow/tensorflow/python/training/
Dsaver_test.py496 def _SaveAndLoad(self, var_name, var_value, other_value, save_path): argument
505 var = resource_variable_ops.ResourceVariable(other_value, name=var_name)
/external/v8/src/
Dobjects.cc2244 double other_value = other->Number(); in SameValue() local
2246 if (this_value != other_value) { in SameValue()
2247 return std::isnan(this_value) && std::isnan(other_value); in SameValue()
2250 return (std::signbit(this_value) == std::signbit(other_value)); in SameValue()
2266 double other_value = other->Number(); in SameValueZero() local
2268 return this_value == other_value || in SameValueZero()
2269 (std::isnan(this_value) && std::isnan(other_value)); in SameValueZero()