Home
last modified time | relevance | path

Searched refs:value2 (Results 26 - 50 of 220) sorted by relevance

123456789

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DLazyFieldLite.java154 MessageLite value2 = other.value; in equals()
155 if (value1 == null && value2 == null) { in equals()
157 } else if (value1 != null && value2 != null) { in equals()
158 return value1.equals(value2); in equals()
162 return getValue(value2.getDefaultInstanceForType()).equals(value2); in equals()
/third_party/node/deps/v8/src/codegen/
H A Dpending-optimization-table.cc69 DCHECK(Handle<Tuple2>::cast(entry)->value2().IsSmi()); in IsHeuristicOptimizationAllowed()
70 FunctionStatusFlags status(Smi::ToInt(Handle<Tuple2>::cast(entry)->value2())); in IsHeuristicOptimizationAllowed()
97 DCHECK(Handle<Tuple2>::cast(entry)->value2().IsSmi()); in MarkedForOptimization()
98 FunctionStatusFlags status(Smi::ToInt(Handle<Tuple2>::cast(entry)->value2())); in MarkedForOptimization()
125 Smi::cast(Handle<Tuple2>::cast(value)->value2()).value() == in FunctionWasOptimized()
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Dequivalence_relation.h73 // Requires that |value1| and |value2| are already registered in the
75 // |value1| and |value2|.
76 void MakeEquivalent(const T& value1, const T& value2) { in MakeEquivalent() argument
79 assert(Exists(value2) && in MakeEquivalent()
80 "Precondition: value2 must already be registered."); in MakeEquivalent()
84 const T* value2_ptr = *value_set_.find(&value2); in MakeEquivalent()
159 // Returns true if and only if |value1| and |value2| are in the same
162 bool IsEquivalent(const T& value1, const T& value2) const { in IsEquivalent()
163 return Find(&value1) == Find(&value2); in IsEquivalent()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dequivalence_relation.h73 // Requires that |value1| and |value2| are already registered in the
75 // |value1| and |value2|.
76 void MakeEquivalent(const T& value1, const T& value2) { in MakeEquivalent() argument
79 assert(Exists(value2) && in MakeEquivalent()
80 "Precondition: value2 must already be registered."); in MakeEquivalent()
84 const T* value2_ptr = *value_set_.find(&value2); in MakeEquivalent()
159 // Returns true if and only if |value1| and |value2| are in the same
162 bool IsEquivalent(const T& value1, const T& value2) const { in IsEquivalent()
163 return Find(&value1) == Find(&value2); in IsEquivalent()
/third_party/spirv-tools/source/fuzz/
H A Dequivalence_relation.h73 // Requires that |value1| and |value2| are already registered in the
75 // |value1| and |value2|.
76 void MakeEquivalent(const T& value1, const T& value2) { in MakeEquivalent() argument
79 assert(Exists(value2) && in MakeEquivalent()
80 "Precondition: value2 must already be registered."); in MakeEquivalent()
84 const T* value2_ptr = *value_set_.find(&value2); in MakeEquivalent()
159 // Returns true if and only if |value1| and |value2| are in the same
162 bool IsEquivalent(const T& value1, const T& value2) const { in IsEquivalent()
163 return Find(&value1) == Find(&value2); in IsEquivalent()
/kernel/linux/linux-6.6/arch/mips/bcm47xx/
H A Dboard.c21 const char *value2; member
27 const char *value2; member
263 !strcmp(buf2, e2->value2)) in bcm47xx_board_get_nvram()
295 !strcmp(buf2, e2->value2)) in bcm47xx_board_get_nvram()
312 !strcmp(buf2, e3->value2) && in bcm47xx_board_get_nvram()
323 !strcmp(buf2, e2->value2)) in bcm47xx_board_get_nvram()
330 if (!strcmp(buf1, e2->value2)) in bcm47xx_board_get_nvram()
/third_party/skia/third_party/externals/microhttpd/src/testspdy/
H A Dtest_struct_namevalue.c96 const char *const*value2; in main() local
321 value2 = SPDY_name_value_lookup(container3,pairs_with_dups[i], &ret2); in main()
322 if(NULL == value2) in main()
326 if(0 != strcmp(value2[j], value[j])) in main()
334 value2 = SPDY_name_value_lookup(container3,pairs_different[i], &ret2); in main()
335 if(NULL == value2) in main()
339 if(0 != strcmp(value2[j], value[j])) in main()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DTrieTest.java286 int value2 = trie.getBMPValue((char)start); in _testTrieRanges()
287 if (value != value2) { in _testTrieRanges()
290 + Integer.toHexString(value2) + " instead of 0x" in _testTrieRanges()
294 value2 = trie.getLeadValue((char)start); in _testTrieRanges()
295 if (value != value2) { in _testTrieRanges()
298 + Integer.toHexString(value2) + " instead of 0x" in _testTrieRanges()
303 int value2 = trie.getCodePointValue(start); in _testTrieRanges()
304 if (value != value2) { in _testTrieRanges()
307 + Integer.toHexString(value2) + " instead of 0x" in _testTrieRanges()
H A DTrie2Test.java630 int value, value2; in trieGettersTest()
648 value2=trie.get(start); in trieGettersTest()
649 if (value != value2) { in trieGettersTest()
652 assertEquals("wrong value for " + testName + " of " + Integer.toHexString(start), value, value2); in trieGettersTest()
683 value2 = trie.getFromU16SingleLead((char)start); in trieGettersTest()
684 if(value2!=value) { in trieGettersTest()
687 Integer.toHexString(value) + ", " + Integer.toHexString(value2)); in trieGettersTest()
694 value2=trie.get(0x110000); in trieGettersTest()
695 if(value!=errorValue || value2!=errorValue) { in trieGettersTest()
697 errorValue + ", " + value + ", " + value2); in trieGettersTest()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DTrieTest.java283 int value2 = trie.getBMPValue((char)start); in _testTrieRanges()
284 if (value != value2) { in _testTrieRanges()
287 + Integer.toHexString(value2) + " instead of 0x" in _testTrieRanges()
291 value2 = trie.getLeadValue((char)start); in _testTrieRanges()
292 if (value != value2) { in _testTrieRanges()
295 + Integer.toHexString(value2) + " instead of 0x" in _testTrieRanges()
300 int value2 = trie.getCodePointValue(start); in _testTrieRanges()
301 if (value != value2) { in _testTrieRanges()
304 + Integer.toHexString(value2) + " instead of 0x" in _testTrieRanges()
H A DTrie2Test.java627 int value, value2; in trieGettersTest()
645 value2=trie.get(start); in trieGettersTest()
646 if (value != value2) { in trieGettersTest()
649 assertEquals("wrong value for " + testName + " of " + Integer.toHexString(start), value, value2); in trieGettersTest()
680 value2 = trie.getFromU16SingleLead((char)start); in trieGettersTest()
681 if(value2!=value) { in trieGettersTest()
684 Integer.toHexString(value) + ", " + Integer.toHexString(value2)); in trieGettersTest()
691 value2=trie.get(0x110000); in trieGettersTest()
692 if(value!=errorValue || value2!=errorValue) { in trieGettersTest()
694 errorValue + ", " + value + ", " + value2); in trieGettersTest()
[all...]
/kernel/linux/linux-5.10/samples/bpf/
H A Dtracex6_user.c28 struct bpf_perf_event_value value2; in check_on_cpu() local
57 if (bpf_map_lookup_elem(map_fd[2], &cpu, &value2)) { in check_on_cpu()
63 value2.counter, value2.enabled, value2.running); in check_on_cpu()
/kernel/linux/linux-6.6/samples/bpf/
H A Dtracex6_user.c27 struct bpf_perf_event_value value2; in check_on_cpu() local
56 if (bpf_map_lookup_elem(map_fd[2], &cpu, &value2)) { in check_on_cpu()
62 value2.counter, value2.enabled, value2.running); in check_on_cpu()
/third_party/mbedtls/tests/include/test/
H A Dhelpers.h271 * and EXPR2 has the value \p value2.
275 * \param value2 The second value to compare.
280 unsigned long long value1, unsigned long long value2);
292 * and EXPR2 has the value \p value2.
296 * \param value2 The second value to compare.
298 * \return \c 1 if \p value1 <= \p value2, otherwise \c 0.
301 unsigned long long value1, unsigned long long value2);
313 * and EXPR2 has the value \p value2.
317 * \param value2 The second value to compare.
319 * \return \c 1 if \p value1 <= \p value2, otherwis
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dce60/
H A Ddce60_timing_generator.c133 uint32_t value2 = dm_read_reg(tg->ctx, addr2); in dce60_timing_generator_enable_advanced_request() local
145 value2, in dce60_timing_generator_enable_advanced_request()
156 value2, in dce60_timing_generator_enable_advanced_request()
175 dm_write_reg(tg->ctx, addr2, value2); in dce60_timing_generator_enable_advanced_request()
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dce60/
H A Ddce60_timing_generator.c133 uint32_t value2 = dm_read_reg(tg->ctx, addr2); in dce60_timing_generator_enable_advanced_request() local
145 value2, in dce60_timing_generator_enable_advanced_request()
156 value2, in dce60_timing_generator_enable_advanced_request()
175 dm_write_reg(tg->ctx, addr2, value2); in dce60_timing_generator_enable_advanced_request()
/third_party/typescript/tests/baselines/reference/
H A DnumericStringLiteralTypes.js35 f([container1, container2], (value1, value2) => {
37 value2; // number
51 f([container1, container2], function (value1, value2) {
53 value2; // number
H A DnoUncheckedIndexAccess.js19 const value2 = Meat[valueUndefined]
45 var value2 = Meat[valueUndefined]; variable
/third_party/node/benchmark/assert/
H A Ddeepequal-prims-and-objs-big-loop.js29 const value2 = method.includes('not') ? expectedWrong : expected;
33 fn([actual], [value2]);
H A Ddeepequal-buffer.js25 const value2 = method.includes('not') ? expectedWrong : expected;
29 fn(actual, value2);
H A Ddeepequal-object.js38 const value2 = method.includes('not') ? expectedWrong : expected;
42 fn(actual, value2);
/kernel/liteos_m/testsuites/include/
H A DiCunit.h260 #define ICUNIT_ASSERT_WITHIN_EQUAL(param, value1, value2, retcode) \
262 if ((param) < (value1) || (param) > (value2)) { \
268 #define ICUNIT_ASSERT_WITHIN_EQUAL_VOID(param, value1, value2, retcode) \
270 if ((param) < (value1) || (param) > (value2)) { \
/third_party/ffmpeg/libavutil/tests/
H A Dopt.c189 char *value2 = NULL; in main() local
201 ret3 = av_opt_get(&test2_ctx, o->name, 0, (uint8_t **)&value2); in main()
207 ret3 >= 0 ? value2 : av_err2str(ret3), in main()
208 ret1 >= 0 && ret2 >= 0 && ret3 >= 0 && !strcmp(value1, value2) ? "OK" : "Mismatch"); in main()
210 av_free(value2); in main()
/kernel/linux/linux-6.6/tools/testing/selftests/riscv/mm/
H A Dmmap_test.h63 void *value2 = mmap(NULL, sizeof(int), prot, flags, 0, 0); in memory_layout() local
65 return value2 > value1; in memory_layout()
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn201/
H A Ddcn201_link_encoder.c55 uint32_t value1, value2; in dcn201_link_encoder_get_max_link_cap() local
60 RDPCS_PHY_DPALT_DP4, &value2); in dcn201_link_encoder_get_max_link_cap()
63 if (!value1 && !value2 && link_settings->lane_count > LANE_COUNT_TWO) in dcn201_link_encoder_get_max_link_cap()

Completed in 12 milliseconds

123456789