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

12345

/external/tensorflow/tensorflow/core/util/
H A Dpermutation_input_iterator.h72 template <typename Distance>
73 __host__ __device__ __forceinline__ self_type operator+(Distance n) const {
79 template <typename Distance>
80 __host__ __device__ __forceinline__ self_type& operator+=(Distance n) {
86 template <typename Distance>
87 __host__ __device__ __forceinline__ self_type operator-(Distance n) const {
93 template <typename Distance>
94 __host__ __device__ __forceinline__ self_type& operator-=(Distance n) {
99 /// Distance
106 template <typename Distance>
[all...]
H A Dtransform_output_iterator.h92 template <typename Distance>
93 __host__ __device__ __forceinline__ self_type operator+(Distance n) const {
99 template <typename Distance>
100 __host__ __device__ __forceinline__ self_type& operator+=(Distance n) {
106 template <typename Distance>
107 __host__ __device__ __forceinline__ self_type operator-(Distance n) const {
113 template <typename Distance>
114 __host__ __device__ __forceinline__ self_type& operator-=(Distance n) {
119 /// Distance
126 template <typename Distance>
[all...]
/external/flatbuffers/tests/MyGame/Example/
H A DAbility.cs20 public uint Distance { get { return __p.bb.GetUint(__p.bb_pos + 4); } } property in struct:MyGame.Example.Ability
23 public static Offset<Ability> CreateAbility(FlatBufferBuilder builder, uint Id, uint Distance) { argument
25 builder.PutUint(Distance);
H A DAbility.py17 def Distance(self): return self._tab.Get(flatbuffers.number_types.Uint32Flags, self._tab.Pos + flatbuffers.number_types.UOffsetTFlags.py_type(4)) member in class:Ability
/external/vulkan-validation-layers/libs/glm/gtc/
H A Dulp.hpp69 GLM_FUNC_DECL genType next_float(genType const & x, uint const & Distance);
74 GLM_FUNC_DECL genType prev_float(genType const & x, uint const & Distance);
/external/brotli/c/enc/
H A Dbit_cost.c29 #define FN(X) X ## Distance
H A Dcluster.h38 #define FN(X) X ## Distance
H A Dcluster.c48 #define FN(X) X ## Distance
H A Dhistogram.h40 #define FN(X) X ## Distance
/external/clang/unittests/AST/
H A DASTTypeTraitsTest.cpp44 unsigned Distance = 1; local
45 EXPECT_TRUE(DNT<Expr>().isBaseOf(DNT<Expr>(), &Distance)); local
46 EXPECT_EQ(0u, Distance);
48 EXPECT_TRUE(DNT<Stmt>().isBaseOf(DNT<IfStmt>(), &Distance)); local
49 EXPECT_EQ(1u, Distance);
51 Distance = 3;
52 EXPECT_TRUE(DNT<DeclaratorDecl>().isBaseOf(DNT<ParmVarDecl>(), &Distance)); local
53 EXPECT_EQ(2u, Distance);
/external/v8/src/
H A Dlabel.h21 enum Distance { kNear, kFar }; enum in class:v8::internal::Label
68 void link_to(int pos, Distance distance = kFar) {
/external/clang/lib/AST/
H A DASTTypeTraits.cpp42 bool ASTNodeKind::isBaseOf(ASTNodeKind Other, unsigned *Distance) const {
43 return isBaseOf(KindId, Other.KindId, Distance);
47 unsigned *Distance) {
54 if (Distance)
55 *Distance = Dist;
46 isBaseOf(NodeKindId Base, NodeKindId Derived, unsigned *Distance) argument
/external/llvm/lib/Target/Hexagon/
H A DHexagonBranchRelaxation.cpp140 unsigned Distance = 0; local
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);
/external/v8/src/x64/
H A Dmacro-assembler-x64.h157 Label::Distance if_equal_distance = Label::kFar) {
163 Label::Distance if_equal_distance = Label::kFar) {
171 Label::Distance if_not_equal_distance = Label::kFar) {
177 Label::Distance if_not_equal_distance = Label::kFar) {
217 Label::Distance condition_met_distance = Label::kFar);
224 Label::Distance distance = Label::kFar) {
233 Label::Distance distance = Label::kFar) {
240 Label::Distance on_black_distance);
245 Label* value_is_white, Label::Distance distance);
475 Label::Distance near_jum
[all...]
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.h85 Label::Distance if_equal_distance = Label::kFar) {
91 Label::Distance if_equal_distance = Label::kFar) {
99 Label::Distance if_not_equal_distance = Label::kFar) {
105 Label::Distance if_not_equal_distance = Label::kFar) {
134 Label::Distance condition_met_distance = Label::kFar);
138 Label::Distance condition_met_distance = Label::kFar);
143 Label::Distance distance = Label::kFar) {
150 Label::Distance distance = Label::kFar) {
156 Label* has_color, Label::Distance has_color_distance,
161 Label::Distance on_black_distanc
[all...]
/external/v8/src/x87/
H A Dmacro-assembler-x87.h88 Label::Distance if_equal_distance = Label::kFar) {
94 Label::Distance if_equal_distance = Label::kFar) {
102 Label::Distance if_not_equal_distance = Label::kFar) {
108 Label::Distance if_not_equal_distance = Label::kFar) {
137 Label::Distance condition_met_distance = Label::kFar);
141 Label::Distance condition_met_distance = Label::kFar);
146 Label::Distance distance = Label::kFar) {
153 Label::Distance distance = Label::kFar) {
159 Label* has_color, Label::Distance has_color_distance,
164 Label::Distance on_black_distanc
[all...]
/external/skia/src/shaders/gradients/
H A DSkTwoPointConicalGradient.h56 SkScalar getCenterX1() const { return SkPoint::Distance(fCenter1, fCenter2); }
H A DSkTwoPointConicalGradient_gpu.cpp171 if (SkScalarNearlyZero(SkPoint::Distance(center1, center2))) {
176 if (SkScalarNearlyZero(SkPoint::Distance(center1, center2))) {
184 radius2 = radius1 + SkPoint::Distance(center1, center2);
198 SkScalarNearlyZero(SkPoint::Distance(center1, center2))) {
/external/skqp/src/shaders/gradients/
H A DSkTwoPointConicalGradient.h56 SkScalar getCenterX1() const { return SkPoint::Distance(fCenter1, fCenter2); }
H A DSkTwoPointConicalGradient_gpu.cpp171 if (SkScalarNearlyZero(SkPoint::Distance(center1, center2))) {
176 if (SkScalarNearlyZero(SkPoint::Distance(center1, center2))) {
184 radius2 = radius1 + SkPoint::Distance(center1, center2);
198 SkScalarNearlyZero(SkPoint::Distance(center1, center2))) {
/external/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h107 const SCEV *Distance; // NULL implies no distance available. member in struct:llvm::Dependence::DVEntry
109 PeelLast(false), Splitable(false), Distance(nullptr) { }
386 /// 3) Distance - The value d of the dependence distance;
392 enum ConstraintKind { Empty, Point, Distance, Line, Any } Kind; enumerator in enum:llvm::DependenceInfo::Constraint::ConstraintKind
406 /// isDistance - Return true if the constraint is of kind Distance.
407 bool isDistance() const { return Kind == Distance; }
410 /// Since Distance's can also be represented as Lines, we also return
411 /// true if the constraint is of kind Distance.
412 bool isLine() const { return Kind == Line || Kind == Distance; }
451 /// setDistance - Change a constraint to Distance
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DExecutionDepsFix.cpp120 unsigned Distance; member in class:__anon22616::ExeDepsFix
172 dv->Dist = Distance;
422 dv->Dist = Distance;
456 Distance = 0;
491 ++Distance;
/external/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp43 unsigned Distance; local
44 if (!MatcherKind.isBaseOf(To.MatcherKind, &Distance))
48 *Specificity = 100 - Distance;
/external/shaderc/spirv-headers/include/spirv/1.0/
H A DOpenCL.std.h145 Distance = 105, enumerator in enum:OpenCLLIB::Entrypoints
/external/shaderc/spirv-headers/include/spirv/1.1/
H A DOpenCL.std.h145 Distance = 105, enumerator in enum:OpenCLLIB::Entrypoints

Completed in 1109 milliseconds

12345