HomeSort by relevance Sort by last modified time
    Searched refs:SIdx (Results 1 - 5 of 5) sorted by null

  /external/opencv3/modules/features2d/src/
evaluation.cpp 298 struct SIdx
300 SIdx() : S(-1), i1(-1), i2(-1) {}
301 SIdx(float _S, int _i1, int _i2) : S(_S), i1(_i1), i2(_i2) {}
306 bool operator<(const SIdx& v) const { return S > v.S; }
310 UsedFinder(const SIdx& _used) : used(_used) {}
311 const SIdx& used;
312 bool operator()(const SIdx& v) const { return (v.i1 == used.i1 || v.i2 == used.i2); }
318 bool commonPart, std::vector<SIdx>& overlaps, float minOverlap )
370 overlaps.push_back(SIdx(ov, (int)i1, (int)i2));
378 typedef std::vector<SIdx>::iterator It
    [all...]
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 416 Elf_Word SIdx;
426 SIdx = sectionIndex;
427 OS.write((const char *)&SIdx, sizeof(SIdx));
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 714 unsigned SIdx = 0;
716 for (size_t s = 0, se = Sequences.size(); s != se; ++s, SIdx = NextSIdx) {
718 NextSIdx = SIdx + Sequence.size() + 1;
720 Found = SIdx;
726 Found = SIdx;
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp     [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]

Completed in 238 milliseconds