Home
last modified time | relevance | path

Searched refs:Inverse (Results 1 – 25 of 88) sorted by relevance

1234

/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/
Dmatrix_inverse.inl34 tmat2x2<T, P> Inverse( local
40 return Inverse;
51 tmat3x3<T, P> Inverse(uninitialize); local
52 Inverse[0][0] = + (m[1][1] * m[2][2] - m[2][1] * m[1][2]);
53 Inverse[0][1] = - (m[1][0] * m[2][2] - m[2][0] * m[1][2]);
54 Inverse[0][2] = + (m[1][0] * m[2][1] - m[2][0] * m[1][1]);
55 Inverse[1][0] = - (m[0][1] * m[2][2] - m[2][1] * m[0][2]);
56 Inverse[1][1] = + (m[0][0] * m[2][2] - m[2][0] * m[0][2]);
57 Inverse[1][2] = - (m[0][0] * m[2][1] - m[2][0] * m[0][1]);
58 Inverse[2][0] = + (m[0][1] * m[1][2] - m[1][1] * m[0][2]);
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DGraphTraits.h95 struct Inverse { struct
98 inline Inverse(const GraphType &G) : Graph(G) {} in Inverse() argument
103 template <class T> struct GraphTraits<Inverse<Inverse<T>>> : GraphTraits<T> {};
113 iterator_range<typename GraphTraits<Inverse<GraphType>>::nodes_iterator>
115 return make_range(GraphTraits<Inverse<GraphType>>::nodes_begin(G),
116 GraphTraits<Inverse<GraphType>>::nodes_end(G));
127 iterator_range<typename GraphTraits<Inverse<GraphType>>::ChildIteratorType>
129 return make_range(GraphTraits<Inverse<GraphType>>::child_begin(G),
130 GraphTraits<Inverse<GraphType>>::child_end(G));
DDepthFirstIterator.h259 struct idf_iterator : public df_iterator<Inverse<T>, SetTy, External> {
260 idf_iterator(const df_iterator<Inverse<T>, SetTy, External> &V) in idf_iterator()
261 : df_iterator<Inverse<T>, SetTy, External>(V) {} in idf_iterator()
266 return idf_iterator<T>::begin(Inverse<T>(G)); in idf_begin()
271 return idf_iterator<T>::end(Inverse<T>(G)); in idf_end()
285 idf_ext_iterator(const df_iterator<Inverse<T>, SetTy, true> &V) in idf_ext_iterator()
291 return idf_ext_iterator<T, SetTy>::begin(Inverse<T>(G), S); in idf_ext_begin()
296 return idf_ext_iterator<T, SetTy>::end(Inverse<T>(G), S); in idf_ext_end()
DPostOrderIterator.h214 struct ipo_iterator : public po_iterator<Inverse<T>, SetType, External> {
215 ipo_iterator(const po_iterator<Inverse<T>, SetType, External> &V) : in ipo_iterator()
216 po_iterator<Inverse<T>, SetType, External> (V) {} in ipo_iterator()
239 ipo_ext_iterator(const po_iterator<Inverse<T>, SetType, true> &V) : in ipo_ext_iterator()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
Dfunc_matrix.inl261 tmat2x2<T, P> Inverse( local
267 return Inverse;
281 tmat3x3<T, P> Inverse(uninitialize); local
282 Inverse[0][0] = + (m[1][1] * m[2][2] - m[2][1] * m[1][2]) * OneOverDeterminant;
283 Inverse[1][0] = - (m[1][0] * m[2][2] - m[2][0] * m[1][2]) * OneOverDeterminant;
284 Inverse[2][0] = + (m[1][0] * m[2][1] - m[2][0] * m[1][1]) * OneOverDeterminant;
285 Inverse[0][1] = - (m[0][1] * m[2][2] - m[2][1] * m[0][2]) * OneOverDeterminant;
286 Inverse[1][1] = + (m[0][0] * m[2][2] - m[2][0] * m[0][2]) * OneOverDeterminant;
287 Inverse[2][1] = - (m[0][0] * m[2][1] - m[2][0] * m[0][1]) * OneOverDeterminant;
288 Inverse[0][2] = + (m[0][1] * m[1][2] - m[1][1] * m[0][2]) * OneOverDeterminant;
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DCFG.h322 template <> struct GraphTraits<Inverse<BasicBlock*>> {
326 static NodeRef getEntryNode(Inverse<BasicBlock *> G) { return G.Graph; }
331 template <> struct GraphTraits<Inverse<const BasicBlock*>> {
335 static NodeRef getEntryNode(Inverse<const BasicBlock *> G) { return G.Graph; }
387 template <> struct GraphTraits<Inverse<Function*>> :
388 public GraphTraits<Inverse<BasicBlock*>> {
389 static NodeRef getEntryNode(Inverse<Function *> G) {
393 template <> struct GraphTraits<Inverse<const Function*>> :
394 public GraphTraits<Inverse<const BasicBlock*>> {
395 static NodeRef getEntryNode(Inverse<const Function *> G) {
DCFGDiff.h276 std::pair<const GraphDiff<BasicBlock *, false> *, Inverse<BasicBlock *>>>
280 std::pair<const GraphDiff<BasicBlock *, true> *, Inverse<BasicBlock *>>>
/third_party/flutter/skia/modules/sksg/src/
DSkSGTransform.cpp66 class Inverse final : public Transform { class
70 explicit Inverse(sk_sp<Transform> t) in Inverse() function in sksg::__anone17a1b9b0111::Inverse
77 ~Inverse() override { in ~Inverse()
136 ? sk_sp<Transform>(new Inverse<SkMatrix44>(std::move(t))) in MakeInverse()
137 : sk_sp<Transform>(new Inverse<SkMatrix >(std::move(t))); in MakeInverse()
/third_party/boost/boost/geometry/srs/projections/impl/
Dpj_apply_gridshift.hpp123 template <bool Inverse, typename CalcT>
162 if (! Inverse) in nad_cvt()
333 template <bool Inverse, typename CalcT, typename StreamPolicy, typename Range, typename Grids>
371 nad_cvt<Inverse>(in_lon, in_lat, out_lon, out_lat, *gip); in pj_apply_gridshift_3()
387 template <bool Inverse, typename CalcT, typename StreamPolicy, typename Range, typename SharedGrids>
439 nad_cvt<Inverse>(in_lon, in_lat, out_lon, out_lat, *gip); in pj_apply_gridshift_3()
493 template <bool Inverse, typename Par, typename Range, typename ProjGrids>
512 Inverse, typename Par::type in pj_apply_gridshift_2()
520 template <bool Inverse, typename Par, typename Range>
/third_party/boost/libs/math/doc/distributions/
Dinverse_gaussian.qbk1 [section:inverse_gaussian_dist Inverse Gaussian (or Inverse Normal) Distribution]
25 The Inverse Gaussian distribution distribution is a continuous probability distribution.
28 and 'normal Inverse' distribution.
32 The Inverse Gaussian distribution was first studied in relation to Brownian motion.
33 In 1956 M.C.K. Tweedie used the name Inverse Gaussian because there is an inverse relationship
55 Weisstein, Eric W. "Inverse Gaussian Distribution." From MathWorld--A Wolfram Web Resource.]
153 #The Inverse Gaussian distribution : theory, methodology, and applications, Raj S. Chhikara, J. Ler…
154 #The Inverse Gaussian distribution : statistical theory and applications, Seshadri, V , ISBN - 0387…
164 [endsect] [/section:inverse_gaussian_dist Inverse Gaussian Distribution]
Dinverse_chi_squared.qbk1 [section:inverse_chi_squared_dist Inverse Chi Squared Distribution]
37 [@http://en.wikipedia.org/wiki/Inverse-chi-square_distribution Wikipedia inverse chi_squared distri…
45 * Inverse chi_squared distribution [@http://en.wikipedia.org/wiki/Inverse-chi-square_distribution]
48 * Inverse chi_squared distribution functions [@http://mathworld.wolfram.com/InverseChi-SquaredDistr…
49Inverse chi_squared distribution reference [@http://reference.wolfram.com/mathematica/ref/Inverse…
169 [endsect] [/section:inverse_chi_squared_dist Inverse chi_squared Distribution]
Dinverse_gamma_example.qbk2 [section:inverse_gamma_eg Inverse Gamma Distribution Bayes Example]
6 [endsect] [/section:inverse_gamma_eg Inverse Gamma Distribution Bayes Example]
Dinverse_chi_squared_eg.qbk2 [section:inverse_chi_squared_eg Inverse Chi-Squared Distribution Bayes Example]
24 [endsect] [/section:inverse_chi_squared_eg Inverse Chi-Squared Distribution Bayes Example]
Dinverse_gamma.qbk1 [section:inverse_gamma_dist Inverse Gamma Distribution]
28 See [@http://en.wikipedia.org/wiki/Inverse-gamma_distribution inverse gamma distribution].
120 [endsect] [/section:inverse_gamma_dist Inverse Gamma Distribution]
/third_party/skia/modules/sksg/src/
DSkSGTransform.cpp84 class Inverse final : public Transform { class
88 explicit Inverse(sk_sp<Transform> t) in Inverse() function in sksg::__anon63afc5a60111::Inverse
95 ~Inverse() override { in ~Inverse()
166 ? sk_sp<Transform>(new Inverse<SkM44 >(std::move(t))) in MakeInverse()
167 : sk_sp<Transform>(new Inverse<SkMatrix>(std::move(t))); in MakeInverse()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DLoopInfoImpl.h91 for (BlockT *Predecessor : children<Inverse<BlockT *>>(EB)) in hasDedicatedExits()
195 for (const auto Pred : children<Inverse<BlockT *>>(Header)) { in getLoopPredecessor()
213 for (const auto Pred : children<Inverse<BlockT *>>(Header)) { in getLoopLatch()
305 assert(std::any_of(GraphTraits<Inverse<BlockT *>>::child_begin(BB), in verifyLoop()
306 GraphTraits<Inverse<BlockT *>>::child_end(BB), in verifyLoop()
311 std::for_each(GraphTraits<Inverse<BlockT *>>::child_begin(BB), in verifyLoop()
312 GraphTraits<Inverse<BlockT *>>::child_end(BB), in verifyLoop()
421 typedef GraphTraits<Inverse<BlockT *>> InvBlockTraits; in discoverAndMapSubloop()
464 for (const auto Pred : children<Inverse<BlockT *>>(PredBB)) { in discoverAndMapSubloop()
547 for (const auto Backedge : children<Inverse<BlockT *>>(Header)) { in analyze()
DInterval.h130 template <> struct GraphTraits<Inverse<Interval*>> {
134 static NodeRef getEntryNode(Inverse<Interval *> G) { return G.Graph; }
/third_party/boost/boost/geometry/formulas/
Dgnomonic_spheroid.hpp38 template <typename, bool, bool, bool, bool ,bool> class Inverse,
43 typedef Inverse<CT, false, true, true, true, true> inverse_type;
Dgnomonic_intersection.hpp38 template <typename, bool, bool, bool, bool, bool> class Inverse,
72 typedef gnomonic_spheroid<CT, Inverse, Direct> gnom_t; in apply()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineFunction.h1067 template <> struct GraphTraits<Inverse<MachineFunction*>> :
1068 public GraphTraits<Inverse<MachineBasicBlock*>> {
1069 static NodeRef getEntryNode(Inverse<MachineFunction *> G) {
1073 template <> struct GraphTraits<Inverse<const MachineFunction*>> :
1074 public GraphTraits<Inverse<const MachineBasicBlock*>> {
1075 static NodeRef getEntryNode(Inverse<const MachineFunction *> G) {
DMachineBasicBlock.h894 template <> struct GraphTraits<Inverse<MachineBasicBlock*>> {
898 static NodeRef getEntryNode(Inverse<MachineBasicBlock *> G) {
906 template <> struct GraphTraits<Inverse<const MachineBasicBlock*>> {
910 static NodeRef getEntryNode(Inverse<const MachineBasicBlock *> G) {
/third_party/boost/libs/math/doc/sf/
Dinv_hyper.qbk22 [section:inv_hyper Inverse Hyperbolic Functions]
24 [section:inv_hyper_over Inverse Hyperbolic Functions Overview]
74 [endsect] [/section:inv_hyper_over Inverse Hyperbolic Functions Overview]
281 [endsect] [/section:inv_hyper Inverse Hyperbolic Functions]
/third_party/flutter/skia/site/dev/present/
Dpathops.md27 ## [Path Ops Inverse Fill Illustration](https://drive.google.com/file/d/0BwoLUwz9PYkHLWpsaXd0UDdaN0…
/third_party/skia/site/docs/dev/present/
Dpathops.md32 ## [Path Ops Inverse Fill Illustration](https://drive.google.com/file/d/0BwoLUwz9PYkHLWpsaXd0UDdaN0…
/third_party/boost/libs/geometry/test/formulas/
Ddirect_accuracy.cpp64 GeographicLibWGS84.Inverse(0.0, 0.0, latitude, longitude, distance_m, azimuth, azi2); in test_main()

1234