/third_party/node/lib/internal/util/ |
D | comparisons.js | 96 function isEqualBoxedPrimitive(val1, val2) { argument 98 return isNumberObject(val2) && 100 NumberPrototypeValueOf(val2)); 103 return isStringObject(val2) && 104 StringPrototypeValueOf(val1) === StringPrototypeValueOf(val2); 107 return isBooleanObject(val2) && 108 BooleanPrototypeValueOf(val1) === BooleanPrototypeValueOf(val2); 111 return isBigIntObject(val2) && 112 BigIntPrototypeValueOf(val1) === BigIntPrototypeValueOf(val2); 115 return isSymbolObject(val2) && [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | narrowingAssignmentReadonlyRespectsAssertion.types | 8 readonly val2: ReadonlyArray<T>; 9 >val2 : readonly T[] 21 …val2: ["a", "b", "c"] }, { val1: 2, val2: [1, 2, 3] }, { val1: ["a", "z"], val2: ["x", "… 23 { val1: "a", val2: ["a", "b", "c"] }, 24 >{ val1: "a", val2: ["a", "b", "c"] } : { val1: string; val2: string[]; } 27 >val2 : string[] 33 { val1: 2, val2: [1, 2, 3] }, 34 >{ val1: 2, val2: [1, 2, 3] } : { val1: number; val2: number[]; } 37 >val2 : number[] 43 { val1: ["a", "z"], val2: ["x", "y", "z"] }, [all …]
|
D | narrowingAssignmentReadonlyRespectsAssertion.js | 6 readonly val2: ReadonlyArray<T>; 15 { val1: "a", val2: ["a", "b", "c"] }, 16 { val1: 2, val2: [1, 2, 3] }, 17 { val1: ["a", "z"], val2: ["x", "y", "z"] }, 18 { val1: [5, 10], val2: [10, 100, 1000] }, 28 fixture.cases.forEach(({ val1, val2 }) => { field 36 console.log(val2); 47 { val1: "a", val2: ["a", "b", "c"] }, 48 { val1: 2, val2: [1, 2, 3] }, 49 { val1: ["a", "z"], val2: ["x", "y", "z"] }, [all …]
|
D | narrowingAssignmentReadonlyRespectsAssertion.symbols | 14 readonly val2: ReadonlyArray<T>; 15 >val2 : Symbol(TestCase.val2, Decl(narrowingAssignmentReadonlyRespectsAssertion.ts, 3, 38)) 34 { val1: "a", val2: ["a", "b", "c"] }, 36 >val2 : Symbol(val2, Decl(narrowingAssignmentReadonlyRespectsAssertion.ts, 13, 18)) 38 { val1: 2, val2: [1, 2, 3] }, 40 >val2 : Symbol(val2, Decl(narrowingAssignmentReadonlyRespectsAssertion.ts, 14, 16)) 42 { val1: ["a", "z"], val2: ["x", "y", "z"] }, 44 >val2 : Symbol(val2, Decl(narrowingAssignmentReadonlyRespectsAssertion.ts, 15, 25)) 46 { val1: [5, 10], val2: [10, 100, 1000] }, 48 >val2 : Symbol(val2, Decl(narrowingAssignmentReadonlyRespectsAssertion.ts, 16, 22)) [all …]
|
/third_party/cef/tests/ceftests/ |
D | test_util.cc | 144 CefRefPtr<CefBinaryValue> val2) { in TestBinaryEqual() argument 146 EXPECT_TRUE(val2.get()); in TestBinaryEqual() 148 EXPECT_TRUE(val1->IsEqual(val2)); in TestBinaryEqual() 149 EXPECT_TRUE(val2->IsEqual(val1)); in TestBinaryEqual() 152 EXPECT_EQ(data_size, val2->GetSize()); in TestBinaryEqual() 161 EXPECT_EQ(data_size, val2->GetData(data2, data_size, 0)); in TestBinaryEqual() 171 CefRefPtr<CefDictionaryValue> val2) { in TestDictionaryEqual() argument 173 EXPECT_TRUE(val2.get()); in TestDictionaryEqual() 175 EXPECT_TRUE(val1->IsEqual(val2)); in TestDictionaryEqual() 176 EXPECT_TRUE(val2->IsEqual(val1)); in TestDictionaryEqual() [all …]
|
D | test_util.h | 51 CefRefPtr<CefBinaryValue> val2); 54 void TestListEqual(CefRefPtr<CefListValue> val1, CefRefPtr<CefListValue> val2); 58 CefRefPtr<CefDictionaryValue> val2); 62 CefRefPtr<CefProcessMessage> val2); 66 const std::vector<CefString>& val2);
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
D | test_select.h | 17 v4f32 select(v4si32 cond, v4f32 val1, v4f32 val2); 18 v4si32 select(v4si32 cond, v4si32 val1, v4si32 val2); 19 v4ui32 select(v4si32 cond, v4ui32 val1, v4ui32 val2); 20 v8si16 select(v8si16 cond, v8si16 val1, v8si16 val2); 21 v8ui16 select(v8si16 cond, v8ui16 val1, v8ui16 val2); 22 v16si8 select(v16si8 cond, v16si8 val1, v16si8 val2); 23 v16ui8 select(v16si8 cond, v16ui8 val1, v16ui8 val2); 24 v4si32 select_i1(v4si32 cond, v4si32 val1, v4si32 val2); 25 v8si16 select_i1(v8si16 cond, v8si16 val1, v8si16 val2); 26 v16si8 select_i1(v16si8 cond, v16si8 val1, v16si8 val2);
|
/third_party/gn/src/base/ |
D | logging.h | 407 #define CHECK_OP(name, op, val1, val2) CHECK((val1)op(val2)) argument 446 #define CHECK_OP(name, op, val1, val2) \ argument 451 ::logging::Check##name##Impl((val1), (val2), \ 452 #val1 " " #op " " #val2)) \ 567 #define CHECK_EQ(val1, val2) CHECK_OP(EQ, ==, val1, val2) argument 568 #define CHECK_NE(val1, val2) CHECK_OP(NE, !=, val1, val2) argument 569 #define CHECK_LE(val1, val2) CHECK_OP(LE, <=, val1, val2) argument 570 #define CHECK_LT(val1, val2) CHECK_OP(LT, <, val1, val2) argument 571 #define CHECK_GE(val1, val2) CHECK_OP(GE, >=, val1, val2) argument 572 #define CHECK_GT(val1, val2) CHECK_OP(GT, >, val1, val2) argument [all …]
|
/third_party/cef/include/base/ |
D | cef_logging.h | 353 #define CHECK_OP(name, op, val1, val2) \ argument 355 (val1), (val2), #val1 " " #op " " #val2)) \ 422 #define CHECK_EQ(val1, val2) CHECK_OP(EQ, ==, val1, val2) argument 423 #define CHECK_NE(val1, val2) CHECK_OP(NE, !=, val1, val2) argument 424 #define CHECK_LE(val1, val2) CHECK_OP(LE, <=, val1, val2) argument 425 #define CHECK_LT(val1, val2) CHECK_OP(LT, <, val1, val2) argument 426 #define CHECK_GE(val1, val2) CHECK_OP(GE, >=, val1, val2) argument 427 #define CHECK_GT(val1, val2) CHECK_OP(GT, >, val1, val2) argument 522 #define DCHECK_OP(name, op, val1, val2) \ argument 525 (val1), (val2), #val1 " " #op " " #val2)) \ [all …]
|
/third_party/mesa3d/src/gtest/include/gtest/ |
D | gtest.h | 1586 const T1& val1, const T2& val2, in CmpHelperOpFailure() argument 1590 << "), actual: " << FormatForComparisonFailureMessage(val1, val2) in CmpHelperOpFailure() 1591 << " vs " << FormatForComparisonFailureMessage(val2, val1); in CmpHelperOpFailure() 1608 const T1& val1, const T2& val2) {\ 1609 if (val1 op val2) {\ 1612 return CmpHelperOpFailure(expr1, expr2, val1, val2, #op);\ 1616 const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2) 1762 double val2, 2027 #define EXPECT_EQ(val1, val2) \ argument 2028 EXPECT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2) [all …]
|
/third_party/googletest/googletest/include/gtest/ |
D | gtest.h | 1433 const T1& val1, const T2& val2, in CmpHelperOpFailure() argument 1437 << "), actual: " << FormatForComparisonFailureMessage(val1, val2) in CmpHelperOpFailure() 1438 << " vs " << FormatForComparisonFailureMessage(val2, val1); in CmpHelperOpFailure() 1450 const T1& val1, const T2& val2) { \ 1451 if (val1 op val2) { \ 1454 return CmpHelperOpFailure(expr1, expr2, val1, val2, #op); \ 1599 double val1, double val2, 1872 #define EXPECT_EQ(val1, val2) \ argument 1873 EXPECT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2) 1874 #define EXPECT_NE(val1, val2) \ argument [all …]
|
/third_party/node/deps/googletest/include/gtest/ |
D | gtest.h | 1429 const T1& val1, const T2& val2, in CmpHelperOpFailure() argument 1433 << "), actual: " << FormatForComparisonFailureMessage(val1, val2) in CmpHelperOpFailure() 1434 << " vs " << FormatForComparisonFailureMessage(val2, val1); in CmpHelperOpFailure() 1446 const T1& val1, const T2& val2) { \ 1447 if (val1 op val2) { \ 1450 return CmpHelperOpFailure(expr1, expr2, val1, val2, #op); \ 1595 double val1, double val2, 1868 #define EXPECT_EQ(val1, val2) \ argument 1869 EXPECT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2) 1870 #define EXPECT_NE(val1, val2) \ argument [all …]
|
/third_party/skia/src/gpu/tessellate/ |
D | CullTest.h | 58 auto val2 = fMatY * p[2].fY; in areVisible3() local 61 val2 = fMatX*p[2].fX + val2; in areVisible3() 66 val0 = skvx::max(val0, val2); in areVisible3() 79 auto val2 = fMatY * p[2].fY; in areVisible4() local 83 val2 = fMatX*p[2].fX + val2; in areVisible4() 89 val2 = skvx::max(val2, val3); in areVisible4() 90 val0 = skvx::max(val0, val2); in areVisible4()
|
/third_party/typescript/tests/cases/compiler/ |
D | narrowingAssignmentReadonlyRespectsAssertion.ts | 5 readonly val2: ReadonlyArray<T>; property 14 { val1: "a", val2: ["a", "b", "c"] }, 15 { val1: 2, val2: [1, 2, 3] }, 16 { val1: ["a", "z"], val2: ["x", "y", "z"] }, 17 { val1: [5, 10], val2: [10, 100, 1000] }, 27 fixture.cases.forEach(({ val1, val2 }) => { 35 console.log(val2);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | unordered_map_modifiers_test.h | 54 T val2 = {val.first, hash_internal::Generator<V>()()}; in TYPED_TEST_P() local 55 p = m.insert(val2); in TYPED_TEST_P() 68 T val2 = {val.first, hash_internal::Generator<V>()()}; in TYPED_TEST_P() local 69 it = m.insert(it, val2); in TYPED_TEST_P() 93 T val2 = {val.first, hash_internal::Generator<V>()()}; in TYPED_TEST_P() local 94 m.insert(val2); in TYPED_TEST_P() 128 V val2 = hash_internal::Generator<V>()(); in TYPED_TEST_P() local 129 p = m.insert_or_assign(k, val2); in TYPED_TEST_P() 132 EXPECT_EQ(val2, get<1>(*p.first)); in TYPED_TEST_P() 148 V val2 = hash_internal::Generator<V>()(); in TYPED_TEST_P() local [all …]
|
/third_party/openssl/crypto/bn/ |
D | bn_exp2.c | 26 BIGNUM *val1[TABLE_SIZE], *val2[TABLE_SIZE]; in BN_mod_exp2_mont() local 52 val2[0] = BN_CTX_get(ctx); in BN_mod_exp2_mont() 53 if (val2[0] == NULL) in BN_mod_exp2_mont() 101 if (!BN_mod(val2[0], a2, m, ctx)) in BN_mod_exp2_mont() 103 a_mod_m = val2[0]; in BN_mod_exp2_mont() 111 if (!BN_to_montgomery(val2[0], a_mod_m, mont, ctx)) in BN_mod_exp2_mont() 114 if (!BN_mod_mul_montgomery(d, val2[0], val2[0], mont, ctx)) in BN_mod_exp2_mont() 119 if (((val2[i] = BN_CTX_get(ctx)) == NULL) || in BN_mod_exp2_mont() 120 !BN_mod_mul_montgomery(val2[i], val2[i - 1], d, mont, ctx)) in BN_mod_exp2_mont() 186 if (!BN_mod_mul_montgomery(r, r, val2[wvalue2 >> 1], mont, ctx)) in BN_mod_exp2_mont()
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
D | bn_exp2.c | 26 BIGNUM *val1[TABLE_SIZE], *val2[TABLE_SIZE]; in BN_mod_exp2_mont() local 52 val2[0] = BN_CTX_get(ctx); in BN_mod_exp2_mont() 53 if (val2[0] == NULL) in BN_mod_exp2_mont() 101 if (!BN_mod(val2[0], a2, m, ctx)) in BN_mod_exp2_mont() 103 a_mod_m = val2[0]; in BN_mod_exp2_mont() 111 if (!BN_to_montgomery(val2[0], a_mod_m, mont, ctx)) in BN_mod_exp2_mont() 114 if (!BN_mod_mul_montgomery(d, val2[0], val2[0], mont, ctx)) in BN_mod_exp2_mont() 119 if (((val2[i] = BN_CTX_get(ctx)) == NULL) || in BN_mod_exp2_mont() 120 !BN_mod_mul_montgomery(val2[i], val2[i - 1], d, mont, ctx)) in BN_mod_exp2_mont() 186 if (!BN_mod_mul_montgomery(r, r, val2[wvalue2 >> 1], mont, ctx)) in BN_mod_exp2_mont()
|
/third_party/ffmpeg/tests/checkasm/ |
D | audiodsp.c | 90 int32_t val1, val2, min, max; in checkasm_check_audiodsp() local 98 val2 = ((int32_t)rnd()); in checkasm_check_audiodsp() 99 val2 = FFSIGN(val2) * (val2 & ((1 << 24) - 1)); in checkasm_check_audiodsp() 101 min = FFMIN(val1, val2); in checkasm_check_audiodsp() 102 max = FFMAX(val1, val2); in checkasm_check_audiodsp() 120 float val1, val2, min, max; in checkasm_check_audiodsp() local 127 val2 = (float)rnd() / (UINT_MAX >> 1) - 1.0f; in checkasm_check_audiodsp() 129 min = FFMIN(val1, val2); in checkasm_check_audiodsp() 130 max = FFMAX(val1, val2); in checkasm_check_audiodsp()
|
/third_party/googletest/docs/reference/ |
D | assertions.md | 164 `EXPECT_EQ(`*`val1`*`,`*`val2`*`)` \ 165 `ASSERT_EQ(`*`val1`*`,`*`val2`*`)` 167 Verifies that *`val1`*`==`*`val2`*. 179 `EXPECT_NE(`*`val1`*`,`*`val2`*`)` \ 180 `ASSERT_NE(`*`val1`*`,`*`val2`*`)` 182 Verifies that *`val1`*`!=`*`val2`*. 194 `EXPECT_LT(`*`val1`*`,`*`val2`*`)` \ 195 `ASSERT_LT(`*`val1`*`,`*`val2`*`)` 197 Verifies that *`val1`*`<`*`val2`*. 201 `EXPECT_LE(`*`val1`*`,`*`val2`*`)` \ [all …]
|
/third_party/ffmpeg/libavfilter/opencl/ |
D | xfade.cl | 30 float4 val2 = read_imagef(src2, sampler, p); 32 write_imagef(dst, p, mix(val2, val1, progress)); 44 float4 val2 = read_imagef(src2, sampler, p); 46 write_imagef(dst, p, p.x > s ? val2 : val1); 58 float4 val2 = read_imagef(src2, sampler, p); 60 write_imagef(dst, p, p.x > s ? val1 : val2); 72 float4 val2 = read_imagef(src2, sampler, p); 74 write_imagef(dst, p, p.y > s ? val2 : val1); 86 float4 val2 = read_imagef(src2, sampler, p); 88 write_imagef(dst, p, p.y > s ? val1 : val2); [all …]
|
/third_party/elfutils/libdwfl/ |
D | frame_unwind.c | 155 Dwarf_Addr val1, val2; in expr_eval() local 271 if (! pop (&val1) || ! pop (&val2) in expr_eval() 272 || ! push (val2) || ! push (val1) || ! push (val2)) in expr_eval() 279 if (! pop (&val1) || ! pop (&val2) || ! push (val1) || ! push (val2)) in expr_eval() 288 if (! pop (&val1) || ! pop (&val2) || ! pop (&val3) in expr_eval() 289 || ! push (val1) || ! push (val3) || ! push (val2)) in expr_eval() 358 if (! pop (&val2) || ! pop (&val1) || ! push (val1 op val2)) \ in expr_eval() 366 if (! pop (&val2) || ! pop (&val1) \ in expr_eval() 367 || ! push ((int64_t) val1 op (int64_t) val2)) \ in expr_eval() 375 if (! pop (&val2) || ! pop (&val1)) in expr_eval() [all …]
|
/third_party/cef/libcef/common/test/ |
D | translator_test_impl.cc | 415 int val2) override { in SetRefPtrLibraryList() argument 418 return val[0]->GetValue() == val1 && val[1]->GetValue() == val2; in SetRefPtrLibraryList() 423 int val2) override { in GetRefPtrLibraryListByRef() argument 428 val.push_back(new CefTranslatorTestRefPtrLibraryImpl(val2)); in GetRefPtrLibraryListByRef() 460 int val2) override { in SetRefPtrClientList() argument 463 return val[0]->GetValue() == val1 && val[1]->GetValue() == val2; in SetRefPtrClientList() 469 CefRefPtr<CefTranslatorTestRefPtrClient> val2) override { in GetRefPtrClientListByRef() argument 474 val.push_back(val2); in GetRefPtrClientListByRef() 544 int val2) override { in SetRawPtrLibraryList() argument 547 return val[0]->GetValue() == val1 && val[1]->GetValue() == val2; in SetRawPtrLibraryList() [all …]
|
/third_party/cef/libcef_dll/ctocpp/test/ |
D | translator_test_ctocpp.h | 83 int val2) override; 86 int val2) override; 98 int val2) override; 102 CefRefPtr<CefTranslatorTestRefPtrClient> val2) override; 126 int val2) override; 133 int val2) override;
|
/third_party/openssl/test/ |
D | v3ext.c | 45 ASN1_INTEGER *val1 = NULL, *val2 = NULL; in test_asid() local 63 if (!TEST_ptr(val2 = ASN1_INTEGER_new()) in test_asid() 64 || !TEST_true(ASN1_INTEGER_set_int64(val2, 64497))) in test_asid() 67 if (!TEST_true(X509v3_asid_add_id_or_range(asid2, V3_ASID_ASNUM, val2, NULL))) in test_asid() 70 val2 = NULL; in test_asid() 73 || !TEST_ptr(val2 = ASN1_INTEGER_new()) in test_asid() 74 || !TEST_true(ASN1_INTEGER_set_int64(val2, 64497))) in test_asid() 81 if (!TEST_true(X509v3_asid_add_id_or_range(asid3, V3_ASID_ASNUM, val1, val2))) in test_asid() 83 val1 = val2 = NULL; in test_asid() 112 ASN1_INTEGER_free(val2); in test_asid()
|
/third_party/mesa3d/src/egl/main/ |
D | eglconfig.c | 605 EGLint val1, val2; in _eglCompareConfigs() local 625 val1 = val2 = 0; in _eglCompareConfigs() 629 val2 += conf2->RedSize; in _eglCompareConfigs() 633 val2 += conf2->GreenSize; in _eglCompareConfigs() 637 val2 += conf2->BlueSize; in _eglCompareConfigs() 643 val2 += conf2->LuminanceSize; in _eglCompareConfigs() 648 val2 += conf2->AlphaSize; in _eglCompareConfigs() 653 val1 = val2 = 0; in _eglCompareConfigs() 657 if (val1 != val2) in _eglCompareConfigs() 658 return (val2 - val1); in _eglCompareConfigs() [all …]
|