Home
last modified time | relevance | path

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

/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/lz77support/
DParametersTest.java29 Parameters p = newParameters(128); in defaultConstructor()
39 Parameters p = newParameters(128, 2, 3, 4, 5); in minBackReferenceLengthIsAtLeastThree()
45 Parameters p = newParameters(128, 2, 2, 4, 5); in maxBackReferenceLengthIsMinBackReferenceLengthWhenSmallerThanMinBackReferenceLength()
62 Parameters p = newParameters(128, 2, 3, 4, 5); in maxBackReferenceLengthIsMinBackReferenceLengthIfBothAreEqual()
68 Parameters p = newParameters(128, 2, 3, 0, 5); in maxOffsetIsWindowSizeMinus1IfSetTo0()
74 Parameters p = newParameters(128, 2, 3, -1, 5); in maxOffsetIsWindowSizeMinus1IfSetToANegativeValue()
80 Parameters p = newParameters(128, 2, 3, 129, 5); in maxOffsetIsWindowSizeMinus1IfBiggerThanWindowSize()
86 Parameters p = newParameters(128, 2, 3, 4, 0); in maxLiteralLengthIsWindowSizeIfSetTo0()
92 Parameters p = newParameters(128, 2, 3, 0, -1); in maxLiteralLengthIsWindowSizeIfSetToANegativeValue()
98 Parameters p = newParameters(128, 2, 3, 0, 259); in maxLiteralLengthIsWindowSizeIfSetToAValueTooBigToHoldInSlidingWindow()
[all …]
DLZ77CompressorTest.java95 List<LZ77Compressor.Block> blocks = compress(newParameters(128), ONE_TO_TEN); in nonCompressableWithLengthSmallerThanLiteralMax()
102 List<LZ77Compressor.Block> blocks = compress(newParameters(8), ONE_TO_TEN); in nonCompressableWithLengthGreaterThanLiteralMaxButLessThanTwiceWindowSize()
110 List<LZ77Compressor.Block> blocks = compress(newParameters(4), ONE_TO_TEN); in nonCompressableWithLengthThatForcesWindowSlide()
119 List<LZ77Compressor.Block> blocks = compress(newParameters(8), stagger(ONE_TO_TEN)); in nonCompressableSentAsSingleBytes()
128 List<LZ77Compressor.Block> blocks = compress(newParameters(128), BLA); in blaExampleWithFullArrayAvailableForCompression()
137 List<LZ77Compressor.Block> blocks = compress(newParameters(128, 3, 5, 0, 0), BLA); in blaExampleWithShorterBackReferenceLength()
149 List<LZ77Compressor.Block> blocks = compress(newParameters(8), BLA); in blaExampleSmallerWindowSize()
160 List<LZ77Compressor.Block> blocks = compress(newParameters(128), stagger(BLA)); in blaExampleWithSingleByteWrites()
174 List<LZ77Compressor.Block> blocks = compress(newParameters(1024), SAM); in samIAmExampleWithFullArrayAvailableForCompression()
201 LZ77Compressor c = new LZ77Compressor(newParameters(128), new LZ77Compressor.Callback() { in blaExampleWithPrefill()
[all …]
/external/autotest/frontend/client/src/autotest/tko/
DConditionTabView.java13 protected void checkForHistoryChanges(Map<String, String> newParameters) { in checkForHistoryChanges() argument
14 if (!getHistoryArguments().equals(newParameters)) { in checkForHistoryChanges()
/external/proguard/src/proguard/classfile/editor/
DVariableRemapper.java77 ParameterInfo[] newParameters = in visitMethodParametersAttribute() local
82 newParameters[remapVariable(index)] = oldParameters[index]; in visitMethodParametersAttribute()
85 methodParametersAttribute.parameters = newParameters; in visitMethodParametersAttribute()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/snappy/
DSnappyRoundtripTest.java147 roundTripTest(fs.toByteArray(), newParameters(1 << 17, 4, 64, 1 << 17 - 1, 1 << 17 - 1)); in tryReallyBigOffset()
173 roundTripTest(f, newParameters(1 << 18, 4, 64, 1 << 16 - 1, 1 << 18 - 1)); in tryReallyLongLiterals()
176 …private static Parameters newParameters(int windowSize, int minBackReferenceLength, int maxBackRef… in newParameters() method in SnappyRoundtripTest
/external/deqp/external/vulkancts/modules/vulkan/multiview/
DvktMultiViewRenderTests.cpp555 TestParameters newParameters = parameters; in fillMissingParameters() local
556 newParameters.extent.depth = multiviewProperties.maxMultiviewViewCount; in fillMissingParameters()
561 newParameters.viewMasks = viewMasks; in fillMissingParameters()
563 return newParameters; in fillMissingParameters()