Searched defs:Reverse (Results 1 - 22 of 22) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/
H A DByteArray.cs69 internal static void Reverse(byte[] bytes) method in class:Google.Protobuf.ByteArray
/external/tensorflow/tensorflow/core/kernels/
H A Dreverse_op.h27 struct Reverse { struct in namespace:tensorflow::functor
36 struct Reverse<Device, T, 0> { struct in namespace:tensorflow::functor
H A Dreverse_op_test.cc42 TF_ASSERT_OK(NodeDefBuilder("myop", "Reverse")
186 static Graph* Reverse(const TensorShape& shape, int reverse_axis) { function in namespace:tensorflow::__anon26581
192 test::graph::Reverse(g, test::graph::Constant(g, data),
206 test::Benchmark("cpu", Reverse<T>(shape, 1), &opts).Run(iters);
H A Deigen_backward_spatial_convolutions.h175 ReverseRowMajor>::type Reverse; typedef
176 Reverse kernel_reverse;
/external/pdfium/fxbarcode/common/
H A DBC_CommonBitArray.cpp83 void CBC_CommonBitArray::Reverse() { function in class:CBC_CommonBitArray
/external/tensorflow/tensorflow/core/util/
H A Dbcast.cc22 void BCast::Reverse(Vec* shape) { std::reverse(shape->begin(), shape->end()); } function in class:tensorflow::BCast
42 // Reverse the shape of x and y for convenience.
46 Reverse(&x);
47 Reverse(&y);
145 // Reverse all vectors since x and y were reversed at very
147 Reverse(&x_reshape_);
148 Reverse(&x_bcast_);
149 Reverse(&y_reshape_);
150 Reverse(&y_bcast_);
151 Reverse(
[all...]
/external/eigen/Eigen/src/Core/
H A DReverse.h20 struct traits<Reverse<MatrixType, Direction> >
49 /** \class Reverse
63 template<typename MatrixType, int Direction> class Reverse class in namespace:Eigen
64 : public internal::dense_xpr_base< Reverse<MatrixType, Direction> >::type
68 typedef typename internal::dense_xpr_base<Reverse>::type Base;
69 EIGEN_DENSE_PUBLIC_INTERFACE(Reverse)
88 EIGEN_DEVICE_FUNC explicit inline Reverse(const MatrixType& matrix) : m_matrix(matrix) { } function in class:Eigen::Reverse
90 EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Reverse)
/external/llvm/lib/TableGen/
H A DSetTheory.cpp115 const bool Reverse; member in struct:__anon14149::RotOp
117 RotOp(bool Rev) : Reverse(Rev) {}
121 if (Reverse)
/external/python/cpython2/Tools/scripts/
H A Dfixcid.py271 Reverse = 0 variable
273 global Reverse
274 Reverse = (not Reverse)
300 if Reverse:
/external/python/cpython3/Tools/scripts/
H A Dfixcid.py271 Reverse = 0 variable
273 global Reverse
274 Reverse = (not Reverse)
300 if Reverse:
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DSetTheory.cpp109 const bool Reverse; member in struct:__anon23237::RotOp
111 RotOp(bool Rev) : Reverse(Rev) {}
116 if (Reverse)
/external/brotli/c/enc/
H A Dentropy_encode.c150 static void Reverse(uint8_t* v, size_t start, size_t end) { function
201 Reverse(tree, start, *tree_size);
202 Reverse(extra_bits_data, start, *tree_size);
237 Reverse(tree, start, *tree_size);
238 Reverse(extra_bits_data, start, *tree_size);
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVUtil.h156 SPIRVMap(bool Reverse):IsReverse(Reverse){ argument
/external/tensorflow/tensorflow/core/graph/
H A Dtestlib.cc272 Node* Reverse(Graph* g, Node* tensor, Node* axis) { function in namespace:tensorflow::test::graph
/external/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp456 CallingContext *Ctx, bool Reverse) {
459 if (Reverse)
454 translateBinOp(til::TIL_BinaryOpcode Op, const BinaryOperator *BO, CallingContext *Ctx, bool Reverse) argument
/external/swiftshader/third_party/subzero/src/
H A DIceInst.cpp68 InstIcmp::ICond Reverse; member in struct:Ice::__anon23485::InstIcmpAttributes_
1090 Condition = InstIcmpAttributes[Condition].Reverse;
/external/pdfium/third_party/lcms/src/
H A Dcmspack.c102 int Reverse = T_FLAVOR(info ->InputFormat); local
117 v = Reverse ? REVERSE_FLAVOR_16(v) : v;
150 int Reverse = T_FLAVOR(info ->InputFormat); local
163 wIn[index] = Reverse ? REVERSE_FLAVOR_16(v) : v;
480 int Reverse = T_FLAVOR(info ->InputFormat); local
498 wIn[index] = Reverse ? REVERSE_FLAVOR_16(v) : v;
528 int Reverse= T_FLAVOR(info ->InputFormat); local
545 wIn[index] = Reverse ? REVERSE_FLAVOR_16(v) : v;
926 int Reverse = T_FLAVOR(info ->InputFormat); local
951 if (Reverse)
982 int Reverse = T_FLAVOR(info ->InputFormat); local
1059 int Reverse = T_FLAVOR(info ->InputFormat); local
1111 int Reverse = T_FLAVOR(info ->InputFormat); local
1282 int Reverse = T_FLAVOR(info ->OutputFormat); local
1335 int Reverse = T_FLAVOR(info ->OutputFormat); local
1392 int Reverse = T_FLAVOR(info ->OutputFormat); local
1425 int Reverse= T_FLAVOR(info ->OutputFormat); local
2384 int Reverse = T_FLAVOR(info ->OutputFormat); local
2435 int Reverse = T_FLAVOR(info->OutputFormat); local
2488 int Reverse = T_FLAVOR(info->OutputFormat); local
2537 int Reverse = T_FLAVOR(info->OutputFormat); local
2711 int Reverse = T_FLAVOR(info ->InputFormat); local
2763 int Reverse = T_FLAVOR(info ->InputFormat); local
2813 int Reverse = T_FLAVOR(info->OutputFormat); local
2864 int Reverse = T_FLAVOR(info->OutputFormat); local
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp731 Reverse = Stride < 0;
735 bool isReverse() const { return Reverse; }
800 bool Reverse; member in class:__anon14813::InterleaveGroup
2429 bool Reverse = ConsecutiveStride < 0; local
2554 if (Reverse) {
2597 if (Reverse) {
2613 Entry[Part] = Reverse ? reverseVector(NewLI) : NewLI;
5989 bool Reverse = ConsecutiveStride < 0; local
6034 if (Reverse)
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86ISelLowering.cpp5294 bool Reverse = (NonZeros & 0x3) == 2; local
5296 MaskVec.push_back(Reverse ? 1-i : i);
5297 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5299 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
/external/annotation-tools/asmx/test/lib/
H A Dsaxon7.jarMETA-INF/ META-INF/MANIFEST.MF net/sf/saxon/Compile.class Compile.java package ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 782 milliseconds