/external/lzma/Java/SevenZip/Compression/LZ/ |
InWindow.java | 124 public void ReduceOffsets(int subValue)
126 _bufferOffset += subValue;
127 _posLimit -= subValue;
128 _pos -= subValue;
129 _streamPos -= subValue;
|
BinTree.java | 344 void NormalizeLinks(int[] items, int numItems, int subValue)
349 if (value <= subValue)
352 value -= subValue;
359 int subValue = _pos - _cyclicBufferSize;
360 NormalizeLinks(_son, _cyclicBufferSize * 2, subValue);
361 NormalizeLinks(_hash, _hashSizeSum, subValue);
362 ReduceOffsets(subValue);
|
/external/lzma/CS/7zip/Compress/LZ/ |
LzInWindow.cs | 124 public void ReduceOffsets(Int32 subValue)
126 _bufferOffset += (UInt32)subValue;
127 _posLimit -= (UInt32)subValue;
128 _pos -= (UInt32)subValue;
129 _streamPos -= (UInt32)subValue;
|
LzBinTree.cs | 344 void NormalizeLinks(UInt32[] items, UInt32 numItems, UInt32 subValue)
349 if (value <= subValue)
352 value -= subValue;
359 UInt32 subValue = _pos - _cyclicBufferSize;
360 NormalizeLinks(_son, _cyclicBufferSize * 2, subValue);
361 NormalizeLinks(_hash, _hashSizeSum, subValue);
362 ReduceOffsets((Int32)subValue);
|
/external/chromium_org/third_party/lzma_sdk/ |
LzFind.h | 73 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems); 74 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue);
|
LzFind.c | 50 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) 52 p->posLimit -= subValue; 53 p->pos -= subValue; 54 p->streamPos -= subValue; 290 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems) 296 if (value <= subValue) 299 value -= subValue; 306 UInt32 subValue = MatchFinder_GetSubValue(p); 307 MatchFinder_Normalize3(subValue, p->hash, p->hashSizeSum + p->numSons); 308 MatchFinder_ReduceOffsets(p, subValue); [all...] |
/external/chromium_org/third_party/ots/third_party/lzma_sdk/ |
LzFind.h | 74 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems); 75 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue);
|
LzFind.c | 51 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) 53 p->posLimit -= subValue; 54 p->pos -= subValue; 55 p->streamPos -= subValue; 291 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems) 297 if (value <= subValue) 300 value -= subValue; 307 UInt32 subValue = MatchFinder_GetSubValue(p); 308 MatchFinder_Normalize3(subValue, p->hash, p->hashSizeSum + p->numSons); 309 MatchFinder_ReduceOffsets(p, subValue); [all...] |
/external/lzma/C/ |
LzFind.h | 73 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems);
74 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue);
|
LzFind.c | 50 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue)
52 p->posLimit -= subValue;
53 p->pos -= subValue;
54 p->streamPos -= subValue;
290 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems)
296 if (value <= subValue)
299 value -= subValue;
306 UInt32 subValue = MatchFinder_GetSubValue(p);
307 MatchFinder_Normalize3(subValue, p->hash, p->hashSizeSum + p->numSons);
308 MatchFinder_ReduceOffsets(p, subValue);
[all...] |
LzFindMt.c | 191 UInt32 subValue = (mf->pos - mf->historySize - 1);
192 MatchFinder_ReduceOffsets(mf, subValue);
193 MatchFinder_Normalize3(subValue, mf->hash + mf->fixedHashSize, mf->hashMask + 1);
393 UInt32 subValue = p->pos - p->cyclicBufferSize;
394 MatchFinder_Normalize3(subValue, p->son, p->cyclicBufferSize * 2);
395 p->pos -= subValue;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
RawContact.java | 128 for (Entity.NamedContentValues subValue : subValues) { 129 rawContact.addNamedDataItemValues(subValue.uri, subValue.values);
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/ |
ContactFragment.java | 359 for (NamedContentValues subValue : entity.getSubValues()) { 360 final ContentValues entryValues = subValue.values;
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
BaseContactsProvider2Test.java | 752 for (Entity.NamedContentValues subValue : subValues) { 753 result[i] = subValue.values; [all...] |