Home
last modified time | relevance | path

Searched refs:resValue (Results 1 – 8 of 8) 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.cpp916 const deUint32 resValue = outValues[readNdx*numInvocations + invocationNdx]; in iterate() local
918 if (refValue != resValue) in iterate()
922 << tcu::toHex(refValue) << ", got " << tcu::toHex(resValue) in iterate()
1198 const deUint32 resValue = outValues[opNdx*numInvocations + invocationNdx]; in iterate() local
1199 const bool rangeOk = de::inBounds(resValue, 0u, (deUint32)counterMasks[counterNdx].size()); in iterate()
1200 const bool notSeen = rangeOk && !counterMasks[counterNdx][resValue]; in iterate()
1207 << resValue in iterate()
1216 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/shaderexecutor/
DvktOpaqueTypeIndexingTests.cpp1338 const deUint32 resValue = outValues[readNdx*numInvocations + invocationNdx]; in iterate() local
1340 if (refValue != resValue) in iterate()
1344 << tcu::toHex(refValue) << ", got " << tcu::toHex(resValue) in iterate()
1744 const deUint32 resValue = outValues[opNdx*numInvocations + invocationNdx]; in iterate() local
1745 const bool rangeOk = de::inBounds(resValue, 0u, (deUint32)counterMasks[counterNdx].size()); in iterate()
1746 const bool notSeen = rangeOk && !counterMasks[counterNdx][resValue]; in iterate()
1753 << resValue in iterate()
1762 counterMasks[counterNdx][resValue] = true; in iterate()
/external/deqp/external/vulkancts/modules/vulkan/compute/
DvktComputeShaderBuiltinVarTests.cpp533 const UVec3 resValue = readResultVec(resPtr, numScalars); in iterate() local
535 if (!compareNumComponents(refValue, resValue, numScalars)) in iterate()
542 << ", 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()