| /third_party/node/test/js-native-api/test_reference/ |
| D | test.js | 20 assert.strictEqual(test_reference.referenceValue, symbol); 46 assert.strictEqual(test_reference.referenceValue, value); 50 () => (test_reference.referenceValue === undefined && 58 assert.strictEqual(test_reference.referenceValue, value);
|
| /third_party/skia/tests/ |
| D | WangsFormulaTest.cpp | 207 float referenceValue = wangs_formula_cubic_reference_impl(kPrecision, pts); in DEF_TEST() local 208 REPORTER_ASSERT(r, std::ceil(std::log2(referenceValue)) == level); in DEF_TEST() 210 REPORTER_ASSERT(r, SkScalarNearlyEqual(c/referenceValue, 1, kTessellationTolerance)); in DEF_TEST() 213 referenceValue = wangs_formula_cubic_reference_impl(kPrecision, pts); in DEF_TEST() 214 REPORTER_ASSERT(r, std::ceil(std::log2(referenceValue)) == level + 1); in DEF_TEST() 216 REPORTER_ASSERT(r, SkScalarNearlyEqual(c/referenceValue, 1, kTessellationTolerance)); in DEF_TEST() 226 float referenceValue = wangs_formula_quadratic_reference_impl(kPrecision, pts); in DEF_TEST() local 227 REPORTER_ASSERT(r, std::ceil(std::log2(referenceValue)) == level); in DEF_TEST() 229 REPORTER_ASSERT(r, SkScalarNearlyEqual(q/referenceValue, 1, kTessellationTolerance)); in DEF_TEST() 232 referenceValue = wangs_formula_quadratic_reference_impl(kPrecision, pts); in DEF_TEST() [all …]
|
| /third_party/vk-gl-cts/framework/opengl/ |
| D | gluShaderLibrary.hpp | 114 int referenceValue; member 119 , referenceValue (0) // not used in RequiredCapability() 126 , referenceValue (referenceValue_) in RequiredCapability()
|
| /third_party/skia/src/gpu/mtl/ |
| D | GrMtlRenderCommandEncoder.h | 159 void setStencilReferenceValue(uint32_t referenceValue) { in setStencilReferenceValue() argument 160 [fCommandEncoder setStencilReferenceValue:referenceValue]; in setStencilReferenceValue()
|
| /third_party/skia/experimental/graphite/src/mtl/ |
| D | MtlRenderCommandEncoder.h | 163 void setStencilReferenceValue(uint32_t referenceValue) { in setStencilReferenceValue() argument 164 [(*fCommandEncoder) setStencilReferenceValue:referenceValue]; in setStencilReferenceValue()
|
| /third_party/vk-gl-cts/modules/gles2/functional/ |
| D | es2fIntegerStateQueryTests.cpp | 1358 const int referenceValue = alignments[ndx]; in test() local 1360 glPixelStorei(m_testTargetName, referenceValue); in test() 1363 m_verifier->verifyInteger(m_testCtx, m_testTargetName, referenceValue); in test() 1399 const GLenum referenceValue = blendFuncValues[ndx]; in test() local 1402 if (referenceValue == GL_SRC_ALPHA_SATURATE && in test() 1406 SetBlendFunc(referenceValue); in test() 1409 m_verifier->verifyInteger(m_testCtx, m_testTargetName, referenceValue); in test() 1497 const GLenum referenceValue = blendFuncValues[ndx]; in test() local 1499 SetBlendEquation(referenceValue); in test() 1502 m_verifier->verifyInteger(m_testCtx, m_testTargetName, referenceValue); in test()
|
| D | es2fFloatStateQueryTests.cpp | 56 const GLuint64 referenceValue = (GLint64)((f * double(0xFFFFFFFFULL) - 1) / 2); in expandGLFloatToInteger() local 57 return referenceValue; in expandGLFloatToInteger()
|
| /third_party/vk-gl-cts/modules/gles3/functional/ |
| D | es3fIntegerStateQueryTests.cpp | 1640 const int referenceValue = rnd.getInt(0, 64000); in test() local 1642 glPixelStorei(m_testTargetName, referenceValue); in test() 1645 m_verifier->verifyInteger(m_testCtx, m_testTargetName, referenceValue); in test() 1675 const int referenceValue = alignments[ndx]; in test() local 1677 glPixelStorei(m_testTargetName, referenceValue); in test() 1680 m_verifier->verifyInteger(m_testCtx, m_testTargetName, referenceValue); in test() 1716 const GLenum referenceValue = blendFuncValues[ndx]; in test() local 1718 SetBlendFunc(referenceValue); in test() 1721 m_verifier->verifyInteger(m_testCtx, m_testTargetName, referenceValue); in test() 1809 const GLenum referenceValue = blendFuncValues[ndx]; in test() local [all …]
|
| D | es3fFloatStateQueryTests.cpp | 56 const GLuint64 referenceValue = (GLint64)(f * 2147483647.0); in expandGLFloatToInteger() local 57 return referenceValue; in expandGLFloatToInteger()
|
| /third_party/openssl/crypto/cmp/ |
| D | cmp_protect.c | 250 id = ctx->referenceValue; /* standard for PBM, fallback for sig-based */ in set_senderKID()
|
| D | cmp_ctx.c | 197 ASN1_OCTET_STRING_free(ctx->referenceValue); in OSSL_CMP_CTX_free() 445 return ossl_cmp_asn1_octet_string_set1_bytes(&ctx->referenceValue, ref, in OSSL_CMP_CTX_set1_referenceValue()
|
| D | cmp_local.h | 81 ASN1_OCTET_STRING *referenceValue; /* optional user name for MSG_MAC_ALG */ member
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
| D | vktPipelineExtendedDynamicStateTests.cpp | 2537 bool stencilPasses(vk::VkCompareOp op, deUint8 storedValue, deUint8 referenceValue) in stencilPasses() argument 2542 case vk::VK_COMPARE_OP_LESS: return (referenceValue < storedValue); in stencilPasses() 2543 case vk::VK_COMPARE_OP_EQUAL: return (referenceValue == storedValue); in stencilPasses() 2544 case vk::VK_COMPARE_OP_LESS_OR_EQUAL: return (referenceValue <= storedValue); in stencilPasses() 2545 case vk::VK_COMPARE_OP_GREATER: return (referenceValue > storedValue); in stencilPasses() 2546 case vk::VK_COMPARE_OP_GREATER_OR_EQUAL: return (referenceValue >= storedValue); in stencilPasses() 2554 deUint8 stencilResult(vk::VkStencilOp op, deUint8 storedValue, deUint8 referenceValue, deUint8 min,… in stencilResult() argument 2562 case vk::VK_STENCIL_OP_REPLACE: result = referenceValue; break; in stencilResult()
|
| /third_party/openssl/doc/internal/man3/ |
| D | ossl_cmp_hdr_init.pod | 114 the senderKID must be set, which we take from any referenceValue provided.
|
| /third_party/vk-gl-cts/modules/gles31/functional/ |
| D | es31fTextureBorderClampTests.cpp | 1132 …const tcu::Vec4 referenceValue = effectiveView.gatherOffsets(samplerParams.sampler, texCoord.x()… in verifyTextureGatherResult() local 1133 …const tcu::Vec4 referencePixel = referenceValue * samplerParams.colorScale + samplerParams.color… in verifyTextureGatherResult() 1137 reference.setPixel(px, py, tcu::toRGBAMasked(referenceValue, fbColormask)); in verifyTextureGatherResult() 1198 …const tcu::Vec4 referenceValue = effectiveView.gatherOffsetsCompare(samplerParams.sampler, refZ,… in verifyTextureGatherCmpResult() local 1201 reference.setPixel(px, py, tcu::toRGBAMasked(referenceValue, fbColormask)); in verifyTextureGatherCmpResult() 1203 if (tcu::boolAny(tcu::logicalAnd(colorMask, tcu::notEqual(referenceValue, resultValue)))) in verifyTextureGatherCmpResult()
|
| /third_party/openssl/test/ |
| D | cmp_ctx_test.c | 759 DEFINE_SET_GET1_STR_FN(set1, referenceValue) in DEFINE_SET_CB_TEST()
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/descriptor_indexing/ |
| D | vktDescriptorSetsIndexingTests.cpp | 2987 const tcu::Vec4 referenceValue(component, component, component, 1.0f); in verifyVertexWriteResults() local 2993 const tcu::Vec4 diff = tcu::absDiff(referenceValue, realValue); in verifyVertexWriteResults() 3097 const tcu::Vec4 referenceValue(component, component, component, 1.0f); in verifyVertexWriteResults() local 3102 const tcu::Vec4 diff = tcu::absDiff(referenceValue, realValue); in verifyVertexWriteResults()
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
| D | vktRenderPassTests.cpp | 3908 const PixelValue& referenceValue = reference[x + y * result.getWidth()]; in verifyColorAttachment() local 3914 const Maybe<bool> maybeValue = referenceValue.getValue(compNdx); in verifyColorAttachment() 4022 const PixelValue& referenceValue = reference[x + y * result.getWidth()]; in verifyDepthAttachment() local 4023 const Maybe<bool> maybeValue = referenceValue.getValue(0); in verifyDepthAttachment() 4064 const PixelValue& referenceValue = reference[x + y * result.getWidth()]; in verifyStencilAttachment() local 4065 const Maybe<bool> maybeValue = referenceValue.getValue(1); in verifyStencilAttachment()
|
| /third_party/vk-gl-cts/modules/glshared/ |
| D | glsShaderLibraryCase.cpp | 127 const int requiredValue = capability.referenceValue; in checkImplementationLimits()
|
| /third_party/openssl/doc/man3/ |
| D | OSSL_CMP_CTX_new.pod | 485 OSSL_CMP_CTX_set1_referenceValue() sets the given referenceValue I<ref> with
|