/external/lzma/Java/SevenZip/Compression/RangeCoder/ |
Encoder.java | 14 long Low;
34 Low = 0;
53 int LowHi = (int)(Low >>> 32);
54 if (LowHi != 0 || Low < 0xFF000000L)
64 _cache = (((int)Low) >>> 24);
67 Low = (Low & 0xFFFFFF) << 8;
76 Low += Range;
113 Low += (newBound & 0xFFFFFFFFL);
|
/external/lzma/CPP/7zip/Compress/ |
RangeCoder.h | 21 UInt64 Low;
30 Low = 0;
38 // Low += 1;
49 Low += start * (Range /= total);
60 if ((UInt32)Low < (UInt32)0xFF000000 || (int)(Low >> 32) != 0)
65 Stream.WriteByte((Byte)(temp + (Byte)(Low >> 32)));
69 _cache = (Byte)((UInt32)Low >> 24);
72 Low = (UInt32)Low << 8; [all...] |
RangeCoderBit.h | 60 encoder->Low += newBound;
|
/external/clang/test/Index/ |
complete-type-factors.m | 8 Low, 32 [A method:Red priority:Low]; 44 // CHECK-CC1: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (32) 59 // CHECK-CC2: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (65) 75 // CHECK-CC3: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (16) 91 // CHECK-CC4: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (65) 109 // CHECK-CC6: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (65) 123 // CHECK-CC7: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (65) 135 // CHECK-CC8: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (16)
|
/external/lzma/CS/7zip/Compress/RangeCoder/ |
RangeCoder.cs | 11 public UInt64 Low;
32 Low = 0;
56 Low += start * (Range /= total);
67 if ((uint)Low < (uint)0xFF000000 || (uint)(Low >> 32) == 1)
72 Stream.WriteByte((byte)(temp + (Low >> 32)));
76 _cache = (byte)(((uint)Low) >> 24);
79 Low = ((uint)Low) << 8;
88 Low += Range; [all...] |
/external/llvm/include/llvm/Support/ |
IntegersSubset.h | 181 IntType Low; 192 Low(RHS.Low), High(RHS.High), 195 Low(C), High(C), IsEmpty(false), IsSingleNumber(true) {} 197 IntRange(const IntType &L, const IntType &H) : Low(L), High(H), 198 IsEmpty(false), IsSingleNumber(Low == High) {} 205 return Low; 215 if (Low == RHS.Low) { 220 if (Low < RHS.Low [all...] |
IntegersSubsetMapping.h | 318 const IntTy *Low = &OldItems.begin()->first.getLow(); 330 RangeEx R(*Low, *High, Weight); 332 Low = &j->first.getLow(); 338 RangeEx R(*Low, *High, Weight); 351 void add(const IntTy &Low, const IntTy &High, SuccessorClass *S = 0) { 352 RangeTy R(Low, High);
|
/external/lzma/C/ |
Ppmd7Enc.c | 11 p->Low = 0;
19 if ((UInt32)p->Low < (UInt32)0xFF000000 || (unsigned)(p->Low >> 32) != 0)
24 p->Stream->Write(p->Stream, (Byte)(temp + (Byte)(p->Low >> 32)));
28 p->Cache = (Byte)((UInt32)p->Low >> 24);
31 p->Low = (UInt32)p->Low << 8;
36 p->Low += start * (p->Range /= total);
58 p->Low += newBound;
162 UInt32 low = sum; local [all...] |
/external/llvm/lib/Transforms/Utils/ |
LowerSwitch.cpp | 50 Constant* Low; 54 CaseRange(Constant *low = 0, Constant *high = 0, BasicBlock *bb = 0) : 55 Low(low), High(high), BB(bb) { } 108 O << *B->Low << " -" << *B->High; 135 << cast<ConstantInt>(Pivot.Low)->getValue() << " -" 151 Val, Pivot.Low, "Pivot"); 174 if (Leaf.Low == Leaf.High) { 177 Leaf.Low, "SwitchLeaf"); 180 if (cast<ConstantInt>(Leaf.Low)->isMinValue(true /*isSigned*/)) [all...] |
/external/libvpx/libvpx/test/ |
register_state_check.h | 26 return (lhs.Low == rhs.Low && lhs.High == rhs.High);
|
/external/llvm/unittests/ADT/ |
VariadicFunctionTest.cpp | 88 void CountInRangeImpl(int *NumInRange, int Low, int High, 92 if (Low <= *Args[i] && *Args[i] <= High)
|
/frameworks/compile/slang/BitWriter_2_9/ |
BitcodeWriterPass.cpp | 79 const APInt &Low = r.getLow(); 82 for (APInt V = Low; V != High; V++) {
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
BitcodeWriterPass.cpp | 79 const APInt &Low = r.getLow(); 82 for (APInt V = Low; V != High; V++) {
|
/external/llvm/lib/Transforms/IPO/ |
ArgumentPromotion.cpp | 251 std::set<ArgPromotion::IndicesVector>::iterator Low; 252 Low = Set.upper_bound(Indices); 253 if (Low != Set.begin()) 254 Low--; 255 // Low is now the last element smaller than or equal to Indices. This means 260 return Low != Set.end() && IsPrefix(*Low, Indices); 270 std::set<ArgPromotion::IndicesVector>::iterator Low; 271 Low = Safe.upper_bound(ToMark); 273 if (Low != Safe.begin() [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/x86/ |
mul.pl | 11 $Low="eax";
|
mul_add.pl | 11 $Low="eax";
|
/external/openssl/crypto/bn/asm/x86/ |
mul.pl | 11 $Low="eax";
|
mul_add.pl | 11 $Low="eax";
|
/external/chromium_org/third_party/skia/src/sfnt/ |
SkPanose.h | 94 ((Low, 4)) 281 ((Low, 4)) 353 ((Low, 3)) 422 ((Low, 4))
|
/external/jmonkeyengine/engine/src/test/jme3test/network/ |
TestSerialization.java | 68 Low;
|
/external/skia/src/sfnt/ |
SkPanose.h | 94 ((Low, 4)) 281 ((Low, 4)) 353 ((Low, 3)) 422 ((Low, 4))
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/ |
omxVCM4P2_DecodePadMV_PVOP_s.s | 107 Low RN 2 293 RSB Low,High,#0 ;// Low = -32*scaleFactor 298 CMP diffMVdx,Low ;// If diffMVdx<Low 312 CMP diffMVdx,Low 313 ADDLT diffMVdx,diffMVdx,Range ;// If diffMVdy<Low diffMVdy+=Range
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/ |
omxVCM4P2_DecodePadMV_PVOP_s.s | 107 Low RN 2 293 RSB Low,High,#0 ;// Low = -32*scaleFactor 298 CMP diffMVdx,Low ;// If diffMVdx<Low 312 CMP diffMVdx,Low 313 ADDLT diffMVdx,diffMVdx,Range ;// If diffMVdy<Low diffMVdy+=Range
|
/external/llvm/lib/IR/ |
Metadata.cpp | 425 static bool tryMergeRange(SmallVectorImpl<Value *> &EndPoints, ConstantInt *Low, 427 ConstantRange NewRange(Low->getValue(), High->getValue()); 442 static void addRange(SmallVectorImpl<Value *> &EndPoints, ConstantInt *Low, 445 if (tryMergeRange(EndPoints, Low, High)) 448 EndPoints.push_back(Low);
|
/external/chromium_org/third_party/lzma_sdk/ |
7z.h | 90 UInt32 Low;
|