HomeSort by relevance Sort by last modified time
    Searched refs:subValue (Results 1 - 25 of 38) sorted by null

1 2

  /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);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzFind.h 76 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems);
77 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;
325 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems)
331 if (value <= subValue)
334 value -= subValue;
341 UInt32 subValue = MatchFinder_GetSubValue(p);
342 MatchFinder_Normalize3(subValue, p->hash, p->numRefs);
343 MatchFinder_ReduceOffsets(p, subValue);
    [all...]
LzFindMt.c 193 UInt32 subValue = (mf->pos - mf->historySize - 1);
194 MatchFinder_ReduceOffsets(mf, subValue);
195 MatchFinder_Normalize3(subValue, mf->hash + mf->fixedHashSize, (size_t)mf->hashMask + 1);
401 UInt32 subValue = p->pos - p->cyclicBufferSize;
402 MatchFinder_Normalize3(subValue, p->son, (size_t)p->cyclicBufferSize * 2);
403 p->pos -= subValue;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzFind.h 76 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems);
77 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue);
LzFind.c 53 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue)
55 p->posLimit -= subValue;
56 p->pos -= subValue;
57 p->streamPos -= subValue;
327 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems)
333 if (value <= subValue)
336 value -= subValue;
343 UInt32 subValue = MatchFinder_GetSubValue(p);
344 MatchFinder_Normalize3(subValue, p->hash, p->numRefs);
345 MatchFinder_ReduceOffsets(p, subValue);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzFind.h 76 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems);
77 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue);
LzFind.c 53 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue)
55 p->posLimit -= subValue;
56 p->pos -= subValue;
57 p->streamPos -= subValue;
327 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems)
333 if (value <= subValue)
336 value -= subValue;
343 UInt32 subValue = MatchFinder_GetSubValue(p);
344 MatchFinder_Normalize3(subValue, p->hash, p->numRefs);
345 MatchFinder_ReduceOffsets(p, subValue);
    [all...]
  /external/lzma/C/
LzFind.h 76 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems);
77 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;
325 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems)
331 if (value <= subValue)
334 value -= subValue;
341 UInt32 subValue = MatchFinder_GetSubValue(p);
342 MatchFinder_Normalize3(subValue, p->hash, p->numRefs);
343 MatchFinder_ReduceOffsets(p, subValue);
    [all...]
LzFindMt.c 193 UInt32 subValue = (mf->pos - mf->historySize - 1);
194 MatchFinder_ReduceOffsets(mf, subValue);
195 MatchFinder_Normalize3(subValue, mf->hash + mf->fixedHashSize, (size_t)mf->hashMask + 1);
401 UInt32 subValue = p->pos - p->cyclicBufferSize;
402 MatchFinder_Normalize3(subValue, p->son, (size_t)p->cyclicBufferSize * 2);
403 p->pos -= subValue;
  /packages/apps/Contacts/src/com/android/contacts/model/
RawContact.java 128 for (Entity.NamedContentValues subValue : subValues) {
129 rawContact.addNamedDataItemValues(subValue.uri, subValue.values);
  /packages/apps/Dialer/java/com/android/contacts/common/model/
RawContact.java 91 for (Entity.NamedContentValues subValue : subValues) {
92 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     [all...]
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0/
intellij-core-26.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0-alpha4/
intellij-core-26.0.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0-alpha5/
intellij-core-26.0.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0-alpha6/
intellij-core-26.0.0-alpha6.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0-alpha7/
intellij-core-26.0.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0-alpha9/
intellij-core-26.0.0-alpha9.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0-beta1/
intellij-core-26.0.0-beta1.jar 

Completed in 238 milliseconds

1 2