Home
last modified time | relevance | path

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

/external/proguard/src/proguard/classfile/util/
DInstructionSequenceMatcher.java70 private final long[] matchedConstantFlags; field in InstructionSequenceMatcher
93 matchedConstantFlags = new long[(patternConstants.length + 63) / 64]; in InstructionSequenceMatcher()
106 Arrays.fill(matchedConstantFlags, 0L); in reset()
636 matchedConstantFlags[constantIndex / 64] |= 1L << constantIndex; in setMatchingConstant()
645 return (matchedConstantFlags[constantIndex / 64] & (1L << constantIndex)) != 0; in isMatchingConstantIndex()