Home
last modified time | relevance | path

Searched refs:resValue (Results 1 – 10 of 10) sorted by relevance

/external/lzma/CPP/7zip/Common/
DMethodProps.cpp53 HRESULT ParsePropToUInt32(const UString &name, const PROPVARIANT &prop, UInt32 &resValue) in ParsePropToUInt32() argument
63 resValue = prop.ulVal; in ParsePropToUInt32()
73 resValue = v; in ParsePropToUInt32()
DMethodProps.h18 HRESULT ParsePropToUInt32(const UString &name, const PROPVARIANT &prop, UInt32 &resValue);
/external/deqp/modules/gles31/functional/
Des31fOpaqueTypeIndexingTests.cpp924 const deUint32 resValue = outValues[readNdx*numInvocations + invocationNdx]; in iterate() local
926 if (refValue != resValue) in iterate()
930 << tcu::toHex(refValue) << ", got " << tcu::toHex(resValue) in iterate()
1210 const deUint32 resValue = outValues[opNdx*numInvocations + invocationNdx]; in iterate() local
1211 const bool rangeOk = de::inBounds(resValue, 0u, (deUint32)counterMasks[counterNdx].size()); in iterate()
1212 const bool notSeen = rangeOk && !counterMasks[counterNdx][resValue]; in iterate()
1219 << resValue in iterate()
1228 counterMasks[counterNdx][resValue] = true; in iterate()
Des31fComputeShaderBuiltinVarTests.cpp261 const UVec3 resValue = readResultVec(resPtr, numScalars); in iterate() local
263 if (!compareComps(refValue, resValue, numScalars)) in iterate()
268 << ", got " << LogComps(resValue, numScalars) in iterate()
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DResourceTypes.java872 public void attr(int ns, int name, int value, Res_value resValue, String fullName) { in attr() argument
873 attrs.add(new Attr(ns, name, value, resValue, fullName)); in attr()
921 public Attr(int ns, int name, int value, Res_value resValue, String fullName) { in Attr() argument
925 this.resValueDataType = resValue.dataType; in Attr()
926 this.resValueData = resValue.data; in Attr()
/external/deqp/external/vulkancts/modules/vulkan/ycbcr/
DvktYCbCrFilteringTests.cpp445 tcu::Vec4 resValue = resImage.getPixel(x, y); in iterate() local
446 …bool fail = tcu::boolAny(tcu::lessThan(resValue, minBound[ndx])) || tcu::boolAny(tcu::greaterThan( in iterate()
450 log << TestLog::Message << "Fail: " << sts[ndx] << " " << resValue << TestLog::EndMessage; in iterate()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktOpaqueTypeIndexingTests.cpp1362 const deUint32 resValue = outValues[readNdx*numInvocations + invocationNdx]; in iterate() local
1364 if (refValue != resValue) in iterate()
1368 << tcu::toHex(refValue) << ", got " << tcu::toHex(resValue) in iterate()
1777 const deUint32 resValue = outValues[opNdx*numInvocations + invocationNdx]; in iterate() local
1778 const bool rangeOk = de::inBounds(resValue, 0u, counterValues[counterNdx]); in iterate()
1780 if (resultValueHitCountMaps[counterNdx].count(resValue) == 0) in iterate()
1781 resultValueHitCountMaps[counterNdx][resValue] = 1; in iterate()
1783 resultValueHitCountMaps[counterNdx][resValue] += 1; in iterate()
1789 << resValue in iterate()
/external/deqp/external/vulkancts/modules/vulkan/compute/
DvktComputeShaderBuiltinVarTests.cpp534 const UVec3 resValue = readResultVec(resPtr, numScalars); in iterate() local
536 if (!compareNumComponents(refValue, resValue, numScalars)) in iterate()
543 << ", got " << LogComps(resValue, numScalars) in iterate()
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/android/
DAttributeSetBuilderImpl.java340 Res_value resValue = new Res_value(type.code(), valueInt); in build()
344 resStringPoolWriter.string(value), resValue, attrNs + ":" + attrName); in build()
/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktDrawInvertedDepthRangesTests.cpp528 const auto resValue = resultDepth.getPixDepth(x, y); in iterate() local
529 if (!de::inRange(resValue, refValue - kDepthThreshold, refValue + kDepthThreshold)) in iterate()