/external/protobuf/src/google/protobuf/util/ |
D | field_comparator.h | 177 bool value_1, bool value_2) { in CompareBool() argument 178 return value_1 == value_2; in CompareBool() 184 double value_1, double value_2); 188 const EnumValueDescriptor* value_2); 193 float value_1, float value_2); 196 int32 value_1, int32 value_2) { in CompareInt32() argument 197 return value_1 == value_2; in CompareInt32() 201 int64 value_1, int64 value_2) { in CompareInt64() argument 202 return value_1 == value_2; in CompareInt64() 206 const string& value_1, const string& value_2) { in CompareString() argument [all …]
|
D | field_comparator.cc | 150 double value_1, double value_2) { in CompareDouble() argument 151 return CompareDoubleOrFloat(field, value_1, value_2); in CompareDouble() 156 const EnumValueDescriptor* value_2) { in CompareEnum() argument 157 return value_1->number() == value_2->number(); in CompareEnum() 161 float value_1, float value_2) { in CompareFloat() argument 162 return CompareDoubleOrFloat(field, value_1, value_2); in CompareFloat() 167 T value_1, T value_2) { in CompareDoubleOrFloat() argument 168 if (value_1 == value_2) { in CompareDoubleOrFloat() 174 MathLimits<T>::IsNaN(value_1) && MathLimits<T>::IsNaN(value_2)) { in CompareDoubleOrFloat() 180 MathLimits<T>::IsNaN(value_1) && MathLimits<T>::IsNaN(value_2)) { in CompareDoubleOrFloat() [all …]
|
/external/adhd/cras/src/tests/ |
D | alsa_ucm_unittest.cc | 82 std::string value_2 = "test_card:0"; in SetSectionDeviceData() local 88 snd_use_case_get_value[id_2] = value_2; in SetSectionDeviceData() 237 std::string value_2 = "Value2"; in TEST() local 241 snd_use_case_get_value[id_2] = value_2; in TEST() 276 std::string value_2 = "Value2"; in TEST() local 279 snd_use_case_get_value[id_2] = value_2; in TEST() 280 dev_name = ucm_get_dev_for_jack(mgr, value_2.c_str(), CRAS_STREAM_OUTPUT); in TEST() 355 std::string value_2 = "Value2"; in TEST() local 358 snd_use_case_get_value[id_2] = value_2; in TEST() 361 dev_name_in = ucm_get_dev_for_mixer(mgr, value_2.c_str(), CRAS_STREAM_INPUT); in TEST() [all …]
|
/external/libmicrohttpd/src/examples/ |
D | post_example.c | 102 char value_2[64]; member 362 reply = malloc (strlen (SECOND_PAGE) + strlen (session->value_1) + strlen (session->value_2) + 1); in fill_v1_v2_form() 366 strlen (SECOND_PAGE) + strlen (session->value_1) + strlen (session->value_2) + 1, in fill_v1_v2_form() 369 session->value_2); in fill_v1_v2_form() 473 session->value_2); in post_iterator() 488 if (size + off >= sizeof(session->value_2)) in post_iterator() 489 size = sizeof (session->value_2) - off - 1; in post_iterator() 490 memcpy (&session->value_2[off], in post_iterator() 493 session->value_2[size+off] = '\0'; in post_iterator()
|
/external/libmpeg2/common/x86/ |
D | impeg2_inter_pred_sse42_intr.c | 481 __m128i value_2 = _mm_set1_epi16(2); in impeg2_mc_halfx_halfy_8x8_sse42() local 501 tmp0 = _mm_add_epi16(tmp0, value_2); in impeg2_mc_halfx_halfy_8x8_sse42() 503 tmp0 = _mm_packus_epi16(tmp0, value_2); in impeg2_mc_halfx_halfy_8x8_sse42() 520 tmp1 = _mm_add_epi16(tmp1, value_2); in impeg2_mc_halfx_halfy_8x8_sse42() 522 tmp1 = _mm_packus_epi16(tmp1, value_2); in impeg2_mc_halfx_halfy_8x8_sse42() 540 tmp0 = _mm_add_epi16(tmp0, value_2); in impeg2_mc_halfx_halfy_8x8_sse42() 542 tmp0 = _mm_packus_epi16(tmp0, value_2); in impeg2_mc_halfx_halfy_8x8_sse42() 560 tmp1 = _mm_add_epi16(tmp1, value_2); in impeg2_mc_halfx_halfy_8x8_sse42() 562 tmp1 = _mm_packus_epi16(tmp1, value_2); in impeg2_mc_halfx_halfy_8x8_sse42() 580 tmp0 = _mm_add_epi16(tmp0, value_2); in impeg2_mc_halfx_halfy_8x8_sse42() [all …]
|
/external/libmicrohttpd/doc/examples/ |
D | sessions.c | 124 char value_2[64]; member 385 session->value_2)) in fill_v1_v2_form() 489 session->value_2); in post_iterator() 505 if (size + off > sizeof(session->value_2)) in post_iterator() 506 size = sizeof (session->value_2) - off; in post_iterator() 507 memcpy (&session->value_2[off], in post_iterator() 510 if (size + off < sizeof (session->value_2)) in post_iterator() 511 session->value_2[size+off] = '\0'; in post_iterator()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/ |
D | opus_fec_test.cc | 147 int value_1 = 0, value_2 = 0; in DecodeABlock() local 164 value_2 = WebRtcOpus_Decode(opus_decoder_, &bit_stream_[0], encoded_bytes_, in DecodeABlock() 166 EXPECT_EQ(static_cast<int>(block_length_sample_), value_2); in DecodeABlock()
|
/external/tensorflow/tensorflow/contrib/training/python/training/ |
D | tensor_queue_dataset_test.py | 86 value_2, _ = sess.run([value, enqueue_negative]) 87 self.assertAllEqual([[-1, 0, 0]], value_2) 108 value_2, _ = sess.run([value, enqueue_negative]) 109 self.assertEqual([-1], value_2) 134 value_2, _ = sess.run([value, enqueue_negative]) 135 self.assertAllEqual([0, 2], value_2)
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | conv_ops_test.py | 912 value_2 = sess.run(conv_2) 914 self.assertShapeEqual(value_2, conv_2) 915 print("expected = ", value_2) 917 self.assertArrayNear(value_2.flatten(), value.flatten(), err) 965 value_2 = sess.run(conv_2) 967 self.assertShapeEqual(value_2, conv_2) 968 print("expected = ", value_2) 970 self.assertArrayNear(value_2.flatten(), value.flatten(), err)
|
/external/tensorflow/tensorflow/core/kernels/ |
D | resize_bicubic_op.cc | 95 const T value_0, const T value_1, const T value_2, in Interpolate1D() argument 99 static_cast<float>(value_2) * weight_2 + in Interpolate1D()
|
/external/llvm/docs/ |
D | LLVMBuild.rst | 121 list_property_name = value_1 value_2 ... value_n
|
/external/libmicrohttpd/doc/ |
D | libmicrohttpd-tutorial.info | 3277 char value_2[64]; 3538 session->value_2)) 3642 session->value_2); 3658 if (size + off > sizeof(session->value_2)) 3659 size = sizeof (session->value_2) - off; 3660 memcpy (&session->value_2[off], 3663 if (size + off < sizeof (session->value_2)) 3664 session->value_2[size+off] = '\0';
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | SimpleDateFormat.java | 4356 int value_2 = toCalendar.get(field); in diffCalFieldValue() local 4357 if ( value != value_2 ) { in diffCalFieldValue()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | SimpleDateFormat.java | 4386 int value_2 = toCalendar.get(field); in diffCalFieldValue() local 4387 if ( value != value_2 ) { in diffCalFieldValue()
|