Home
last modified time | relevance | path

Searched refs:referenceValue (Results 1 – 25 of 46) sorted by relevance

12

/external/proguard/src/proguard/optimize/evaluation/
DSimpleEnumUseChecker.java158 …partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] in more general ar… in visitSimpleInstruction()
159 … partialEvaluator.getStackBefore(offset).getTop(2).referenceValue().getType()+"]"); in visitSimpleInstruction()
178 …partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] as more general ty… in visitSimpleInstruction()
195 … partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] as monitor"); in visitSimpleInstruction()
241 …s ["+partialEvaluator.getStackBefore(offset).getTop(stackEntryIndex).referenceValue().getType()+".… in visitConstantInstruction()
282 … partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] as ["+ in visitConstantInstruction()
304 … partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] as ["+ in visitConstantInstruction()
332 …zz)+"] compares ["+partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"]… in visitBranchInstruction()
337 …zz)+"] compares ["+partialEvaluator.getStackBefore(offset).getTop(1).referenceValue().getType()+"]… in visitBranchInstruction()
395 … partialEvaluator.getStackBefore(invocationOffset).getTop(stackEntryIndex).referenceValue(); in visitParameter()
[all …]
DSimpleEnumUseSimplifier.java505 ReferenceValue referenceValue = in isPushingSimpleEnum() local
506 partialEvaluator.getStackAfter(offset).getTop(0).referenceValue(); in isPushingSimpleEnum()
508 Clazz referencedClass = referenceValue.getReferencedClass(); in isPushingSimpleEnum()
511 !ClassUtil.isInternalArrayType(referenceValue.getType()); in isPushingSimpleEnum()
531 ReferenceValue referenceValue = in isPoppingSimpleEnum() local
532 partialEvaluator.getStackBefore(offset).getTop(stackEntryIndex).referenceValue(); in isPoppingSimpleEnum()
534 return isSimpleEnum(referenceValue.getReferencedClass()) && in isPoppingSimpleEnum()
535 !ClassUtil.isInternalArrayType(referenceValue.getType()); in isPoppingSimpleEnum()
545 ReferenceValue referenceValue = in isPoppingSimpleEnumType() local
546 partialEvaluator.getStackBefore(offset).getTop(stackEntryIndex).referenceValue(); in isPoppingSimpleEnumType()
[all …]
DEvaluationSimplifier.java881 ReferenceValue referenceValue = in replaceSimpleEnumSwitchInstruction() local
882 partialEvaluator.getStackBefore(producerOffset).getTop(1).referenceValue(); in replaceSimpleEnumSwitchInstruction()
884 if (referenceValue.isParticular()) in replaceSimpleEnumSwitchInstruction()
892 referenceValue); in replaceSimpleEnumSwitchInstruction()
968 ReferenceValue referenceValue = in replaceSimpleEnumSwitchInstruction() local
969 partialEvaluator.getStackBefore(producerOffset).getTop(1).referenceValue(); in replaceSimpleEnumSwitchInstruction()
971 if (referenceValue.isParticular()) in replaceSimpleEnumSwitchInstruction()
979 referenceValue); in replaceSimpleEnumSwitchInstruction()
DSimpleEnumArrayPropagator.java69 array.referenceValue().arrayLength( in visitProgramMethod()
DEvaluationShrinker.java2092 (valueAfter.referenceValue().isNull() == Value.ALWAYS || in isVariableInitialization()
2093 !valueAfter.referenceValue().getType().equals(valueBefore.referenceValue().getType()))) in isVariableInitialization()
/external/guava/android/guava-tests/test/com/google/common/math/
DQuantilesAlgorithmTest.java54 double referenceValue = REFERENCE_ALGORITHM.singleQuantile(1, 2, dataset.clone()); in testSingleQuantile_median() local
59 .of(referenceValue); in testSingleQuantile_median()
64 double referenceValue = REFERENCE_ALGORITHM.singleQuantile(99, 100, dataset.clone()); in testSingleQuantile_percentile99() local
69 .of(referenceValue); in testSingleQuantile_percentile99()
/external/guava/guava-tests/test/com/google/common/math/
DQuantilesAlgorithmTest.java54 double referenceValue = REFERENCE_ALGORITHM.singleQuantile(1, 2, dataset.clone()); in testSingleQuantile_median() local
59 .of(referenceValue); in testSingleQuantile_median()
64 double referenceValue = REFERENCE_ALGORITHM.singleQuantile(99, 100, dataset.clone()); in testSingleQuantile_percentile99() local
69 .of(referenceValue); in testSingleQuantile_percentile99()
/external/skia/tests/
DWangsFormulaTest.cpp205 float referenceValue = wangs_formula_cubic_reference_impl(kPrecision, pts); in DEF_TEST() local
206 REPORTER_ASSERT(r, std::ceil(std::log2(referenceValue)) == level); in DEF_TEST()
208 REPORTER_ASSERT(r, SkScalarNearlyEqual(c/referenceValue, 1, kTessellationTolerance)); in DEF_TEST()
211 referenceValue = wangs_formula_cubic_reference_impl(kPrecision, pts); in DEF_TEST()
212 REPORTER_ASSERT(r, std::ceil(std::log2(referenceValue)) == level + 1); in DEF_TEST()
214 REPORTER_ASSERT(r, SkScalarNearlyEqual(c/referenceValue, 1, kTessellationTolerance)); in DEF_TEST()
224 float referenceValue = wangs_formula_quadratic_reference_impl(kPrecision, pts); in DEF_TEST() local
225 REPORTER_ASSERT(r, std::ceil(std::log2(referenceValue)) == level); in DEF_TEST()
227 REPORTER_ASSERT(r, SkScalarNearlyEqual(q/referenceValue, 1, kTessellationTolerance)); in DEF_TEST()
230 referenceValue = wangs_formula_quadratic_reference_impl(kPrecision, pts); in DEF_TEST()
[all …]
/external/proguard/src/proguard/evaluation/
DProcessor.java548 ReferenceValue referenceValue = stack.apop(); in visitSimpleInstruction() local
549 stack.push(referenceValue.arrayLength(valueFactory)); in visitSimpleInstruction()
595 … stack.push(constantValueFactory.constantValue(clazz, constantIndex).referenceValue()); in visitConstantInstruction()
600 …ReferenceValue referenceValue = constantValueFactory.constantValue(clazz, constantIndex).reference… in visitConstantInstruction() local
602 stack.push(valueFactory.createArrayReferenceValue(referenceValue.internalType(), in visitConstantInstruction()
603referenceValue.getReferencedClass(), in visitConstantInstruction()
614 …ull() == Value.NEVER ? constantValueFactory.constantValue(clazz, constantIndex).referenceValue() : in visitConstantInstruction()
615 …constantValueFactory.constantValue(clazz, constantIndex).referenceValue().generalize(valueFactory.… in visitConstantInstruction()
621 …ReferenceValue referenceValue = constantValueFactory.constantValue(clazz, constantIndex).reference… in visitConstantInstruction() local
623 int instanceOf = stack.apop().instanceOf(referenceValue.getType(), in visitConstantInstruction()
[all …]
DVariables.java263 return load(index).referenceValue(); in aload()
DStack.java330 return pop().referenceValue(); in apop()
/external/proguard/src/proguard/preverify/
DCodePreverifier.java429 ReferenceValue referenceValue = value.referenceValue(); in correspondingVerificationType() local
430 if (referenceValue.isNull() == Value.ALWAYS) in correspondingVerificationType()
475 …return VerificationTypeFactory.createObjectType(createClassConstant(programClass, referenceValue)); in correspondingVerificationType()
487 ReferenceValue referenceValue) in createClassConstant() argument
489 return new ConstantPoolEditor(programClass).addClassConstant(referenceValue.getType(), in createClassConstant()
490referenceValue.getReferencedClass()); in createClassConstant()
/external/proguard/src/proguard/evaluation/value/
DTypedReferenceValue.java193 true).referenceValue(); in referenceArrayLoad()
459 private static ReferenceValue typedReferenceValue(TypedReferenceValue referenceValue, in typedReferenceValue() argument
462 return referenceValue.getClass() == TypedReferenceValue.class ? in typedReferenceValue()
463 referenceValue.generalizeMayBeNull(mayBeNull) : in typedReferenceValue()
464 new TypedReferenceValue(referenceValue.type, in typedReferenceValue()
465 referenceValue.referencedClass, in typedReferenceValue()
DReferenceValue.java291 public final ReferenceValue referenceValue() in referenceValue() method in ReferenceValue
298 return this.generalize(other.referenceValue()); in generalize()
DValue.java95 public ReferenceValue referenceValue() in referenceValue() method in Value
DDetailedArrayReferenceValue.java121 value.referenceValue() : in referenceArrayLoad()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DReferenceTypeDeserializer.java129 public abstract T referenceValue(Object contents); in referenceValue() method in ReferenceTypeDeserializer
199 return referenceValue(contents); in deserialize()
221 return referenceValue(contents); in deserialize()
251 return referenceValue(_valueTypeDeserializer.deserializeTypedFromAny(p, ctxt)); in deserializeWithType()
DAtomicReferenceDeserializer.java56 public AtomicReference<Object> referenceValue(Object contents) { in referenceValue() method in AtomicReferenceDeserializer
/external/deqp/framework/opengl/
DgluShaderLibrary.hpp114 int referenceValue; member
119 , referenceValue (0) // not used in RequiredCapability()
126 , referenceValue (referenceValue_) in RequiredCapability()
/external/proguard/src/proguard/optimize/
DMemberDescriptorSpecializer.java76 Clazz referencedClass = parameterValue.referenceValue().getReferencedClass(); in visitProgramField()
116 Clazz referencedClass = parameterValue.referenceValue().getReferencedClass(); in visitProgramMethod()
/external/deqp/modules/gles2/functional/
Des2fIntegerStateQueryTests.cpp1358 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()
Des2fFloatStateQueryTests.cpp56 const GLuint64 referenceValue = (GLint64)((f * double(0xFFFFFFFFULL) - 1) / 2); in expandGLFloatToInteger() local
57 return referenceValue; in expandGLFloatToInteger()
/external/deqp/modules/gles3/functional/
Des3fIntegerStateQueryTests.cpp1640 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 …]
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineExtendedDynamicStateTests.cpp2003 bool stencilPasses(vk::VkCompareOp op, deUint8 storedValue, deUint8 referenceValue) in stencilPasses() argument
2008 case vk::VK_COMPARE_OP_LESS: return (referenceValue < storedValue); in stencilPasses()
2009 case vk::VK_COMPARE_OP_EQUAL: return (referenceValue == storedValue); in stencilPasses()
2010 case vk::VK_COMPARE_OP_LESS_OR_EQUAL: return (referenceValue <= storedValue); in stencilPasses()
2011 case vk::VK_COMPARE_OP_GREATER: return (referenceValue > storedValue); in stencilPasses()
2012 case vk::VK_COMPARE_OP_GREATER_OR_EQUAL: return (referenceValue >= storedValue); in stencilPasses()
2020 deUint8 stencilResult(vk::VkStencilOp op, deUint8 storedValue, deUint8 referenceValue, deUint8 min,… in stencilResult() argument
2028 case vk::VK_STENCIL_OP_REPLACE: result = referenceValue; break; in stencilResult()
/external/deqp/modules/gles31/functional/
Des31fTextureBorderClampTests.cpp1131 …const tcu::Vec4 referenceValue = effectiveView.gatherOffsets(samplerParams.sampler, texCoord.x()… in verifyTextureGatherResult() local
1132 …const tcu::Vec4 referencePixel = referenceValue * samplerParams.colorScale + samplerParams.color… in verifyTextureGatherResult()
1136 reference.setPixel(px, py, tcu::toRGBAMasked(referenceValue, fbColormask)); in verifyTextureGatherResult()
1197 …const tcu::Vec4 referenceValue = effectiveView.gatherOffsetsCompare(samplerParams.sampler, refZ,… in verifyTextureGatherCmpResult() local
1200 reference.setPixel(px, py, tcu::toRGBAMasked(referenceValue, fbColormask)); in verifyTextureGatherCmpResult()
1202 if (tcu::boolAny(tcu::logicalAnd(colorMask, tcu::notEqual(referenceValue, resultValue)))) in verifyTextureGatherCmpResult()

12