/third_party/mesa3d/src/gallium/drivers/lima/ |
D | lima_parser.c | 64 parse_vs_draw(FILE *fp, uint32_t *value1, uint32_t *value2) in parse_vs_draw() argument 66 if ((*value1 == 0x00000000) && (*value2 == 0x00000000)) in parse_vs_draw() 70 (*value1 & 0xff000000) >> 24 | (*value2 & 0x000000ff) << 8, in parse_vs_draw() 71 (*value1 & 0x00000001) ? "true" : "false"); in parse_vs_draw() 75 parse_vs_shader_info(FILE *fp, uint32_t *value1, uint32_t *value2) in parse_vs_shader_info() argument 78 (*value1 & 0xfff00000) >> 20, in parse_vs_shader_info() 79 (((*value1 & 0x000fffff) >> 10) + 1) << 4); in parse_vs_shader_info() 83 parse_vs_unknown1(FILE *fp, uint32_t *value1, uint32_t *value2) in parse_vs_unknown1() argument 89 parse_vs_varying_attribute_count(FILE *fp, uint32_t *value1, uint32_t *value2) in parse_vs_varying_attribute_count() argument 92 ((*value1 & 0x00ffffff) >> 8) + 1, (*value1 >> 24) + 1); in parse_vs_varying_attribute_count() [all …]
|
/third_party/protobuf/js/experimental/runtime/kernel/ |
D | kernel_repeated_test.js | 470 const value1 = 1; constant 585 expectEqualToArray(list, [value1, value2]); 600 accessor.addUnpackedDoubleElement(1, value1); 605 expectEqualToArray(list1, [value1]); 606 expectEqualToArray(list2, [value1, value2]); 612 accessor.addUnpackedDoubleIterable(1, [value1]); 617 expectEqualToArray(list1, [value1]); 618 expectEqualToArray(list2, [value1, value2]); 624 accessor.setUnpackedDoubleElement(1, 1, value1); 627 expectEqualToArray(list, [value1, value1]); [all …]
|
/third_party/mbedtls/tests/src/ |
D | helpers.c | 111 unsigned long long value1, unsigned long long value2) in mbedtls_test_equal() argument 113 TEST_CF_PUBLIC(&value1, sizeof(value1)); in mbedtls_test_equal() 116 if (value1 == value2) { in mbedtls_test_equal() 129 value1, (long long) value1); in mbedtls_test_equal() 138 unsigned long long value1, unsigned long long value2) in mbedtls_test_le_u() argument 140 TEST_CF_PUBLIC(&value1, sizeof(value1)); in mbedtls_test_le_u() 143 if (value1 <= value2) { in mbedtls_test_le_u() 156 value1, value1); in mbedtls_test_le_u() 165 long long value1, long long value2) in mbedtls_test_le_s() argument 167 TEST_CF_PUBLIC(&value1, sizeof(value1)); in mbedtls_test_le_s() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | referencesForEnums.baseline.jsonc | 3 // /*FIND ALL REFS*/[|value1|] = 1, 4 // "value2" = [|value1|], 8 // E.[|value1|]; 20 "name": "(enum member) E.value1 = 1", 51 "text": "value1", 114 // value1 = 1, 115 // /*FIND ALL REFS*/"[|value2|]" = value1, 119 // E.value1; 229 // value1 = 1, 230 // "/*FIND ALL REFS*/[|value2|]" = value1, [all …]
|
D | esnextmodulekindWithES5Target5.types | 5 value1 6 >value1 : E1.value1 12 value1 13 >value1 : E2.value1
|
D | es6modulekindWithES5Target5.types | 5 value1 6 >value1 : E1.value1 12 value1 13 >value1 : E2.value1
|
D | esnextmodulekindWithES5Target5.symbols | 5 value1 6 >value1 : Symbol(E1.value1, Decl(esnextmodulekindWithES5Target5.ts, 0, 16)) 12 value1 13 >value1 : Symbol(E2.value1, Decl(esnextmodulekindWithES5Target5.ts, 4, 22))
|
D | es6modulekindWithES5Target5.symbols | 5 value1 6 >value1 : Symbol(E1.value1, Decl(es6modulekindWithES5Target5.ts, 0, 16)) 12 value1 13 >value1 : Symbol(E2.value1, Decl(es6modulekindWithES5Target5.ts, 4, 22))
|
D | numericStringLiteralTypes.types | 85 f([container1, container2], (value1, value2) => { 86 >f([container1, container2], (value1, value2) => { value1; // string value2; // number}) : … 91 >(value1, value2) => { value1; // string value2; // number} : (value1: string, value2: numb… 92 >value1 : string 95 value1; // string 96 >value1 : string
|
D | dependentDestructuredVariables.js | 335 value1, property 336 test1 = value1.test1, 337 test2 = value1.test2, 338 test3 = value1.test3, 339 test4 = value1.test4, 340 test5 = value1.test5, 341 test6 = value1.test6, 342 test7 = value1.test7, 343 test8 = value1.test8, 344 test9 = value1.test9 [all …]
|
D | dependentDestructuredVariables.errors.txt | 1 tests/cases/conformance/controlFlow/dependentDestructuredVariables.ts(334,5): error TS7022: 'value1… 2 …dependentDestructuredVariables.ts(334,5): error TS7031: Binding element 'value1' implicitly has an… 339 value1, 341 !!! error TS7022: 'value1' implicitly has type 'any' because it does not have a type annotation and… 343 !!! error TS7031: Binding element 'value1' implicitly has an 'any' type. 344 test1 = value1.test1, 345 test2 = value1.test2, 346 test3 = value1.test3, 347 test4 = value1.test4, 348 test5 = value1.test5, [all …]
|
D | circularOptionalityRemoval.types | 14 function fn2(x?: string = someCondition ? 'value1' : x) { } 17 >someCondition ? 'value1' : x : string | undefined 19 >'value1' : "value1"
|
D | exportImportCanSubstituteConstEnumForValue.js | 52 const value1 = ReExportedEnum.Cancel; constant 53 console.log(value1); 80 var value1 = 1 /* ReExportedEnum.Cancel */; 81 console.log(value1);
|
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/ |
D | IcuDataTest.java | 82 RbValue value1 = RbValue.of("the", "first", "value"); in addMultiple() local 85 icuData.add(fooBar, value1); in addMultiple() 86 assertThat(icuData.get(fooBar)).containsExactly(value1); in addMultiple() 89 assertThat(icuData.get(fooBar)).containsExactly(value1, value2).inOrder(); in addMultiple() 92 icuData.add(fooBar, Arrays.asList(value2, value1)); in addMultiple() 93 assertThat(icuData.get(fooBar)).containsExactly(value1, value2, value2, value1).inOrder(); in addMultiple() 101 RbValue value1 = RbValue.of("the", "first", "value"); in replace() local 104 icuData.replace(fooBar, value1); in replace() 105 assertThat(icuData.get(fooBar)).containsExactly(value1); in replace()
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstvalue.c | 62 const GValue * value1, const GValue * value2); 78 const GValue * value1, const GValue * value2); 181 static gint gst_value_compare_fraction (const GValue * value1, 184 static GstValueCompareFunc gst_value_get_compare_func (const GValue * value1); 628 gst_value_list_or_array_are_compatible (const GValue * value1, in gst_value_list_or_array_are_compatible() argument 634 if (!gst_value_list_or_array_get_basic_type (value1, &basic_type1) || in gst_value_list_or_array_are_compatible() 736 gst_value_list_concat (GValue * dest, const GValue * value1, in gst_value_list_concat() argument 744 g_return_if_fail (G_IS_VALUE (value1)); in gst_value_list_concat() 746 g_return_if_fail (gst_value_list_or_array_are_compatible (value1, value2)); in gst_value_list_concat() 749 (GST_VALUE_HOLDS_LIST (value1) ? VALUE_LIST_SIZE (value1) : 1); in gst_value_list_concat() [all …]
|
D | gstvalue.h | 448 typedef gint (* GstValueCompareFunc) (const GValue *value1, 461 typedef gchar * (* GstValueSerializeFunc) (const GValue *value1); 585 const GValue *value1, 589 const GValue *value1, 764 gint gst_value_compare (const GValue *value1, 767 gboolean gst_value_can_compare (const GValue *value1, 770 gboolean gst_value_is_subset (const GValue *value1, 777 const GValue *value1, 780 gboolean gst_value_can_union (const GValue *value1, 787 const GValue *value1, [all …]
|
D | gstparamspecs.c | 110 _gst_param_fraction_values_cmp (GParamSpec * pspec, const GValue * value1, in _gst_param_fraction_values_cmp() argument 115 res = gst_value_compare (value1, value2); in _gst_param_fraction_values_cmp() 266 _gst_param_array_values_cmp (GParamSpec * pspec, const GValue * value1, in _gst_param_array_values_cmp() argument 272 if (!value1 || !value2) in _gst_param_array_values_cmp() 273 return value2 ? -1 : value1 != value2; in _gst_param_array_values_cmp() 275 size1 = gst_value_array_get_size (value1); in _gst_param_array_values_cmp() 289 const GValue *element1 = gst_value_array_get_value (value1, i); in _gst_param_array_values_cmp()
|
/third_party/ffmpeg/libavfilter/ |
D | f_metadata.c | 89 const char *value1, const char *value2); 120 static int same_str(MetadataContext *s, const char *value1, const char *value2) in same_str() argument 122 return !strcmp(value1, value2); in same_str() 125 static int starts_with(MetadataContext *s, const char *value1, const char *value2) in starts_with() argument 127 return !strncmp(value1, value2, strlen(value2)); in starts_with() 130 static int ends_with(MetadataContext *s, const char *value1, const char *value2) in ends_with() argument 132 const int len1 = strlen(value1); in ends_with() 135 return !strncmp(value1 + FFMAX(len1 - len2, 0), value2, len2); in ends_with() 138 static int equal(MetadataContext *s, const char *value1, const char *value2) in equal() argument 142 if (sscanf(value1, "%f", &f1) + sscanf(value2, "%f", &f2) != 2) in equal() [all …]
|
/third_party/typescript/tests/cases/conformance/controlFlow/ |
D | dependentDestructuredVariables.ts | 339 value1, 340 test1 = value1.test1, 341 test2 = value1.test2, 342 test3 = value1.test3, 343 test4 = value1.test4, 344 test5 = value1.test5, 345 test6 = value1.test6, 346 test7 = value1.test7, 347 test8 = value1.test8, 348 test9 = value1.test9
|
/third_party/gstreamer/gstreamer/tests/check/gst/ |
D | gstvalue.c | 841 GValue value1 = { 0 }; in GST_START_TEST() local 846 g_value_init (&value1, G_TYPE_INT); in GST_START_TEST() 847 g_value_set_int (&value1, 10); in GST_START_TEST() 850 fail_unless (gst_value_compare (&value1, &value2) == GST_VALUE_LESS_THAN); in GST_START_TEST() 851 fail_unless (gst_value_compare (&value2, &value1) == GST_VALUE_GREATER_THAN); in GST_START_TEST() 852 fail_unless (gst_value_compare (&value1, &value1) == GST_VALUE_EQUAL); in GST_START_TEST() 853 g_value_unset (&value1); in GST_START_TEST() 856 g_value_init (&value1, G_TYPE_DOUBLE); in GST_START_TEST() 857 g_value_set_double (&value1, 10); in GST_START_TEST() 860 fail_unless (gst_value_compare (&value1, &value2) == GST_VALUE_LESS_THAN); in GST_START_TEST() [all …]
|
/third_party/python/Lib/test/ |
D | test_dict_version.py | 97 value1 = AlwaysEqual() 99 self.assertTrue(value1 == value2) 100 self.assertFalse(value1 != value2) 101 self.assertIsNot(value1, value2) 104 self.check_version_changed(d, d.__setitem__, 'key', value1) 105 self.assertIs(d['key'], value1) 114 self.check_version_changed(d, d.update, key=value1) 115 self.assertIs(d['key'], value1)
|
/third_party/mesa3d/src/amd/addrlib/src/core/ |
D | addrcommon.h | 399 UINT_32 value1, in Min() argument 402 return ((value1 < (value2)) ? (value1) : value2); in Min() 414 INT_32 value1, in Min() argument 417 return ((value1 < (value2)) ? (value1) : value2); in Min() 429 UINT_32 value1, in Max() argument 432 return ((value1 > (value2)) ? (value1) : value2); in Max() 444 INT_32 value1, in Max() argument 447 return ((value1 > (value2)) ? (value1) : value2); in Max()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | LazyFieldLite.java | 153 MessageLite value1 = value; in equals() local 155 if (value1 == null && value2 == null) { in equals() 157 } else if (value1 != null && value2 != null) { in equals() 158 return value1.equals(value2); in equals() 159 } else if (value1 != null) { in equals() 160 return value1.equals(other.getValue(value1.getDefaultInstanceForType())); in equals()
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
D | equivalence_relation.h | 76 void MakeEquivalent(const T& value1, const T& value2) { in MakeEquivalent() argument 77 assert(Exists(value1) && in MakeEquivalent() 83 const T* value1_ptr = *value_set_.find(&value1); in MakeEquivalent() 162 bool IsEquivalent(const T& value1, const T& value2) const { in IsEquivalent() argument 163 return Find(&value1) == Find(&value2); in IsEquivalent()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | equivalence_relation.h | 76 void MakeEquivalent(const T& value1, const T& value2) { in MakeEquivalent() argument 77 assert(Exists(value1) && in MakeEquivalent() 83 const T* value1_ptr = *value_set_.find(&value1); in MakeEquivalent() 162 bool IsEquivalent(const T& value1, const T& value2) const { in IsEquivalent() argument 163 return Find(&value1) == Find(&value2); in IsEquivalent()
|