/external/opencv3/modules/photo/src/ |
fast_nlmeans_multi_denoising_invoker.hpp | 62 void operator() (const Range& range) const; 160 void FastNlMeansMultiDenoisingInvoker<T, IT, UIT, D, WT>::operator() (const Range& range) const 162 int row_from = range.start; 163 int row_to = range.end - 1;
|
/external/v8/test/unittests/compiler/ |
js-typed-lowering-unittest.cc | 198 Reduction r = Reduce(Parameter(Type::Range(value, value, zone()))); 249 Type::Range(0.0, 0.0, zone()), zone()), 282 Node* input = Parameter(Type::Range(1, V8_INFINITY, zone()), 0); 636 Type::Range(kMinInt / element_size, kMaxInt / element_size, zone())); 680 Node* key = Parameter(Type::Range(min, max, zone())); 718 Type::Range(kMinInt / element_size, kMaxInt / element_size, zone())); 763 Type::Range(kMinInt / element_size, kMaxInt / element_size, zone())); 813 Node* key = Parameter(Type::Range(min, max, zone())); [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/ |
finder.hpp | 18 #include <boost/range/iterator_range.hpp> 19 #include <boost/range/begin.hpp> 20 #include <boost/range/end.hpp> 21 #include <boost/range/empty.hpp> 22 #include <boost/range/as_literal.hpp> 469 This functor find a head of the specified range. For 471 elements of the range. 507 This functor find a tail of the specified range. For 509 elements of the range. 546 with an exception that it return range instead of a singl [all...] |
/packages/apps/TV/src/com/android/tv/dvr/ |
DvrDataManagerImpl.java | 36 import android.util.Range; 222 public List<ScheduledRecording> getRecordingsThatOverlapWith(Range<Long> period) {
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
hidpi.h | 141 } Range; 229 } Range;
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/i386/ |
compressed-1a.d | 72 Line Range: 14
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/x86-64/ |
compressed-1a.d | 72 Line Range: 14
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
micromips@24k-triple-stores-7.d | 3 #name: 24K: Triple Store (Extended Range Check)
|
micromips@loc-swap.d | 20 Line Range: 14
|
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.12.613/ |
kotlin-runtime-0.12.613.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.13.1513/ |
kotlin-runtime-0.13.1513.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.13.1514/ |
kotlin-runtime-0.13.1514.jar | |
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0-beta-1103/ |
kotlin-runtime-1.0.0-beta-1103.jar | |
/external/clang/tools/libclang/ |
CXCursor.h | 141 CXCursor MakePreprocessingDirectiveCursor(SourceRange Range, 144 /// \brief Unpack a given preprocessing directive to retrieve its source range. 152 /// source range. 207 /// source range.
|
CursorVisitor.h | 91 /// \brief When valid, a source range to which the cursor should restrict 113 /// \brief Determine whether this particular source range comes before, comes 116 /// \param R a half-open source range retrieved from the abstract syntax tree. 244 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS, SourceRange Range);
|
/external/deqp/modules/gles2/functional/ |
es2fFboCompletenessTests.cpp | 30 using deqp::gls::Range;
|
/external/easymock/src/org/easymock/internal/ |
MocksBehavior.java | 61 Range count) {
|
/external/google-benchmark/src/ |
benchmark.cc | 103 // For non-dense Range, intermediate values are powers of kRangeMultiplier. 297 void Range(int start, int limit); 422 void BenchmarkImp::Range(int start, int limit) { 534 Benchmark* Benchmark::Range(int start, int limit) { 535 imp_->Range(start, limit);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
UCharacterProperty.java | 1271 Trie2.Range range; local 1365 Trie2.Range range; local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
UCharacterProperty.java | 1270 Trie2.Range range; local 1364 Trie2.Range range; local [all...] |
/external/llvm/utils/TableGen/ |
AsmWriterEmitter.cpp | 519 static const char *getMinimalTypeForRange(uint64_t Range) { 520 assert(Range < 0xFFFFFFFFULL && "Enum too large"); 521 if (Range > 0xFFFF) 523 if (Range > 0xFF) 650 assert(OpIdx >= 0 && OpIdx < 0xFE && "Idx out of range"); 652 "Idx out of range"); [all...] |
/external/opencv3/modules/core/include/opencv2/core/ |
persistence.hpp | 729 static inline void read(const FileNode& node, Range& value, const Range& default_value) [all...] |
/external/opencv3/modules/imgproc/src/ |
distransform.cpp | 455 void operator()( const Range& range ) const 457 int i, i1 = range.start, i2 = range.end; 500 void operator()( const Range& range ) const 503 int i, i1 = range.start, i2 = range.end; 580 cv::parallel_for_(cv::Range(0, n), cv::DTColumnInvoker(&src, &dst, sat_tab, sqr_tab), src.total()/(double)(1<<16)); 592 cv::parallel_for_(cv::Range(0, m), cv::DTRowInvoker(&dst, sqr_tab, inv_tab)) [all...] |
/external/v8/src/compiler/ |
typer.cc | 269 // Speed up termination in the presence of range types: 385 return Type::Range(min, max, t->zone()); 429 return Type::Range(min, max, t->zone()); 542 return Type::Intersect(Type::Range(number, number, zone()), 569 return Type::Range(number, number, zone()); 676 // TODO(neis): Extend this to Range(x,x), MinusZero, ...? 819 return Type::Range(min, max, t->zone()); 846 return Type::Range(min, max, t->zone()); 863 // TODO(jarin) Use a range here. 906 return Type::Range(min, max, t->zone()) 1062 Type* range = local [all...] |
/external/v8/src/ |
type-cache.h | 95 // The FixedArray::length property always containts a smi in the range 100 // The FixedDoubleArray::length property always containts a smi in the range 105 // The JSArray::length property always contains a tagged number in the range 110 // The String::length property always contains a smi in the range 145 return Type::Range(min, max, zone());
|