HomeSort by relevance Sort by last modified time
    Searched defs:Distance (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/flatbuffers/tests/MyGame/Example/
Ability.py 17 def Distance(self): return self._tab.Get(flatbuffers.number_types.Uint32Flags, self._tab.Pos + flatbuffers.number_types.UOffsetTFlags.py_type(4))
19 def CreateAbility(builder, id, distance):
21 builder.PrependUint32(distance)
Ability.go 29 func (rcv *Ability) Distance() uint32 {
36 func CreateAbility(builder *flatbuffers.Builder, id uint32, distance uint32) flatbuffers.UOffsetT {
38 builder.PrependUint32(distance)
Ability.lua 21 function Ability_mt:Distance()
24 function Ability.CreateAbility(builder, id, distance)
26 builder:PrependUint32(distance)
Ability.cs 20 public uint Distance { get { return __p.bb.GetUint(__p.bb_pos + 4); } }
21 public void MutateDistance(uint distance) { __p.bb.PutUint(__p.bb_pos + 4, distance); }
23 public static Offset<Ability> CreateAbility(FlatBufferBuilder builder, uint Id, uint Distance) {
25 builder.PutUint(Distance);
  /external/clang/unittests/AST/
ASTTypeTraitsTest.cpp 44 unsigned Distance = 1;
45 EXPECT_TRUE(DNT<Expr>().isBaseOf(DNT<Expr>(), &Distance));
46 EXPECT_EQ(0u, Distance);
48 EXPECT_TRUE(DNT<Stmt>().isBaseOf(DNT<IfStmt>(), &Distance));
49 EXPECT_EQ(1u, Distance);
51 Distance = 3;
52 EXPECT_TRUE(DNT<DeclaratorDecl>().isBaseOf(DNT<ParmVarDecl>(), &Distance));
53 EXPECT_EQ(2u, Distance);
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
array_util.h 56 // Returns the minimum distance between any two Points in the given
78 float Distance(CartesianPoint<T> a, CartesianPoint<T> b) {
88 // radius: distance from the camera in meters.
98 T distance() const { return s[2]; } function in struct:webrtc::SphericalPoint
  /external/llvm/lib/Target/Hexagon/
HexagonBranchRelaxation.cpp 140 unsigned Distance = 0;
159 Distance = std::abs((long long)InstOffset - BlockToInstOffset[TBB])
161 return !HII->isJumpWithinBranchRange(&*FirstTerm, Distance);
172 Distance = std::abs((long long)InstOffset - BlockToInstOffset[FBB])
174 return !HII->isJumpWithinBranchRange(&*SecondTerm, Distance);
188 DEBUG(dbgs() << "Long distance jump. isExtendable("
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonBranchRelaxation.cpp 156 unsigned Distance = 0;
175 Distance = std::abs((long long)InstOffset - BlockToInstOffset[TBB])
177 return !HII->isJumpWithinBranchRange(*FirstTerm, Distance);
188 Distance = std::abs((long long)InstOffset - BlockToInstOffset[FBB])
190 return !HII->isJumpWithinBranchRange(*SecondTerm, Distance);
203 LLVM_DEBUG(dbgs() << "Long distance jump. isExtendable("
  /external/v8/src/
label.h 21 enum Distance {
88 void link_to(int pos, Distance distance = kFar) {
89 if (distance == kNear) {
  /external/skia/include/core/
SkPoint.h 281 /** Returns the Euclidean distance from origin, computed as:
287 @return straight-line distance to origin
291 /** Returns the Euclidean distance from origin, computed as:
297 @return straight-line distance to origin
323 @param length straight-line distance to origin
334 @param length straight-line distance to origin
479 /** Returns the Euclidean distance from origin, computed as:
487 @return straight-line distance to origin
504 /** Returns the Euclidean distance between a and b.
508 @return straight-line distance from a to
    [all...]
  /external/skqp/include/core/
SkPoint.h 281 /** Returns the Euclidean distance from origin, computed as:
287 @return straight-line distance to origin
291 /** Returns the Euclidean distance from origin, computed as:
297 @return straight-line distance to origin
323 @param length straight-line distance to origin
334 @param length straight-line distance to origin
479 /** Returns the Euclidean distance from origin, computed as:
487 @return straight-line distance to origin
504 /** Returns the Euclidean distance between a and b.
508 @return straight-line distance from a to
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ExecutionDepsFix.cpp 120 unsigned Distance;
172 dv->Dist = Distance;
422 dv->Dist = Distance;
456 Distance = 0;
491 ++Distance;
  /device/linaro/bootloader/edk2/OvmfPkg/Sec/
SecMain.c 102 UINTN Distance;
107 Distance = (UINTN) (*BootFv)->FvLength;
110 Distance += EFI_PAGE_SIZE;
111 if (Distance > SIZE_32MB) {
119 if ((UINTN) Fv->FvLength > Distance) {
  /external/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 43 unsigned Distance;
44 if (!MatcherKind.isBaseOf(To.MatcherKind, &Distance))
48 *Specificity = 100 - Distance;
  /external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/
RouteGuide.cs 50 new pbr::GeneratedClrTypeInfo(typeof(global::Routeguide.RouteSummary), global::Routeguide.RouteSummary.Parser, new[]{ "PointCount", "FeatureCount", "Distance", "ElapsedTime" }, null, null, null)
749 /// detected features, and the total distance covered as the cumulative sum of
750 /// the distance between each point.
817 /// <summary>Field number for the "distance" field.</summary>
821 /// The distance covered in metres.
824 public int Distance {
860 if (Distance != other.Distance) return false;
870 if (Distance != 0) hash ^= Distance.GetHashCode()
    [all...]
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
geom.h 73 inline float Distance(const Point2f& that) {
  /external/deqp-deps/SPIRV-Tools/source/opt/
loop_dependence.h 43 // distance.
44 // * DISTANCE if a dependence distance could be found.
60 DISTANCE = 2,
77 int64_t distance; member in class:spvtools::opt::DistanceEntry
86 distance(0),
95 distance(0),
102 : dependence_information(DependenceInformation::DISTANCE),
104 distance(distance_),
113 distance(0)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopInterchange.cpp 133 const SCEV *Distance = D->getDistance(II);
135 dyn_cast_or_null<SCEVConstant>(Distance);
    [all...]
  /external/swiftshader/third_party/LLVM/utils/FileCheck/
FileCheck.cpp 103 /// matching this pattern at the start of \arg Buffer; a distance of zero
410 // match distance and the number of lines skipped to get to this match.
411 unsigned Distance = ComputeMatchDistance(Buffer.substr(i), VariableTable);
412 double Quality = Distance + (NumLinesForward / 100.);
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
loop_dependence.h 43 // distance.
44 // * DISTANCE if a dependence distance could be found.
60 DISTANCE = 2,
77 int64_t distance; member in class:spvtools::opt::DistanceEntry
86 distance(0),
95 distance(0),
102 : dependence_information(DependenceInformation::DISTANCE),
104 distance(distance_),
113 distance(0)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Option/
OptTable.cpp 302 unsigned Distance =
305 if (Distance < BestDistance) {
306 BestDistance = Distance;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
LoopInterchange.cpp 136 const SCEV *Distance = D->getDistance(II);
138 dyn_cast_or_null<SCEVConstant>(Distance);
    [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 90 /// Dependence::DVEntry - Each level in the distance/direction vector
92 /// perhaps a distance.
107 const SCEV *Distance; // NULL implies no distance available.
109 PeelLast(false), Splitable(false), Distance(nullptr) { }
165 /// getDistance - Returns the distance (or NULL) associated with a
251 /// getDistance - Returns the distance (or NULL) associated with a
386 /// 3) Distance - The value d of the dependence distance;
392 enum ConstraintKind { Empty, Point, Distance, Line, Any } Kind
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DependenceAnalysis.h 85 /// Dependence::DVEntry - Each level in the distance/direction vector
87 /// perhaps a distance.
102 const SCEV *Distance; // NULL implies no distance available.
104 PeelLast(false), Splitable(false), Distance(nullptr) { }
160 /// getDistance - Returns the distance (or NULL) associated with a
241 /// getDistance - Returns the distance (or NULL) associated with a
376 /// 3) Distance - The value d of the dependence distance;
382 enum ConstraintKind { Empty, Point, Distance, Line, Any } Kind
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
MIRCanonicalizerPass.cpp 163 // Calculates the distance of MI from the begining of its parent BB.
239 unsigned Distance = ~0U;
254 if (Delta < Distance) {
255 Distance = Delta;

Completed in 676 milliseconds

1 2 3