Searched defs:subValue (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/interpolation/
H A DLengthStyleInterpolation.cpp53 const InterpolableNumber *subValue = toInterpolableNumber(list->get(position)); local
54 if (subValue->value()) {
57 next = CSSCalcValue::createExpressionNode(previous, CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(subValue->value(), toUnitType(position))), CalcAdd);
59 next = CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(subValue->value(), toUnitType(position)));
74 const InterpolableNumber* subValue = toInterpolableNumber(listValue->get(i)); local
75 if (subValue->value()) {
85 const InterpolableNumber* subValue = toInterpolableNumber(listValue->get(i)); local
86 double value = subValue->value();
/external/lzma/CS/7zip/Compress/LZ/
H A DLzInWindow.cs124 public void ReduceOffsets(Int32 subValue) argument
126 _bufferOffset += (UInt32)subValue;
127 _posLimit -= (UInt32)subValue;
128 _pos -= (UInt32)subValue;
129 _streamPos -= (UInt32)subValue;
H A DLzBinTree.cs344 void NormalizeLinks(UInt32[] items, UInt32 numItems, UInt32 subValue) argument
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/lzma/Java/SevenZip/Compression/LZ/
H A DInWindow.java124 public void ReduceOffsets(int subValue) argument
126 _bufferOffset += subValue;
127 _posLimit -= subValue;
128 _pos -= subValue;
129 _streamPos -= subValue;
H A DBinTree.java344 void NormalizeLinks(int[] items, int numItems, int subValue) argument
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/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DXSSAuditor.cpp611 String subValue = semicolonSeparatedValueContainingJavaScriptURL(String(attribute.value)); local
612 if (!subValue.isEmpty()) {
615 && isContainedInRequest(canonicalize(subValue, ScriptLikeAttributeTruncation));
/external/chromium_org/third_party/lzma_sdk/
H A DLzFind.c50 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) argument
52 p->posLimit -= subValue;
53 p->pos -= subValue;
54 p->streamPos -= subValue;
290 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems) argument
296 if (value <= subValue)
299 value -= subValue;
306 UInt32 subValue = MatchFinder_GetSubValue(p); local
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/
H A DLzFind.c51 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) argument
53 p->posLimit -= subValue;
54 p->pos -= subValue;
55 p->streamPos -= subValue;
291 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems) argument
297 if (value <= subValue)
300 value -= subValue;
307 UInt32 subValue = MatchFinder_GetSubValue(p); local
308 MatchFinder_Normalize3(subValue, p->hash, p->hashSizeSum + p->numSons);
309 MatchFinder_ReduceOffsets(p, subValue);
[all...]
/external/lzma/C/
H A DLzFind.c50 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) argument
52 p->posLimit -= subValue;
53 p->pos -= subValue;
54 p->streamPos -= subValue;
290 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems) argument
296 if (value <= subValue)
299 value -= subValue;
306 UInt32 subValue = MatchFinder_GetSubValue(p); local
307 MatchFinder_Normalize3(subValue, p->hash, p->hashSizeSum + p->numSons);
308 MatchFinder_ReduceOffsets(p, subValue);
[all...]
H A DLzFindMt.c191 UInt32 subValue = (mf->pos - mf->historySize - 1); local
192 MatchFinder_ReduceOffsets(mf, subValue);
193 MatchFinder_Normalize3(subValue, mf->hash + mf->fixedHashSize, mf->hashMask + 1);
393 UInt32 subValue = p->pos - p->cyclicBufferSize; local
394 MatchFinder_Normalize3(subValue, p->son, p->cyclicBufferSize * 2);
395 p->pos -= subValue;

Completed in 108 milliseconds