Searched refs:other_value (Results 1 – 8 of 8) sorted by relevance
/external/cmockery/cmockery_0_1_2/src/example/ |
D | calculator.c | 192 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/tensorflow/tensorflow/python/autograph/core/ |
D | converter.py | 306 for other_value in arg_values_found[1:]: 307 if not ast_util.matches(first_value, other_value): 311 compiler.ast_to_source(other_value).strip(),
|
/external/tensorflow/tensorflow/python/eager/ |
D | pywrap_tensor.cc | 374 PyObject* other_value = nullptr; in EagerTensor_init() local 379 &device, &dtype, &other_value)) { in EagerTensor_init() 383 if (other_value != nullptr) { in EagerTensor_init() 384 if (!EagerTensor_CheckExact(other_value)) { in EagerTensor_init() 388 Py_TYPE(other_value)->tp_name) in EagerTensor_init() 393 EagerTensor* other = reinterpret_cast<EagerTensor*>(other_value); in EagerTensor_init()
|
/external/clang/test/Modules/ |
D | cstd.m | 5 const double other_value = DBL_MAX;
|
/external/python/cpython3/Lib/ |
D | pstats.py | 49 for other_value in values[1:]: 50 cls._value2member_map_[other_value] = obj
|
/external/v8/src/compiler/ |
D | bytecode-graph-builder.h | 124 Node* MergeValue(Node* value, Node* other_value, Node* control);
|
/external/tensorflow/tensorflow/python/training/ |
D | saver_test.py | 543 def _SaveAndLoad(self, var_name, var_value, other_value, save_path): argument 552 var = resource_variable_ops.ResourceVariable(other_value, name=var_name)
|
/external/v8/src/ |
D | objects.cc | 2339 double other_value = other->Number(); in SameValue() local 2341 if (this_value != other_value) { in SameValue() 2342 return std::isnan(this_value) && std::isnan(other_value); in SameValue() 2345 return (std::signbit(this_value) == std::signbit(other_value)); in SameValue() 2362 double other_value = other->Number(); in SameValueZero() local 2364 return this_value == other_value || in SameValueZero() 2365 (std::isnan(this_value) && std::isnan(other_value)); in SameValueZero()
|