Home
last modified time | relevance | path

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

/external/lzma/Java/SevenZip/Compression/LZ/
DInWindow.java124 public void ReduceOffsets(int subValue) in ReduceOffsets() argument
126 _bufferOffset += subValue; in ReduceOffsets()
127 _posLimit -= subValue; in ReduceOffsets()
128 _pos -= subValue; in ReduceOffsets()
129 _streamPos -= subValue; in ReduceOffsets()
DBinTree.java344 void NormalizeLinks(int[] items, int numItems, int subValue) in NormalizeLinks() argument
349 if (value <= subValue) in NormalizeLinks()
352 value -= subValue; in NormalizeLinks()
359 int subValue = _pos - _cyclicBufferSize; in Normalize() local
360 NormalizeLinks(_son, _cyclicBufferSize * 2, subValue); in Normalize()
361 NormalizeLinks(_hash, _hashSizeSum, subValue); in Normalize()
362 ReduceOffsets(subValue); in Normalize()
/external/lzma/CS/7zip/Compress/LZ/
DLzInWindow.cs124 public void ReduceOffsets(Int32 subValue) in ReduceOffsets() argument
126 _bufferOffset += (UInt32)subValue; in ReduceOffsets()
127 _posLimit -= (UInt32)subValue; in ReduceOffsets()
128 _pos -= (UInt32)subValue; in ReduceOffsets()
129 _streamPos -= (UInt32)subValue; in ReduceOffsets()
DLzBinTree.cs344 void NormalizeLinks(UInt32[] items, UInt32 numItems, UInt32 subValue) in NormalizeLinks() argument
349 if (value <= subValue) in NormalizeLinks()
352 value -= subValue; in NormalizeLinks()
359 UInt32 subValue = _pos - _cyclicBufferSize; in Normalize()
360 NormalizeLinks(_son, _cyclicBufferSize * 2, subValue); in Normalize()
361 NormalizeLinks(_hash, _hashSizeSum, subValue); in Normalize()
362 ReduceOffsets((Int32)subValue); in Normalize()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/builder/
DBuilderWithUnwrappedSingleArray2608Test.java45 public String subValue; field in BuilderWithUnwrappedSingleArray2608Test.POJOValue2608
48 subValue = s; in POJOValue2608()
55 public POJOValueBuilder subValue(String s) { in subValue() method in BuilderWithUnwrappedSingleArray2608Test.POJOValue2608.POJOValueBuilder
/external/lzma/C/
DLzFind.c51 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) in MatchFinder_ReduceOffsets() argument
53 p->posLimit -= subValue; in MatchFinder_ReduceOffsets()
54 p->pos -= subValue; in MatchFinder_ReduceOffsets()
55 p->streamPos -= subValue; in MatchFinder_ReduceOffsets()
350 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems) in MatchFinder_Normalize3() argument
356 if (value <= subValue) in MatchFinder_Normalize3()
359 value -= subValue; in MatchFinder_Normalize3()
366 UInt32 subValue = MatchFinder_GetSubValue(p); in MatchFinder_Normalize() local
367 MatchFinder_Normalize3(subValue, p->hash, p->numRefs); in MatchFinder_Normalize()
368 MatchFinder_ReduceOffsets(p, subValue); in MatchFinder_Normalize()
DLzFind.h78 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems);
79 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue);
DLzFindMt.c198 UInt32 subValue = (mf->pos - mf->historySize - 1); in HashThreadFunc() local
199 MatchFinder_ReduceOffsets(mf, subValue); in HashThreadFunc()
200 MatchFinder_Normalize3(subValue, mf->hash + mf->fixedHashSize, (size_t)mf->hashMask + 1); in HashThreadFunc()
439 UInt32 subValue = p->pos - p->cyclicBufferSize; in BtFillBlock() local
440 MatchFinder_Normalize3(subValue, p->son, (size_t)p->cyclicBufferSize * 2); in BtFillBlock()
441 p->pos -= subValue; in BtFillBlock()
/external/python/pyasn1/pyasn1/codec/native/
Dencoder.py82 for idx, (key, subValue) in enumerate(value.items()):
85 substrate[key] = encodeFun(subValue, **options)
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestCldrFactory.java122 String subValue = subset.getStringValue(xpath); in getUncontainedPath() local
124 if (!Objects.equal(subValue, superValue)) { in getUncontainedPath()
/external/python/pyasn1/pyasn1/type/
Duniv.py1888 for subIdx, subValue in enumerate(value):
1890 startIdx + subIdx, subValue, verifyConstraints,