/external/llvm/include/llvm/Analysis/ |
ScalarEvolutionExpressions.h | 151 assert(i < NumOperands && "Operand index out of range!"); 342 /// that produce values in the specified constant range. Another way of 347 const SCEV *getNumIterationsInRange(ConstantRange Range,
|
/external/opencv3/modules/calib3d/src/ |
stereobm.cpp | [all...] |
/external/opencv3/modules/core/include/opencv2/core/ |
base.hpp | 109 StsOutOfRange= -211, //!< some of parameters are out of range 376 ("the value at (%d, %d)=%g is out of range", badPt.x, badPt.y, badValue)); 569 The function fastAtan2 calculates the full-range angle of an input 2D vector. The angle is measured 600 class CV_EXPORTS Range;
|
/external/opencv3/modules/core/test/ |
test_io.cpp | 453 Range g1(7, 8), og1;
|
test_umat.cpp | 830 void operator() (const cv::Range& range) const 832 printf("range: %d, %d -- begin\n", range.start, range.end); 835 printf("%d: %d map...\n", range.start, i); 838 printf("%d: %d unmap...\n", range.start, i); 841 printf("range: %d, %d -- end\n", range.start, range.end) [all...] |
/external/opencv3/modules/imgproc/test/ |
test_imgwarp.cpp | [all...] |
/external/pdfium/core/src/fpdfdoc/ |
pdf_vt.h | 173 FX_FLOAT Range() const { return fMax - fMin; } 264 const CPVT_WordRange& range) const;
|
/external/v8/src/regexp/ |
regexp-ast.h | 73 // Represents code units in the range from from_ to to_, both ends are 87 static inline CharacterRange Range(uc16 from, uc16 to) { 107 // Whether a range list is in canonical form: Ranges ordered by from value, 110 // Convert range list to canonical form. The characters covered by the ranges 111 // will still be the same, but no character is in more than one range, and 115 // Negate the contents of a character range in canonical form.
|
/external/v8/test/unittests/compiler/ |
register-allocator-unittest.cc | 781 ::testing::Range(0, SlotConstraintTest::kMaxVariant)));
|
typer-unittest.cc | 94 return Type::Range(i, j, zone()); 118 double RandomInt(Type::RangeType* range) { 119 return RandomInt(range->Min(), range->Max());
|
/prebuilts/tools/common/m2/repository/org/easymock/easymock/2.4/ |
easymock-2.4.jar | |
/system/core/libmemunreachable/ |
MemUnreachable.cpp | 133 allocator::vector<Range> leaked1{allocator_}; 161 ssize_t num_backtrace_frames = malloc_backtrace(reinterpret_cast<void*>(it.range.begin), 173 similar_leak->similar_size += it.range.size(); 176 similar_leak->total_size += it.range.size(); 182 leak->begin = it.range.begin; 183 leak->size = it.range.size(); 187 memcpy(leak->contents, reinterpret_cast<void*>(it.range.begin),
|
/external/autotest/client/site_tests/video_YouTubeMseEme/files/ |
video_YouTubeMseEme.js | 129 'Range',
|
/external/clang/include/clang-c/ |
Index.h | 354 * point in the program or for a range of points in the program, and extract 373 * \brief Identifies a half-open character range in the source code. 376 * starting and end locations from a source range, respectively. 428 * \brief Retrieve a NULL (invalid) source range. 433 * \brief Retrieve a source range given the beginning and ending source 448 * \brief Returns non-zero if \p range is null. 450 CINDEX_LINKAGE int clang_Range_isNull(CXSourceRange range); 598 * source range. 600 CINDEX_LINKAGE CXSourceLocation clang_getRangeStart(CXSourceRange range); 604 * source range [all...] |
/external/clang/lib/CodeGen/ |
CoverageMappingGen.cpp | 29 void CoverageSourceInfo::SourceRangeSkipped(SourceRange Range) { 30 SkippedRanges.push_back(Range); [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
PathDiagnostic.cpp | 829 // FIXME: Provide better range information for different [all...] |
BugReporter.cpp | [all...] |
/external/guava/guava-testlib/test/com/google/common/testing/ |
FreshValueGeneratorTest.java | 54 import com.google.common.collect.Range; 169 assertFreshInstance(new TypeToken<Range<String>>() {}); [all...] |
/external/llvm/lib/IR/ |
Metadata.cpp | 943 // If in the end we have a single range, it is possible that it is now the 944 // full range. Just drop the metadata in that case. 946 ConstantRange Range(EndPoints[0]->getValue(), EndPoints[1]->getValue()); 947 if (Range.isFullSet()) [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_ppc.c | [all...] |
/external/opencv3/modules/ml/src/ |
ann_mlp.cpp | 634 "Some of new output training vector components run exceed the original range too much" ); 874 void operator()( const Range& range ) const 894 for( int si = range.start; si < range.end; si++ ) [all...] |
/external/libmtp/src/ |
ptp.c | [all...] |
/prebuilts/tools/common/m2/repository/commons-lang/commons-lang/2.4/ |
commons-lang-2.4.jar | |
/external/llvm/lib/Analysis/ |
ValueTracking.cpp | 384 ConstantRange Range(Lower->getValue(), Upper->getValue()); 386 // The first CommonPrefixBits of all values in Range are equal. 388 (Range.getUnsignedMax() ^ Range.getUnsignedMin()).countLeadingZeros(); 391 KnownOne &= Range.getUnsignedMax() & Mask; 392 KnownZero &= ~Range.getUnsignedMax() & Mask; [all...] |
/cts/tests/camera/src/android/hardware/camera2/cts/ |
CaptureRequestTest.java | 41 import android.util.Range; [all...] |