/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/chromium_org/content/browser/power_profiler/ |
power_data_provider.h | 27 Low
|
power_profiler_service.cc | 56 case PowerDataProvider::Low: 57 return "Low";
|
/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...] |
RangeCoderBit.cs | 37 encoder.Low += newBound;
|
/external/llvm/lib/Transforms/Utils/ |
LowerSwitch.cpp | 54 Constant* Low; 58 CaseRange(Constant *low = nullptr, Constant *high = nullptr, 60 Low(low), High(high), BB(bb) { } 83 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); 127 O << *B->Low << " -" << *B->High; 151 if (Begin->Low == LowerBound && Begin->High == UpperBound) { 165 << cast<ConstantInt>(Pivot.Low)->getValue() 172 ConstantInt *NewLowerBound = cast<ConstantInt>(Pivot.Low); 216 Val, Pivot.Low, "Pivot") [all...] |
/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...] |
7z.h | 90 UInt32 Low;
|
Ppmd7.h | 126 UInt64 Low;
|
/external/libvpx/libvpx/test/ |
register_state_check.h | 27 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)
|
/external/llvm/lib/Transforms/IPO/ |
ArgumentPromotion.cpp | 260 std::set<ArgPromotion::IndicesVector>::iterator Low; 261 Low = Set.upper_bound(Indices); 262 if (Low != Set.begin()) 263 Low--; 264 // Low is now the last element smaller than or equal to Indices. This means 269 return Low != Set.end() && IsPrefix(*Low, Indices); 279 std::set<ArgPromotion::IndicesVector>::iterator Low; 280 Low = Safe.upper_bound(ToMark); 282 if (Low != Safe.begin() [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/test/ |
register_state_check.h | 41 return (lhs.Low == rhs.Low && lhs.High == rhs.High);
|
/external/openssl/crypto/bn/asm/x86/ |
mul.pl | 11 $Low="eax";
|
mul_add.pl | 11 $Low="eax";
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGBuilder.h | 133 const Constant *Low; 138 Case() : Low(nullptr), High(nullptr), BB(nullptr), ExtraWeight(0) { } 139 Case(const Constant *low, const Constant *high, MachineBasicBlock *bb, 140 uint32_t extraweight) : Low(low), High(high), BB(bb), 145 const APInt &rLow = cast<ConstantInt>(Low)->getValue(); 190 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High)); 191 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
|
/external/chromium_org/chrome/browser/resources/cryptotoken/ |
gnubbydevice.js | 6 * @fileoverview Interface for representing a low-level gnubby device. 11 * Low level gnubby 'driver'. One per physical USB device. 42 // Low-level error codes. 82 /** Destroys this low-level device instance. */
|
/external/chromium_org/third_party/skia/src/sfnt/ |
SkPanose.h | 94 ((Low, 4)) 281 ((Low, 4)) 353 ((Low, 3)) 422 ((Low, 4))
|
/external/llvm/lib/IR/ |
Metadata.cpp | 428 static bool tryMergeRange(SmallVectorImpl<Value *> &EndPoints, ConstantInt *Low, 430 ConstantRange NewRange(Low->getValue(), High->getValue()); 445 static void addRange(SmallVectorImpl<Value *> &EndPoints, ConstantInt *Low, 448 if (tryMergeRange(EndPoints, Low, High)) 451 EndPoints.push_back(Low);
|
/external/chromium_org/third_party/lzma_sdk/ |
7z.h | 90 UInt32 Low;
|
/external/llvm/include/llvm/Support/ |
MathExtras.h | 259 /// Lo_32 - This function returns the low 32 bits of a 64 bit value. 264 /// Make_64 - This functions makes a 64-bit integer from a high / low pair of 266 inline uint64_t Make_64(uint32_t High, uint32_t Low) { 267 return ((uint64_t)High << 32) | (uint64_t)Low;
|
/external/chromium_org/third_party/boringssl/src/crypto/bn/asm/ |
bn-586.pl | 139 $Low="eax"; 255 $Low="eax";
|