Searched defs:Range (Results 1 - 25 of 188) sorted by last modified time

12345678

/external/valgrind/main/coregrind/
H A Dm_rangemap.c47 Range; typedef in typeref:struct:__anon32560
78 rm->ranges = VG_(newXA)( alloc_fn, cc, free_fn, sizeof(Range) );
81 Range r;
112 Range* rng = VG_(indexXA)(rm->ranges, i);
122 Range* rng = (Range*)VG_(indexXA)(rm->ranges, i);
138 Range* rng = (Range*)VG_(indexXA)(rm->ranges, ix);
151 Range* rng0 = VG_(indexXA)(ranges, i+0);
152 Range* rng
[all...]
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfFunctionCommonDictionary_autogen.cpp35 SkPdfArray* SkPdfFunctionCommonDictionary::Range(SkPdfNativeDoc* doc) { function in class:SkPdfFunctionCommonDictionary
36 SkPdfNativeObject* ret = get("Range", "");
44 return get("Range", "") != NULL;
H A DSkPdfIccProfileStreamDictionary_autogen.cpp55 SkPdfArray* SkPdfIccProfileStreamDictionary::Range(SkPdfNativeDoc* doc) { function in class:SkPdfIccProfileStreamDictionary
56 SkPdfNativeObject* ret = get("Range", "");
64 return get("Range", "") != NULL;
H A DSkPdfLabColorSpaceDictionary_autogen.cpp35 SkPdfArray* SkPdfLabColorSpaceDictionary::Range(SkPdfNativeDoc* doc) { function in class:SkPdfLabColorSpaceDictionary
36 SkPdfNativeObject* ret = get("Range", "");
44 return get("Range", "") != NULL;
/external/qemu/include/qemu/
H A Drange.h15 struct Range { struct
20 static inline void range_extend(Range *range, Range *extend_by)
H A Dtypedefs.h71 typedef struct Range Range; typedef in typeref:struct:Range
/external/protobuf/gtest/include/gtest/
H A Dgtest-param-test.h82 // Range(begin, end [, step]) - Yields values {begin, begin+step,
182 // Range() returns generators providing sequences of values in a range.
185 // Range(start, end)
188 // Range(start, end, step)
192 // * The generated sequences never include end. For example, Range(1, 5)
193 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
206 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) { function in namespace:testing
212 internal::ParamGenerator<T> Range(T start, T end) { function in namespace:testing
213 return Range(start, end, 1);
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/pdfium/core/src/fpdfapi/fpdf_cmaps/
H A Dcmap_int.h10 typedef enum { None, Single, Range, Reverse } MapType; enumerator in enum:FXCMAP_CMap::__anon28559
/external/pdfium/core/src/fpdfdoc/
H A Dpdf_vt.h189 FX_FLOAT Range() const function in struct:CPVT_FloatRange
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.h68 struct tgsi_declaration_range Range; member in struct:tgsi_full_declaration
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-param-test.h86 // Range(begin, end [, step]) - Yields values {begin, begin+step,
218 // Range() returns generators providing sequences of values in a range.
221 // Range(start, end)
224 // Range(start, end, step)
228 // * The generated sequences never include end. For example, Range(1, 5)
229 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
242 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) { function in namespace:testing
248 internal::ParamGenerator<T> Range(T start, T end) { function in namespace:testing
249 return Range(start, end, 1);
/external/llvm/utils/FileCheck/
H A DFileCheck.cpp968 static unsigned CountNumNewlinesBetween(StringRef Range, argument
973 Range = Range.substr(Range.find_first_of("\n\r"));
974 if (Range.empty()) return NumNewLines;
979 if (Range.size() > 1 &&
980 (Range[1] == '\n' || Range[1] == '\r') &&
981 (Range[0] != Range[
[all...]
/external/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp620 static const char *getMinimalTypeForRange(uint64_t Range) { argument
621 assert(Range < 0xFFFFFFFFULL && "Enum too large");
622 if (Range > 0xFFFF)
624 if (Range > 0xFF)
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-param-test.h86 // Range(begin, end [, step]) - Yields values {begin, begin+step,
217 // Range() returns generators providing sequences of values in a range.
220 // Range(start, end)
223 // Range(start, end, step)
227 // * The generated sequences never include end. For example, Range(1, 5)
228 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
241 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) { function in namespace:testing
247 internal::ParamGenerator<T> Range(T start, T end) { function in namespace:testing
248 return Range(start, end, 1);
/external/lzma/C/
H A DPpmd7.h110 UInt32 Range; member in struct:__anon26724
127 UInt32 Range; member in struct:__anon26725
/external/lzma/CPP/7zip/Compress/
H A DRangeCoder.h22 UInt32 Range; member in class:NCompress::NRangeCoder::CEncoder
31 Range = 0xFFFFFFFF;
49 Low += start * (Range /= total);
50 Range *= size;
51 while (Range < kTopValue)
53 Range <<= 8;
79 Range >>= 1;
80 Low += Range & (0 - ((value >> numBits) & 1));
81 if (Range < kTopValue)
83 Range <<
113 UInt32 Range; member in class:NCompress::NRangeCoder::CDecoder
[all...]
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoder.cs12 public uint Range; field in class:SevenZip.Compression.RangeCoder.Encoder
33 Range = 0xFFFFFFFF;
56 Low += start * (Range /= total);
57 Range *= size;
58 while (Range < kTopValue)
60 Range <<= 8;
86 Range >>= 1;
88 Low += Range;
89 if (Range < kTopValue)
91 Range <<
125 public uint Range; field in class:SevenZip.Compression.RangeCoder.Decoder
[all...]
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DDecoder.java12 int Range; field in class:Decoder
30 Range = -1;
40 Range >>>= 1;
41 int t = ((Code - Range) >>> 31);
42 Code -= Range & (t - 1);
45 if ((Range & kTopMask) == 0)
48 Range <<= 8;
57 int newBound = (Range >>> kNumBitModelTotalBits) * prob;
60 Range = newBound;
62 if ((Range
[all...]
H A DEncoder.java15 int Range; field in class:Encoder
35 Range = -1;
74 Range >>>= 1;
76 Low += Range;
77 if ((Range & Encoder.kTopMask) == 0)
79 Range <<= 8;
105 int newBound = (Range >>> kNumBitModelTotalBits) * prob;
108 Range = newBound;
114 Range -= newBound;
117 if ((Range
[all...]
/external/llvm/include/llvm/Support/
H A DSourceMgr.h195 SMRange Range; member in class:llvm::SMFixIt
202 : Range(Loc, Loc), Text(Insertion.str()) {
208 : Range(R), Text(Replacement.str()) {
213 SMRange getRange() const { return Range; }
216 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
217 return Range.Start.getPointer() < Other.Range.Start.getPointer();
218 if (Range.End.getPointer() != Other.Range
[all...]
H A DUnicodeCharRanges.h32 inline bool operator<(uint32_t Value, UnicodeCharRange Range) { argument
33 return Value < Range.Lower;
35 inline bool operator<(UnicodeCharRange Range, uint32_t Value) { argument
36 return Range.Upper < Value;
/external/llvm/include/llvm/TableGen/
H A DRecord.h657 BitsInit(ArrayRef<Init *> Range)
658 : Init(IK_BitsInit), Bits(Range.begin(), Range.end()) {}
667 static BitsInit *get(ArrayRef<Init *> Range);
788 explicit ListInit(ArrayRef<Init *> Range, RecTy *EltTy) argument
790 Values(Range.begin(), Range.end()) {}
799 static ListInit *get(ArrayRef<Init *> Range, RecTy *EltTy);
1523 void addSuperClass(Record *R, SMRange Range) { argument
1526 SuperClassRanges.push_back(Range);
[all...]

Completed in 381 milliseconds

12345678