/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
SPIRVStream.h | 134 operator>>(const SPIRVDecoder& Decoder, const std::pair<IterTy,IterTy> &Range) { 135 for (IterTy I = Range.first, E = Range.second; I != E; ++I) 178 operator<<(const SPIRVEncoder& Encoder, const std::pair<IterTy,IterTy> &Range) { 179 for (IterTy I = Range.first, E = Range.second; I != E; ++I)
|
/frameworks/minikin/libs/minikin/ |
CmapCoverage.cpp | 54 ALOGD("adding range %d-%d\n", start, end); 64 struct Range { 68 static Range InvalidRange() { 69 return Range({ U32MAX, U32MAX }); 77 inline static bool intersects(const Range& left, const Range& right) { 82 // Returns merged range. This method assumes left and right are not invalid ranges and they have 84 static Range merge(const Range& left, const Range& right) [all...] |
/external/google-breakpad/src/processor/ |
static_range_map-inl.h | 52 // The map is keyed by the high address of each range, so |address| is 53 // guaranteed to be lower than the range's high address. If |range| is 54 // not directly preceded by another range, it's possible for address to 55 // be below the range's low address, though. When that happens, address 56 // references something not within any range, so return false. 58 const Range *range = iterator.GetValuePtr(); local 62 if (address < range->base()) 65 entry = range->entryptr() 94 const Range *range = iterator.GetValuePtr(); local 116 const Range *range = iterator.GetValuePtr(); local [all...] |
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_util.cpp | 104 for (Range *next, *r = head; r; r = next) { 114 Range *r, **nextp = &head; 148 (*nextp) = new Range(a, b); 158 for (Range *r = head; r && r->bgn <= pos; r = r->next) 167 Range *a = this->head; 168 Range *b = that.head; 180 for (Range *rA = this->head; rA; rA = rA->next) 181 for (Range *rB = iv.head; rB; rB = rB->next) 191 for (Range *r = that.head; r; r = r->next) 198 for (Range *next, *r = that.head; r; r = next) [all...] |
/external/compiler-rt/lib/ubsan/ |
ubsan_handlers_cxx.cc | 62 << Range(Pointer, Pointer + sizeof(uptr), "possibly invalid vptr"); 66 << Range(Pointer, Pointer + sizeof(uptr), "invalid vptr"); 71 << Range(Pointer, Pointer + sizeof(uptr), "vptr for %0"); 79 << Range(Pointer, Pointer + sizeof(uptr),
|
/external/easymock/src/org/easymock/internal/ |
IMocksControlState.java | 44 void times(Range range);
|
MocksControl.java | 220 state.times(new Range(times));
229 state.times(new Range(min, max));
266 public static final Range ONCE = new Range(1);
271 public static final Range AT_LEAST_ONCE = new Range(1, Integer.MAX_VALUE);
276 public static final Range ZERO_OR_MORE = new Range(0, Integer.MAX_VALUE);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
Trie2.java | 33 public abstract class Trie2 implements Iterable<Trie2.Range> { 91 // * First code point of the single-value range ending with U+10ffff, 248 * range, one for lead surrogates, which is the value that will be 252 * For code units outside of the lead surrogate range, this function 294 Range rangeFromOther; 296 Iterator<Trie2.Range> otherIter = OtherTrie.iterator(); 297 for (Trie2.Range rangeFromThis: this) { 323 for (Range r: this) { 336 * The iterator will return one item for each contiguous range of codepoints having the same value. 338 * When iterating, the same Trie2EnumRange object will be reused and returned for each range [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
Trie2.java | 31 public abstract class Trie2 implements Iterable<Trie2.Range> { 89 // * First code point of the single-value range ending with U+10ffff, 246 * range, one for lead surrogates, which is the value that will be 250 * For code units outside of the lead surrogate range, this function 292 Range rangeFromOther; 294 Iterator<Trie2.Range> otherIter = OtherTrie.iterator(); 295 for (Trie2.Range rangeFromThis: this) { 321 for (Range r: this) { 334 * The iterator will return one item for each contiguous range of codepoints having the same value. 336 * When iterating, the same Trie2EnumRange object will be reused and returned for each range [all...] |
/packages/apps/DocumentsUI/src/com/android/documentsui/selection/ |
Range.java | 27 * Class providing support for managing range selections. 29 final class Range { 32 private final Range.RangeUpdater mUpdater; 36 public Range(Range.RangeUpdater updater, int begin) { 75 if (VERBOSE) Log.v(SelectionManager.TAG, "Ignoring no-op revision for range: " + this); 93 // Reducing or reversing the range.... 103 // Extending the range... 110 // Reducing or reversing the range.... 120 // Extending the range.. [all...] |
/frameworks/base/tools/aapt2/compile/ |
NinePatch.cpp | 78 // range, 95 std::vector<Range>* primary_ranges, 96 std::vector<Range>* secondary_ranges, 109 // We are ending a range. Which range? 117 // We are starting a range. Which range? 120 primary_ranges->push_back(Range(idx - 1, length - 2)); 122 secondary_ranges->push_back(Range(idx - 1, length - 2)); 219 static bool PopulateBounds(const std::vector<Range>& padding 236 const Range& range = padding.front(); local 257 const Range& range = layout_bounds.front(); local 271 const Range& range = layout_bounds.back(); local 497 const Range& range = unexpected_ranges[0]; local 513 const Range& range = unexpected_ranges[0]; local [all...] |
/external/clang/lib/ARCMigrate/ |
TransProtectedScope.cpp | 43 SourceRange Range; 51 CaseInfo(SwitchCase *S, SourceRange Range) 52 : SC(S), Range(Range), State(St_Unchecked) {} 151 if (isInRange(Diag.getLocation(), info.Range)) { 176 Pass.TA.insert(info.Range.getEnd(), "}\n"); 183 if (isInRange(DRE->getDecl()->getLocation(), info.Range) && 184 !isInRange(DRE->getLocation(), info.Range))
|
/external/google-benchmark/test/ |
map_test.cc | 20 const int size = state.range(0); 31 BENCHMARK(BM_MapLookup)->Range(1 << 3, 1 << 12); 37 m = ConstructRandomMap(st.range(0)); 46 const int size = state.range(0); 54 BENCHMARK_REGISTER_F(MapFixture, Lookup)->Range(1 << 3, 1 << 12);
|
options_test.cc | 12 std::chrono::milliseconds sleep_duration(state.range(0)); 24 BENCHMARK(BM_basic)->Range(1, 8); 25 BENCHMARK(BM_basic)->RangeMultiplier(2)->Range(1, 8);
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
EmptyContiguousSet.java | 51 @Override public Range<C> range() { method in class:EmptyContiguousSet 55 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { method in class:EmptyContiguousSet
|
/external/libcxx/utils/google-benchmark/test/ |
map_test.cc | 20 const int size = state.range(0); 31 BENCHMARK(BM_MapLookup)->Range(1 << 3, 1 << 12); 37 m = ConstructRandomMap(st.range(0)); 46 const int size = state.range(0); 54 BENCHMARK_REGISTER_F(MapFixture, Lookup)->Range(1 << 3, 1 << 12);
|
options_test.cc | 12 std::chrono::milliseconds sleep_duration(state.range(0)); 24 BENCHMARK(BM_basic)->Range(1, 8); 25 BENCHMARK(BM_basic)->RangeMultiplier(2)->Range(1, 8);
|
/hardware/qcom/display/msm8996/sdm/libs/hwc/ |
blit_engine_c2d.h | 87 struct Range { 97 mutable Range r;
|
/hardware/qcom/display/msm8998/sdm/libs/hwc/ |
blit_engine_c2d.h | 87 struct Range { 97 mutable Range r;
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
24k-triple-stores-2-llsc.d | 3 #name: 24K: Triple Store (Range Check, sc)
|
micromips@24k-triple-stores-2-llsc.d | 3 #name: 24K: Triple Store (Range Check, sc)
|
mipsr6@24k-triple-stores-2-llsc.d | 4 #name: 24K: Triple Store (Range Check, sc)
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/MemoryTest/GenericMemoryTestDxe/ |
LightMemoryTest.c | 85 Construct the system base memory range through GCD service.
89 @retval EFI_SUCCESS Successful construct the base memory range through GCD service.
91 @retval Others Failed to construct base memory range through GCD service.
156 NONTESTED_MEMORY_RANGE *Range;
161 Range = NONTESTED_MEMORY_RANGE_FROM_LINK (Link);
164 Range->StartAddress,
165 Range->Length
170 Range->StartAddress,
171 Range->Length,
172 Range->Capabilities &~(EFI_MEMORY_PRESENT | EFI_MEMORY_INITIALIZED | EFI_MEMORY_TESTED | EFI_MEMORY_RUNT (…) [all...] |
/external/clang/include/clang/AST/ |
Attr.h | 47 SourceRange Range; 81 : Range(R), AttrKind(AK), SpellingListIndex(SpellingListIndex), 94 SourceLocation getLocation() const { return Range.getBegin(); } 95 SourceRange getRange() const { return Range; } 96 void setRange(SourceRange R) { Range = R; }
|
/external/clang/lib/Format/ |
AffectedRangeManager.cpp | 61 const CharSourceRange &Range) { 65 if (!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(), I->getBegin()) && 66 !SourceMgr.isBeforeInTranslationUnit(I->getEnd(), Range.getBegin())) 80 CharSourceRange Range = CharSourceRange::getCharRange(Start, End); 81 return affectsCharSourceRange(Range);
|