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.c1495 TSCCContext from1, to1; in TestConvertSafeCloneCallback() local
1514 TSCC_init(&to1); in TestConvertSafeCloneCallback()
1517 TSCC_print_log(&to1, "to1"); in TestConvertSafeCloneCallback()
1523 ucnv_setToUCallBack(conv1, TSCC_toU, &to1, NULL, NULL, &err); in TestConvertSafeCloneCallback()
1525 TSCC_print_log(&to1, "to1"); in TestConvertSafeCloneCallback()
1584 if(to3 != (&to1) ) { in TestConvertSafeCloneCallback()
1588 if(to2 == (&to1) ) { in TestConvertSafeCloneCallback()
1592 if(to1.wasClosed) { in TestConvertSafeCloneCallback()
1606 TSCC_print_log(&to1, "to1"); in TestConvertSafeCloneCallback()
1617 if(to1.wasClosed == false) { in TestConvertSafeCloneCallback()
[all …]
/third_party/glslang/glslang/MachineIndependent/
DParseContextBase.cpp375 std::function<bool(const TType& from, const TType& to1, const TType& to2)> better, in selectFunction() argument
DParseHelper.cpp7130 const auto better = [](const TType& from, const TType& to1, const TType& to2) -> bool { in findFunction400() argument
7133 return from != to1; in findFunction400()
7134 if (from == to1) in findFunction400()
7139 if (to2.getBasicType() == EbtDouble && to1.getBasicType() != EbtDouble) in findFunction400()
7144 return to2.getBasicType() == EbtFloat && to1.getBasicType() == EbtDouble; in findFunction400()
7206 const auto better = [this](const TType& from, const TType& to1, const TType& to2) -> bool { in findFunctionExplicitTypes() argument
7209 return from != to1; in findFunctionExplicitTypes()
7210 if (from == to1) in findFunctionExplicitTypes()
7215 TBasicType to1_type = to1.getBasicType(); in findFunctionExplicitTypes()
/third_party/glslang/glslang/HLSL/
DhlslParseHelper.cpp7663 const auto better = [](const TType& from, const TType& to1, const TType& to2) -> bool { in findFunction() argument
7666 return from != to1; in findFunction()
7667 if (from == to1) in findFunction()
7673 from.getVectorSize() != to1.getVectorSize()) in findFunction()
7675 if (from.getVectorSize() == to1.getVectorSize() && in findFunction()
7683 …if (from.getBasicType() == EbtSampler && to1.getBasicType() == EbtSampler && to2.getBasicType() ==… in findFunction()
7685 TSampler to1Sampler = to1.getSampler(); in findFunction()
7720 abs(linearize(to1.getBasicType()) - linearize(from.getBasicType())); in findFunction()