/third_party/jerryscript/jerry-core/vm/ |
D | opcodes-ecma-relational-equality.c | 47 ecma_value_t compare_result = ecma_op_abstract_equality_compare (left_value, right_value); in opfunc_equality() local 49 JERRY_ASSERT (ecma_is_value_boolean (compare_result) in opfunc_equality() 50 || ECMA_IS_VALUE_ERROR (compare_result)); in opfunc_equality() 52 return compare_result; in opfunc_equality()
|
/third_party/boost/libs/spirit/example/x3/rexpr/rexpr_full/test/ |
D | testing.hpp | 32 struct compare_result struct 34 compare_result( in compare_result() argument 44 compare_result<typename Range::const_iterator> 112 inline compare_result<typename Range::const_iterator> 121 typedef compare_result<iter_t> compare_result_t; in compare()
|
/third_party/boost/libs/compute/include/boost/compute/algorithm/detail/ |
D | find_extrema_with_reduce.hpp | 417 bool compare_result = next > extremum; in find_extrema_with_reduce() local 419 extremum = compare_result ? next : extremum; in find_extrema_with_reduce() 420 extremum_idx = compare_result ? idx : extremum_idx; in find_extrema_with_reduce() 428 bool compare_result = next < extremum; in find_extrema_with_reduce() local 430 extremum = compare_result ? next : extremum; in find_extrema_with_reduce() 431 extremum_idx = compare_result ? idx : extremum_idx; in find_extrema_with_reduce()
|
/third_party/boost/boost/compute/algorithm/detail/ |
D | find_extrema_with_reduce.hpp | 417 bool compare_result = next > extremum; in find_extrema_with_reduce() local 419 extremum = compare_result ? next : extremum; in find_extrema_with_reduce() 420 extremum_idx = compare_result ? idx : extremum_idx; in find_extrema_with_reduce() 428 bool compare_result = next < extremum; in find_extrema_with_reduce() local 430 extremum = compare_result ? next : extremum; in find_extrema_with_reduce() 431 extremum_idx = compare_result ? idx : extremum_idx; in find_extrema_with_reduce()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-comparison.c | 121 ecma_value_t compare_result = ecma_op_abstract_equality_compare (x_num_value, y); in ecma_op_abstract_equality_compare() local 124 return compare_result; in ecma_op_abstract_equality_compare() 169 ecma_value_t compare_result = ecma_op_abstract_equality_compare (x_prim_value, y); in ecma_op_abstract_equality_compare() local 172 return compare_result; in ecma_op_abstract_equality_compare()
|
/third_party/boost/libs/asio/include/boost/asio/generic/detail/impl/ |
D | endpoint.ipp | 76 int compare_result = memcmp(e1.data(), e2.data(), compare_size); 78 if (compare_result < 0) 81 if (compare_result > 0)
|
/third_party/boost/boost/asio/generic/detail/impl/ |
D | endpoint.ipp | 76 int compare_result = memcmp(e1.data(), e2.data(), compare_size); 78 if (compare_result < 0) 81 if (compare_result > 0)
|
/third_party/mindspore/tests/st/ops/graph_kernel/ |
D | test_layernorm.py | 67 def compare_result(expect, output, dtype): function 95 compare_result(expect, output, dtype) 122 compare_result(expect, output, dtype)
|
D | test_layernorm_stitch.py | 51 def compare_result(expect, output, dtype): function 79 compare_result(expect, output, dtype)
|
D | test_dropoutgrad_reducesum_stitch.py | 54 def compare_result(expect, output, dtype): function 82 compare_result(expect, output, dtype)
|
D | test_softmax_stitch.py | 58 def compare_result(expect, output, dtype): function 85 compare_result(expect, output, dtype)
|
/third_party/abseil-cpp/absl/strings/ |
D | string_view.h | 555 int compare_result) { in CompareImpl() argument 556 return compare_result == 0 ? static_cast<int>(length_a > length_b) - in CompareImpl() 558 : (compare_result < 0 ? -1 : 1); in CompareImpl()
|
/third_party/boost/libs/regex/test/regress/ |
D | test_icu.cpp | 71 void compare_result(const MR1& w1, const MR2& w2, boost::mpl::int_<2> const*) in compare_result() function 135 void compare_result(const MR1& w1, const MR2& w2, boost::mpl::int_<1> const*) in compare_result() function 303 compare_result(what, what16, static_cast<boost::mpl::int_<2> const*>(0)); in test_icu() 319 compare_result(what, what16c, static_cast<boost::mpl::int_<2> const*>(0)); in test_icu() 347 compare_result(what, what8, static_cast<boost::mpl::int_<1> const*>(0)); in test_icu() 363 compare_result(what, what8c, static_cast<boost::mpl::int_<1> const*>(0)); in test_icu()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | string_view.h | 635 int compare_result) { in CompareImpl() argument 636 return compare_result == 0 ? static_cast<int>(length_a > length_b) - in CompareImpl() 638 : (compare_result < 0 ? -1 : 1); in CompareImpl()
|
/third_party/gstreamer/gstreamer/tests/check/libs/ |
D | baseparse.c | 504 gint compare_result = 0; in _sink_chain_pull_short_read() local 511 compare_result = memcmp (map.data, &raw_buffer[result_offset], buffer_size); in _sink_chain_pull_short_read() 512 fail_unless_equals_int (compare_result, 0); in _sink_chain_pull_short_read()
|
/third_party/jerryscript/jerry-core/parser/js/ |
D | js-lexer.c | 808 int compare_result = ident_start_p[0] - keyword_p->keyword_p[0]; in lexer_parse_identifier() local 810 if (compare_result == 0) in lexer_parse_identifier() 812 compare_result = memcmp (ident_start_p, keyword_p->keyword_p, length); in lexer_parse_identifier() 814 if (compare_result == 0) in lexer_parse_identifier() 890 if (compare_result > 0) in lexer_parse_identifier() 896 JERRY_ASSERT (compare_result < 0); in lexer_parse_identifier()
|
/third_party/protobuf/src/google/protobuf/util/ |
D | message_differencer.cc | 1105 const bool compare_result = Compare(m1, m2, parent_fields); in CompareFieldValueUsingParentFields() local 1107 return compare_result; in CompareFieldValueUsingParentFields()
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | video.c | 2145 compare_result (gconstpointer a, gconstpointer b) in compare_result() function 2282 g_array_sort (packarray, compare_result); in GST_START_TEST() 2291 g_array_sort (unpackarray, compare_result); in GST_START_TEST() 2690 g_array_sort (array, compare_result); in GST_START_TEST()
|