Searched refs:Distance (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10.1/swig-12/Lib/std/
H A Dstd_common.i49 template <class Iterator, class Category,class T, class Reference, class Pointer, class Distance>
50 struct iterator_traits<__reverse_bi_iterator<Iterator,Category,T,Reference,Pointer,Distance> > {
51 typedef Distance difference_type;
/macosx-10.10.1/llvmCore-3425.0.34/utils/FileCheck/
H A DFileCheck.cpp414 unsigned Distance = ComputeMatchDistance(Buffer.substr(i), VariableTable); local
415 double Quality = Distance + (NumLinesForward / 100.);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DYAMLParser.cpp380 /// @brief Skip \a Distance UTF-8 code units. Updates \a Cur and \a Column.
381 void skip(uint32_t Distance);
903 void Scanner::skip(uint32_t Distance) { argument
904 Current += Distance;
905 Column += Distance;
H A DCommandLine.cpp217 unsigned Distance = StringRef(Name).edit_distance( local
219 if (!Best || Distance < BestDistance) {
221 BestDistance = Distance;
/macosx-10.10.1/OpenAL-54/Source/OpenAL/
H A DoalSource.cpp3955 Distance = 2.0, local
4018 Distance = sqrt(Distance_squared);
4023 if(Distance>0.0f){
4110 Distance=0.0;
4118 Distance = Distance/mReferenceDistance;
4119 if (Distance > mMaxDistance/mReferenceDistance)
4120 Distance = mMaxDistance/mReferenceDistance; // clamp the distance to the max distance
4123 *outDistance = Distance;
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DScalarEvolution.cpp5492 const SCEV *Distance = CountDown ? Start : getNegativeSCEV(Start);
5496 // N = Distance (as unsigned)
5508 return ExitLimit(Distance, MaxBECount);
5523 return getUDivExpr(Distance, CountDown ? getNegativeSCEV(Step) : Step);

Completed in 416 milliseconds