Searched refs:inbounds (Results 1 - 9 of 9) sorted by relevance

/external/opencv/cv/src/
H A Dcvkdtree.cpp121 std::vector<int> inbounds; local
125 inbounds));
126 std::copy(inbounds.begin(),
127 inbounds.begin() + std::min((int)inbounds.size(), rn),
129 return inbounds.size();
H A D_cvkdtree.hpp431 std::vector < __valuetype > &inbounds) const {
437 find_ortho_range(n.left, bounds_min, bounds_max, inbounds);
439 find_ortho_range(n.right, bounds_min, bounds_max, inbounds);
442 inbounds.push_back(nodes[i].value);
447 // return all points that lie within the given bounds; inbounds is cleared
450 std::vector < __valuetype > &inbounds) const {
451 inbounds.clear();
452 find_ortho_range(root_node, bounds_min, bounds_max, inbounds);
453 return inbounds.size();
/external/llvm/lib/Analysis/
H A DStratifiedSets.h121 assert(inbounds(Index));
129 bool inbounds(StratifiedIndex Idx) const { return Idx < Links.size(); } function in class:llvm::StratifiedSets
540 assert(inbounds(Idx1) && inbounds(Idx2));
561 assert(inbounds(Idx1) && inbounds(Idx2));
609 assert(inbounds(LowerIndex) && inbounds(UpperIndex));
689 bool inbounds(StratifiedIndex N) const { return N < Links.size(); }
H A DCFLAliasAnalysis.cpp523 bool inbounds(Node NodeIndex) const { return NodeIndex < NodeImpls.size(); } function in class:__anon11697::WeightedBidirectionalGraph
607 assert(inbounds(From));
608 assert(inbounds(To));
626 assert(inbounds(StartNode));
/external/llvm/utils/vim/syntax/
H A Dllvm.vim29 syn keyword llvmStatement icmp inbounds indirectbr insertelement insertvalue
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp557 KEYWORD(inbounds);
/external/clang/lib/CodeGen/
H A DCGExpr.cpp2640 bool inbounds,
2642 if (inbounds) {
2675 QualType eltType, bool inbounds,
2696 emitArraySubscriptGEP(CGF, addr.getPointer(), indices, inbounds, name);
2734 Addr = emitArraySubscriptGEP(*this, Addr, Idx, EltType, /*inbounds*/ true);
2637 emitArraySubscriptGEP(CodeGenFunction &CGF, llvm::Value *ptr, ArrayRef<llvm::Value*> indices, bool inbounds, const llvm::Twine &name = �) argument
2673 emitArraySubscriptGEP(CodeGenFunction &CGF, Address addr, ArrayRef<llvm::Value*> indices, QualType eltType, bool inbounds, const llvm::Twine &name = �) argument
/external/llvm/test/Bindings/OCaml/
H A Dcore.ml1368 * CHECK: %build_in_bounds_gep = getelementptr inbounds i32* %build_array_alloca, i32 %P2
1369 * CHECK: %build_struct_gep = getelementptr inbounds{{.*}}%build_alloca2, i32 0, i32 1
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli2275 [%name = gelementptr inbounds %p, indices...]

Completed in 305 milliseconds