HomeSort by relevance Sort by last modified time
    Searched refs:Dist (Results 1 - 25 of 26) sorted by null

1 2

  /external/opencv3/modules/core/include/opencv2/core/cuda/detail/
vec_distance_detail.hpp 56 template <typename Dist, typename T1, typename T2>
57 static __device__ void calcCheck(const T1* vecCached, const T2* vecGlob, int len, Dist& dist, int ind)
66 dist.reduceIter(val1, val2);
68 UnrollVecDiffCached<THREAD_DIM, N - 1>::calcCheck(vecCached, vecGlob, len, dist, ind + THREAD_DIM);
72 template <typename Dist, typename T1, typename T2>
73 static __device__ void calcWithoutCheck(const T1* vecCached, const T2* vecGlob, Dist& dist)
81 dist.reduceIter(val1, val2);
83 UnrollVecDiffCached<THREAD_DIM, N - 1>::calcWithoutCheck(vecCached, vecGlob, dist);
    [all...]
  /external/opencv3/modules/cudafeatures2d/src/cuda/
bf_match.cu 92 template <int BLOCK_SIZE, int MAX_DESC_LEN, typename Dist, typename T, typename Mask>
94 typename Dist::value_type* s_query, typename Dist::value_type* s_train,
99 Dist dist;
120 dist.reduceIter(s_query[threadIdx.y * MAX_DESC_LEN + i * BLOCK_SIZE + j], s_train[j * BLOCK_SIZE + threadIdx.x]);
125 typename Dist::result_type distVal = dist;
138 template <int BLOCK_SIZE, int MAX_DESC_LEN, typename Dist, typename T, typename Mask>
145 typename Dist::value_type* s_query = (typename Dist::value_type*)(smem)
    [all...]
bf_knnmatch.cu 315 template <int BLOCK_SIZE, int MAX_DESC_LEN, typename Dist, typename T, typename Mask>
317 typename Dist::value_type* s_query, typename Dist::value_type* s_train,
324 Dist dist;
345 dist.reduceIter(s_query[threadIdx.y * MAX_DESC_LEN + i * BLOCK_SIZE + j], s_train[j * BLOCK_SIZE + threadIdx.x]);
350 typename Dist::result_type distVal = dist;
376 template <int BLOCK_SIZE, int MAX_DESC_LEN, typename Dist, typename T, typename Mask>
383 typename Dist::value_type* s_query = (typename Dist::value_type*)(smem)
    [all...]
bf_radius_match.cu 58 template <int BLOCK_SIZE, int MAX_DESC_LEN, bool SAVE_IMG_IDX, typename Dist, typename T, typename Mask>
67 typename Dist::value_type* s_query = (typename Dist::value_type*)(smem);
68 typename Dist::value_type* s_train = (typename Dist::value_type*)(smem + BLOCK_SIZE * BLOCK_SIZE);
70 Dist dist;
95 dist.reduceIter(s_query[threadIdx.y * BLOCK_SIZE + j], s_train[j * BLOCK_SIZE + threadIdx.x]);
100 float distVal = (typename Dist::result_type)dist;
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/
vec_distance.hpp 159 template <int THREAD_DIM, typename Dist, typename T1, typename T2>
160 __device__ void calcVecDiffGlobal(const T1* vec1, const T2* vec2, int len, Dist& dist, typename Dist::result_type* smem, int tid)
170 dist.reduceIter(val1, val2);
173 dist.reduceAll<THREAD_DIM>(smem, tid);
177 template <int THREAD_DIM, int MAX_LEN, bool LEN_EQ_MAX_LEN, typename Dist, typename T1, typename T2>
178 __device__ __forceinline__ void calcVecDiffCached(const T1* vecCached, const T2* vecGlob, int len, Dist& dist, typename Dist::result_type* smem, int tid
    [all...]
  /external/llvm/lib/Target/X86/
X86OptimizeLEAs.cpp 62 /// and \p Dist.
65 int64_t &AddrDispShift, int &Dist);
123 int64_t &AddrDispShift, int &Dist) {
168 Dist = DistTemp;
260 int Dist;
261 if (!chooseBestLEA(List, MI, DefMI, AddrDispShift, Dist))
270 if (Dist < 0) {
  /external/llvm/lib/CodeGen/
TwoAddressInstructionPass.cpp 107 bool noUseAfterLastDef(unsigned Reg, unsigned Dist, unsigned &LastDef);
110 MachineInstr *MI, unsigned Dist);
113 unsigned RegBIdx, unsigned RegCIdx, unsigned Dist);
119 unsigned RegA, unsigned RegB, unsigned Dist);
121 bool isDefTooClose(unsigned Reg, unsigned Dist, MachineInstr *MI);
133 unsigned Dist, bool shouldOnlyCommute);
139 unsigned Dist);
147 void processTiedPairs(MachineInstr *MI, TiedPairList&, unsigned &Dist);
356 bool TwoAddressInstructionPass::noUseAfterLastDef(unsigned Reg, unsigned Dist,
359 unsigned LastUse = Dist;
    [all...]
LiveVariables.cpp 202 unsigned Dist = DistanceMap[Def];
203 if (Dist > LastDefDist) {
206 LastDefDist = Dist;
296 unsigned Dist = DistanceMap[Def];
297 if (Dist > LastPartDefDist)
298 LastPartDefDist = Dist;
300 unsigned Dist = DistanceMap[Use];
301 if (Dist > LastRefOrPartRefDist) {
302 LastRefOrPartRefDist = Dist;
345 unsigned Dist = DistanceMap[Def]
    [all...]
  /external/clang/lib/AST/
ASTTypeTraits.cpp 53 unsigned Dist = 0;
56 ++Dist;
59 *Distance = Dist;
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 76 DitheringDistributer(Distribution &Dist, const BlockMass &Mass);
83 DitheringDistributer::DitheringDistributer(Distribution &Dist,
85 Dist.normalize();
86 RemWeight = Dist.Total;
260 bool BlockFrequencyInfoImplBase::addToDist(Distribution &Dist,
289 Dist.addBackedge(Resolved, Weight);
295 Dist.addExit(Resolved, Weight);
318 Dist.addLocal(Resolved, Weight);
323 const LoopData *OuterLoop, LoopData &Loop, Distribution &Dist) {
324 // Copy the exit map into Dist
    [all...]
LoopAccessAnalysis.cpp     [all...]
  /build/core/tasks/
collect_gpl_sources.mk 28 # Dist the tgz only if we are doing a full build
30 $(call dist-for-goals, droidcore, $(gpl_source_tgz))
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 391 /// Adds all edges from LocalLoopHead to Dist. Calls addToDist() to add each
396 Distribution &Dist);
400 /// Adds an edge to Succ to Dist. If \c LoopHead.isValid(), then whether the
405 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
435 /// Distributes the mass in Source according to Dist. If LoopHead.isValid(),
440 Distribution &Dist);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 741 int64_t Dist = EndV - StartV;
742 if (Dist == 0)
745 bool Exact = (Dist % IVBump) == 0;
750 if ((Dist < 0) ^ (IVBump < 0))
757 Dist = Dist > 0 ? Dist+1 : Dist-1;
759 // For the loop to iterate, CmpLess should imply Dist > 0. Similarly,
760 // CmpGreater should imply Dist < 0. These conditions could actuall
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Reverb/src/
LVREV_ApplyNewSettings.c 429 LVM_INT32 Tot_Dist,Dist;
432 Dist=RoomSize-LVREV_GainPolyTable[Index-1][0];
454 Gain = Gain1+ (((Gain2-Gain1)*Dist)/(Tot_Dist));
  /external/llvm/lib/Transforms/Scalar/
LoopLoadElimination.cpp 83 auto *Dist = cast<SCEVConstant>(
85 const APInt &Val = Dist->getAPInt();
  /external/llvm/tools/verify-uselistorder/
verify-uselistorder.cpp 398 std::uniform_int_distribution<short> Dist(10, 99);
404 auto I = Dist(Gen);
  /external/opencv/cv/src/
cvcalibration.cpp     [all...]
  /external/opencv3/modules/calib3d/src/
calibration.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9mesh.h 264 FLOAT Dist;
689 DWORD *face_index, FLOAT *u, FLOAT *v, FLOAT *dist) PURE;
    [all...]

Completed in 949 milliseconds

1 2