HomeSort by relevance Sort by last modified time
    Searched defs:subValue (Results 1 - 8 of 8) sorted by null

  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestCldrFactory.java 123 String subValue = subset.getStringValue(xpath);
125 if (!Objects.equal(subValue, superValue)) {
  /external/lzma/Java/SevenZip/Compression/LZ/
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);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
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.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.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.c 51 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue)
53 p->posLimit -= subValue;
54 p->pos -= subValue;
55 p->streamPos -= subValue;
350 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems)
356 if (value <= subValue)
359 value -= subValue;
366 UInt32 subValue = MatchFinder_GetSubValue(p);
367 MatchFinder_Normalize3(subValue, p->hash, p->numRefs);
368 MatchFinder_ReduceOffsets(p, subValue);
    [all...]
LzFindMt.c 198 UInt32 subValue = (mf->pos - mf->historySize - 1);
199 MatchFinder_ReduceOffsets(mf, subValue);
200 MatchFinder_Normalize3(subValue, mf->hash + mf->fixedHashSize, (size_t)mf->hashMask + 1);
439 UInt32 subValue = p->pos - p->cyclicBufferSize;
440 MatchFinder_Normalize3(subValue, p->son, (size_t)p->cyclicBufferSize * 2);
441 p->pos -= subValue;

Completed in 1328 milliseconds