Home
last modified time | relevance | path

Searched refs:to1 (Results 1 – 4 of 4) sorted by relevance

/third_party/icu/icu4c/source/test/cintltst/
Dccapitst.c1491 TSCCContext from1, to1; in TestConvertSafeCloneCallback() local
1510 TSCC_init(&to1); in TestConvertSafeCloneCallback()
1513 TSCC_print_log(&to1, "to1"); in TestConvertSafeCloneCallback()
1519 ucnv_setToUCallBack(conv1, TSCC_toU, &to1, NULL, NULL, &err); in TestConvertSafeCloneCallback()
1521 TSCC_print_log(&to1, "to1"); in TestConvertSafeCloneCallback()
1580 if(to3 != (&to1) ) { in TestConvertSafeCloneCallback()
1584 if(to2 == (&to1) ) { in TestConvertSafeCloneCallback()
1588 if(to1.wasClosed) { in TestConvertSafeCloneCallback()
1602 TSCC_print_log(&to1, "to1"); in TestConvertSafeCloneCallback()
1613 if(to1.wasClosed == FALSE) { in TestConvertSafeCloneCallback()
[all …]
/third_party/glslang/glslang/MachineIndependent/
DParseContextBase.cpp354 std::function<bool(const TType& from, const TType& to1, const TType& to2)> better, in selectFunction() argument
DParseHelper.cpp6409 const auto better = [](const TType& from, const TType& to1, const TType& to2) -> bool { in findFunction400() argument
6412 return from != to1; in findFunction400()
6413 if (from == to1) in findFunction400()
6418 if (to2.getBasicType() == EbtDouble && to1.getBasicType() != EbtDouble) in findFunction400()
6423 return to2.getBasicType() == EbtFloat && to1.getBasicType() == EbtDouble; in findFunction400()
6485 const auto better = [this](const TType& from, const TType& to1, const TType& to2) -> bool { in findFunctionExplicitTypes() argument
6488 return from != to1; in findFunctionExplicitTypes()
6489 if (from == to1) in findFunctionExplicitTypes()
6494 TBasicType to1_type = to1.getBasicType(); in findFunctionExplicitTypes()
/third_party/glslang/glslang/HLSL/
DhlslParseHelper.cpp7567 const auto better = [](const TType& from, const TType& to1, const TType& to2) -> bool { in findFunction() argument
7570 return from != to1; in findFunction()
7571 if (from == to1) in findFunction()
7577 from.getVectorSize() != to1.getVectorSize()) in findFunction()
7579 if (from.getVectorSize() == to1.getVectorSize() && in findFunction()
7587 …if (from.getBasicType() == EbtSampler && to1.getBasicType() == EbtSampler && to2.getBasicType() ==… in findFunction()
7589 TSampler to1Sampler = to1.getSampler(); in findFunction()
7624 abs(linearize(to1.getBasicType()) - linearize(from.getBasicType())); in findFunction()