HomeSort by relevance Sort by last modified time
    Searched refs:Range (Results 201 - 225 of 800) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/TV/src/com/android/tv/util/
AsyncDbTask.java 28 import android.util.Range;
290 protected final Range<Long> mPeriod;
294 @Nullable Range<Long> period) {
313 public final Range<Long> getPeriod() {
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 75 CXSourceRange getRange(unsigned Range) const override {
282 CXSourceRange Range = clang_getDiagnosticRange(Diagnostic, I);
285 clang_getSpellingLocation(clang_getRangeStart(Range),
288 clang_getSpellingLocation(clang_getRangeEnd(Range),
430 CXSourceRange clang_getDiagnosticRange(CXDiagnostic Diag, unsigned Range) {
432 if (!D || Range >= D->getNumRanges())
434 return D->getRange(Range);
  /external/clang/lib/AST/
RawCommentList.cpp 111 Range(SR), RawTextValid(false), BriefTextValid(false),
128 SourceMgr.getDecomposedLoc(Range.getBegin());
158 SourceMgr.getDecomposedLoc(Range.getBegin());
159 std::tie(EndFileID, EndOffset) = SourceMgr.getDecomposedLoc(Range.getEnd());
188 Range.getBegin(),
  /external/deqp/modules/glshared/
glsFboUtil.hpp 47 //! A pair of iterators to present a range.
51 struct Range
90 typedef Range<FormatKey> FormatKeys;
168 typedef Range<FormatEntry> FormatEntries;
179 Range<FormatKey> formats;
182 typedef Range<FormatExtEntry> FormatExtEntries;
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_aaline.c 160 aactx->colorOutput = decl->Range.First;
164 for (i = decl->Range.First;
165 i <= decl->Range.Last; i++) {
170 if ((int) decl->Range.Last > aactx->maxInput)
171 aactx->maxInput = decl->Range.Last;
179 for (i = decl->Range.First;
180 i <= decl->Range.Last; i++) {
244 decl.Range.First =
245 decl.Range.Last = aactx->maxInput + 1;
252 decl.Range.First =
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
RecordingTest.java 43 import android.util.Range;
382 Range<Integer> fpsRange = getHighestHighSpeedFixedFpsRangeForSize(config, size);
383 mCollector.expectNotNull("Unable to find the fixed frame rate fps range for " +
452 List<Range<Integer>> fixedFpsRanges =
454 mCollector.expectTrue("Unable to find the fixed frame rate fps range for " +
456 // Test recording for each FPS range
457 for (Range<Integer> fpsRange : fixedFpsRanges) {
522 private Range<Integer> getHighestHighSpeedFixedFpsRangeForSize(StreamConfigurationMap config,
524 Range<Integer>[] availableFpsRanges = config.getHighSpeedVideoFpsRangesFor(size);
525 Range<Integer> maxRange = availableFpsRanges[0]
    [all...]
  /external/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 11 // the middle loop provably does not need range checks. As an example, it will
80 static cl::opt<bool> PrintRangeChecks("irce-print-range-checks", cl::Hidden,
90 /// An inductive range check is conditional branch in a loop with
97 /// 2. a condition that is provably true for some contiguous range of values
101 // Classifies a range check
103 // Range check of the form "0 <= I".
106 // Range check of the form "I < L" where L is known positive.
113 // Unrecognized range check condition.
166 /// Represents an signed integer range [Range.getBegin(), Range.getEnd()). I
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 12 // live range for register v if there is no instruction with number j' >= j
15 // i.e. a range might look like [1,20), [50,65), [1000,1001). Each
17 // and the whole range is represented as an instance of LiveRange.
107 /// means that either the live range ends at the instruction, or it changes
136 /// Return the end point of the last live range segment to interact with
139 /// The end point is an invalid SlotIndex only if the live range doesn't
244 /// end of the range. If no Segment contains this position, but the
300 /// containsValue - Returns true if VNI belongs to this range.
314 /// createDeadDef - Make sure the range has a value defined at Def.
340 /// range as the specified value number. The segments in RHS are allowe
    [all...]
LiveIntervalUnion.h 87 void unify(LiveInterval &VirtReg, const LiveRange &Range);
93 void extract(LiveInterval &VirtReg, const LiveRange &Range);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
Camera2RecordingTest.java 43 import android.util.Range;
219 List<Range<Integer>> fixedFpsRanges =
221 mCollector.expectTrue("Unable to find the fixed frame rate fps range for " +
223 // Test recording for each FPS range
224 for (Range<Integer> fpsRange : fixedFpsRanges) {
293 private List<Range<Integer>> getHighSpeedFixedFpsRangeForSize(StreamConfigurationMap config,
295 Range<Integer>[] availableFpsRanges = config.getHighSpeedVideoFpsRangesFor(size);
296 List<Range<Integer>> fixedRanges = new ArrayList<Range<Integer>>();
297 for (Range<Integer> range : availableFpsRanges)
    [all...]
  /external/v8/src/
types.h 24 // Types consist of two dimensions: semantic (value range) and representation.
95 // RANGE TYPES
97 // A range type represents a continuous integer interval by its minimum and
99 // itself is also included in the range. A range never contains NaN or -0.
102 // subtype of Range(n, n) (and therefore also a subtype of any larger range).
104 // Range rather than Constant.
278 // typedef Range;
294 // static Handle<Range>::type as_range(Type*)
868 typename Config::template Handle<typename Config::Range>::type range = local
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
types.hpp 506 //////////////////////////////// Range /////////////////////////////////
511 Range(a,b) is basically the same as a:b in Matlab or a..b in Python. As in Python, start is an
512 inclusive left boundary of the range and end is an exclusive right boundary of the range. Such a
515 The static method Range::all() returns a special variable that means "the whole sequence" or "the
516 whole range", just like " : " in Matlab or " ... " in Python. All the methods and functions in
517 OpenCV that take Range support this special Range::all() value. But, of course, in case of your own
520 void my_function(..., const Range& r, ....)
522 if(r == Range::all())
    [all...]
cuda.hpp 132 GpuMat(const GpuMat& m, Range rowRange, Range colRange);
229 GpuMat rowRange(Range r) const;
233 GpuMat colRange(Range r) const;
236 GpuMat operator ()(Range rowRange, Range colRange) const;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP_s.s 122 Range RN 1
309 ADD Range,High,High ;// Range=64*ScaleFactor
313 ADDLT diffMVdx,diffMVdx,Range ;// diffMVdx+=Range
316 SUBGT diffMVdx,diffMVdx,Range ;// If diffMVdx > High diffMVdx-=Range
327 ADDLT diffMVdx,diffMVdx,Range ;// If diffMVdy<Low diffMVdy+=Range
329 SUBGT diffMVdx,diffMVdx,Range ;// If diffMVdy > High diffMVdy-=Rang
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP_s.s 122 Range RN 1
309 ADD Range,High,High ;// Range=64*ScaleFactor
313 ADDLT diffMVdx,diffMVdx,Range ;// diffMVdx+=Range
316 SUBGT diffMVdx,diffMVdx,Range ;// If diffMVdx > High diffMVdx-=Range
327 ADDLT diffMVdx,diffMVdx,Range ;// If diffMVdy<Low diffMVdy+=Range
329 SUBGT diffMVdx,diffMVdx,Range ;// If diffMVdy > High diffMVdy-=Rang
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/params/
StreamConfigurationMap.java 30 import android.util.Range;
178 // For each Size/FPS range, track how many FPS range/Size there are available
181 Range<Integer> fpsRange = config.getFpsRange();
512 * {@link CaptureRequest#CONTROL_AE_TARGET_FPS_RANGE FPS range} from
558 public Range<Integer>[] getHighSpeedVideoFpsRangesFor(Size size) {
566 Range<Integer>[] fpsRanges = new Range[fpsRangeCount];
581 * list the supported high speed video FPS range configurations. Application can then use
582 * {@link #getHighSpeedVideoSizesFor} to query available sizes for one of returned FPS range
    [all...]
  /external/lzma/C/
Ppmd7.h 110 UInt32 Range;
127 UInt32 Range;
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_dump.c 263 SID(decl->Range.First);
264 if (decl->Range.First != decl->Range.Last) {
266 SID(decl->Range.Last);
356 if (decl->Range.Last < 10)
358 else if (decl->Range.Last < 100) {
361 } else if (decl->Range.Last < 1000) {
374 for(i = 1; i <= decl->Range.Last; ++i) {
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 444 class Range
447 Range(int a, int b) : next(0), bgn(a), end(b) { }
449 Range *next;
453 void coalesce(Range **ptail)
455 Range *rnn;
469 Range *head;
470 Range *tail;
501 // NOTE: range may not cross 32 bit boundary (implies n <= 32)
518 // NOTE: range may not cross 32 bit boundary (implies n <= 32)
530 // NOTE: range may not cross 32 bit boundary (implies n <= 32
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
finder.hpp 16 #include <boost/range/iterator_range.hpp>
17 #include <boost/range/begin.hpp>
18 #include <boost/range/end.hpp>
19 #include <boost/range/iterator.hpp>
20 #include <boost/range/const_iterator.hpp>
202 algorithm, with an exception that it return a range of
225 //! "Range" finder
228 any operation. It simply returns the given range for
231 \param Begin Beginning of the range
232 \param End End of the range
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/
Scheduler.java 29 import android.util.Range;
100 new Range(mClock.currentTimeMillis(),
  /packages/apps/TV/tests/unit/src/com/android/tv/dvr/
ScheduledRecordingTest.java 24 import android.util.Range;
100 assertEquals("isOverlapping(Range(" + lower + "," + upper + "), recording " + r, expected,
101 r.isOverLapping(new Range<Long>(lower, upper)));
  /system/core/libmemunreachable/
LeakFolding.cpp 41 leak_scc->size += node->ptr->range.size();
77 [&](const Range& range, HeapWalker::AllocationInfo& allocation) {
80 std::forward_as_tuple(range),
81 std::forward_as_tuple(range, allocator_));
90 heap_walker_.ForEachPtrInRange(leak.range,
91 [&](Range& ptr_range, HeapWalker::AllocationInfo* ptr_info) {
120 leak_bytes += leak.range.size();
126 leaked.emplace_back(Leak{leak.range,
128 leak.scc->cuumulative_size - leak.range.size()})
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
debug1.d 14 Line Range: 14
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
pr13167.d 12 Line Range: 14

Completed in 955 milliseconds

1 2 3 4 5 6 7 891011>>