/external/lzma/Java/SevenZip/Compression/LZ/ |
D | InWindow.java | 124 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()
|
D | BinTree.java | 344 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/ |
D | LzInWindow.cs | 124 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()
|
D | LzBinTree.cs | 344 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/ |
D | BuilderWithUnwrappedSingleArray2608Test.java | 45 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/ |
D | LzFind.c | 51 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()
|
D | LzFind.h | 78 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems); 79 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue);
|
D | LzFindMt.c | 198 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/ |
D | encoder.py | 82 for idx, (key, subValue) in enumerate(value.items()): 85 substrate[key] = encodeFun(subValue, **options)
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestCldrFactory.java | 122 String subValue = subset.getStringValue(xpath); in getUncontainedPath() local 124 if (!Objects.equal(subValue, superValue)) { in getUncontainedPath()
|
/external/python/pyasn1/pyasn1/type/ |
D | univ.py | 1888 for subIdx, subValue in enumerate(value): 1890 startIdx + subIdx, subValue, verifyConstraints,
|