HomeSort by relevance Sort by last modified time
    Searched refs:Dest (Results 1 - 25 of 184) sorted by null

1 2 3 4 5 6 7 8

  /external/libvpx/libvpx/vp8/common/
common.h 27 #define vp8_copy( Dest, Src) { \
28 assert( sizeof( Dest) == sizeof( Src)); \
29 vpx_memcpy( Dest, Src, sizeof( Src)); \
34 #define vp8_copy_array( Dest, Src, N) { \
35 assert( sizeof( *Dest) == sizeof( *Src)); \
36 vpx_memcpy( Dest, Src, N * sizeof( *Src)); \
39 #define vp8_zero( Dest) vpx_memset( &Dest, 0, sizeof( Dest));
41 #define vp8_zero_array( Dest, N) vpx_memset( Dest, 0, N * sizeof( *Dest))
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
common.h 27 #define vp8_copy( Dest, Src) { \
28 assert( sizeof( Dest) == sizeof( Src)); \
29 vpx_memcpy( Dest, Src, sizeof( Src)); \
34 #define vp8_copy_array( Dest, Src, N) { \
35 assert( sizeof( *Dest) == sizeof( *Src)); \
36 vpx_memcpy( Dest, Src, N * sizeof( *Src)); \
39 #define vp8_zero( Dest) vpx_memset( &Dest, 0, sizeof( Dest));
41 #define vp8_zero_array( Dest, N) vpx_memset( Dest, 0, N * sizeof( *Dest))
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
common.h 30 #define vp8_copy( Dest, Src) { \
31 assert( sizeof( Dest) == sizeof( Src)); \
32 vpx_memcpy( Dest, Src, sizeof( Src)); \
37 #define vp8_copy_array( Dest, Src, N) { \
38 assert( sizeof( *Dest) == sizeof( *Src)); \
39 vpx_memcpy( Dest, Src, N * sizeof( *Src)); \
42 #define vp8_zero( Dest) vpx_memset( &Dest, 0, sizeof( Dest));
44 #define vp8_zero_array( Dest, N) vpx_memset( Dest, 0, N * sizeof( *Dest))
    [all...]
  /external/eigen/Eigen/src/Core/
EigenBase.h 52 template<typename Dest> inline void evalTo(Dest& dst) const
56 template<typename Dest> inline void addTo(Dest& dst) const
60 typename Dest::PlainObject res(rows(),cols());
66 template<typename Dest> inline void subTo(Dest& dst) const
70 typename Dest::PlainObject res(rows(),cols());
76 template<typename Dest> inline void applyThisOnTheRight(Dest& dst) cons
    [all...]
GeneralProduct.h 227 template<typename ProductType, typename Dest, typename Func>
228 EIGEN_DONT_INLINE void outer_product_selector_run(const ProductType& prod, Dest& dest, const Func& func, const false_type&)
230 typedef typename Dest::Index Index;
233 const Index cols = dest.cols();
235 func(dest.col(j), prod.rhs().coeff(j) * prod.lhs());
239 template<typename ProductType, typename Dest, typename Func>
240 EIGEN_DONT_INLINE void outer_product_selector_run(const ProductType& prod, Dest& dest, const Func& func, const true_type&) {
241 typedef typename Dest::Index Index
    [all...]
ProductBase.h 101 template<typename Dest>
102 inline void evalTo(Dest& dst) const { dst.setZero(); scaleAndAddTo(dst,Scalar(1)); }
104 template<typename Dest>
105 inline void addTo(Dest& dst) const { scaleAndAddTo(dst,Scalar(1)); }
107 template<typename Dest>
108 inline void subTo(Dest& dst) const { scaleAndAddTo(dst,Scalar(-1)); }
110 template<typename Dest>
111 inline void scaleAndAddTo(Dest& dst, const Scalar& alpha) const { derived().scaleAndAddTo(dst,alpha); }
247 template<typename Dest>
248 inline void evalTo(Dest& dst) const { dst.setZero(); scaleAndAddTo(dst, Scalar(1));
    [all...]
  /art/runtime/base/
casts.h 81 template <class Dest, class Source>
82 inline Dest bit_cast(const Source& source) {
83 // Compile time assertion: sizeof(Dest) == sizeof(Source)
84 // A compile error here means your Dest and Source have different sizes.
85 COMPILE_ASSERT(sizeof(Dest) == sizeof(Source), verify_sizes_are_equal);
86 Dest dest; local
87 memcpy(&dest, &source, sizeof(dest));
88 return dest;
    [all...]
  /external/llvm/include/llvm-c/
Linker.h 35 LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
  /frameworks/ex/variablespeed/jni/
macros.h 55 template <class Dest, class Source>
56 inline Dest bit_cast(const Source& source) {
57 // Compile time assertion: sizeof(Dest) == sizeof(Source)
58 // A compile error here means your Dest and Source have different sizes.
59 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 : -1]; // NOLINT
61 Dest dest; local
62 memcpy(&dest, &source, sizeof(dest));
63 return dest;
    [all...]
  /external/clang/lib/Frontend/
ModuleDependencyCollector.cpp 48 SmallString<256> Dest = getDest();
49 llvm::sys::path::append(Dest, "vfs.yaml");
52 llvm::raw_fd_ostream OS(Dest.c_str(), ErrorInfo, llvm::sys::fs::F_Text);
96 SmallString<256> Dest = Collector.getDest();
97 path::append(Dest, path::relative_path(AbsoluteSrc));
100 if (std::error_code EC = fs::create_directories(path::parent_path(Dest),
103 if (std::error_code EC = fs::copy_file(AbsoluteSrc.str(), Dest.str()))
106 Collector.addFileMapping(AbsoluteSrc.str(), Dest.str());
  /external/chromium_org/base/
macros.h 158 // bit_cast<Dest,Source> is a template function that implements the
159 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in
209 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy
212 template <class Dest, class Source>
213 inline Dest bit_cast(const Source& source) {
214 COMPILE_ASSERT(sizeof(Dest) == sizeof(Source), VerifySizesAreEqual);
216 Dest dest; local
217 memcpy(&dest, &source, sizeof(dest));
    [all...]
  /external/chromium_org/third_party/cld/base/
casts.h 90 // bit_cast<Dest,Source> is a template function that implements the
91 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in
141 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy
145 template <class Dest, class Source>
146 inline Dest bit_cast(const Source& source) {
147 // Compile time assertion: sizeof(Dest) == sizeof(Source)
148 // A compile error here means your Dest and Source have different sizes.
149 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 : -1];
151 Dest dest; local
    [all...]
basictypes.h 265 // bit_cast<Dest,Source> is a template function that implements the
266 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in
316 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy
319 template <class Dest, class Source>
320 inline Dest bit_cast(const Source& source) {
321 // Compile time assertion: sizeof(Dest) == sizeof(Source)
322 // A compile error here means your Dest and Source have different sizes.
323 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 : -1];
325 Dest dest; local
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 51 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
54 static void executeFAddInst(GenericValue &Dest, GenericValue Src1,
65 static void executeFSubInst(GenericValue &Dest, GenericValue Src1,
76 static void executeFMulInst(GenericValue &Dest, GenericValue Src1,
87 static void executeFDivInst(GenericValue &Dest, GenericValue Src1,
98 static void executeFRemInst(GenericValue &Dest, GenericValue Src1,
102 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal);
105 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal);
115 Dest.IntVal = APInt(1,Src1.IntVal.OP(Src2.IntVal)); \
121 Dest.AggregateVal.resize( Src1.AggregateVal.size() );
    [all...]
  /external/openfst/src/include/fst/
compat.h 66 template <class Dest, class Source>
67 inline Dest bit_cast(const Source& source) {
68 // Compile time assertion: sizeof(Dest) == sizeof(Source)
69 // A compile error here means your Dest and Source have different sizes.
70 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 :
72 Dest dest; local
73 memcpy(&dest, &source, sizeof(dest));
74 return dest;
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
BiCGSTAB.h 28 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner>
29 bool bicgstab(const MatrixType& mat, const Rhs& rhs, Dest& x,
31 typename Dest::RealScalar& tol_error)
35 typedef typename Dest::RealScalar RealScalar;
36 typedef typename Dest::Scalar Scalar;
224 template<typename Rhs,typename Dest>
225 void _solveWithGuess(const Rhs& b, Dest& x) const
233 typename Dest::ColXpr xj(x,j);
244 template<typename Rhs,typename Dest>
245 void _solve(const Rhs& b, Dest& x) cons
    [all...]
ConjugateGradient.h 26 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner>
28 void conjugate_gradient(const MatrixType& mat, const Rhs& rhs, Dest& x,
30 typename Dest::RealScalar& tol_error)
34 typedef typename Dest::RealScalar RealScalar;
35 typedef typename Dest::Scalar Scalar;
213 template<typename Rhs,typename Dest>
214 void _solveWithGuess(const Rhs& b, Dest& x) const
224 typename Dest::ColXpr xj(x,j);
234 template<typename Rhs,typename Dest>
235 void _solve(const Rhs& b, Dest& x) cons
    [all...]
BasicPreconditioners.h 83 template<typename Rhs, typename Dest>
84 void _solve(const Rhs& b, Dest& x) const
112 template<typename Dest> void evalTo(Dest& dst) const
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
MINRES.h 29 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner>
31 void minres(const MatrixType& mat, const Rhs& rhs, Dest& x,
33 typename Dest::RealScalar& tol_error)
36 typedef typename Dest::RealScalar RealScalar;
37 typedef typename Dest::Scalar Scalar;
250 template<typename Rhs,typename Dest>
251 void _solveWithGuess(const Rhs& b, Dest& x) const
261 typename Dest::ColXpr xj(x,j);
271 template<typename Rhs,typename Dest>
272 void _solve(const Rhs& b, Dest& x) cons
    [all...]
GMRES.h 55 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner>
56 bool gmres(const MatrixType & mat, const Rhs & rhs, Dest & x, const Preconditioner & precond,
57 int &iters, const int &restart, typename Dest::RealScalar & tol_error) {
62 typedef typename Dest::RealScalar RealScalar;
63 typedef typename Dest::Scalar Scalar;
331 template<typename Rhs,typename Dest>
332 void _solveWithGuess(const Rhs& b, Dest& x) const
340 typename Dest::ColXpr xj(x,j);
351 template<typename Rhs,typename Dest>
352 void _solve(const Rhs& b, Dest& x) cons
    [all...]
IncompleteLU.h 73 template<typename Rhs, typename Dest>
74 void _solve(const Rhs& b, Dest& x) const
103 template<typename Dest> void evalTo(Dest& dst) const
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
utils.h 287 template <class Dest, class Source>
288 inline Dest BitCast(const Source& source) {
289 // Compile time assertion: sizeof(Dest) == sizeof(Source)
290 // A compile error here means your Dest and Source have different sizes.
291 COMPILE_ASSERT(sizeof(Dest) == sizeof(Source), VerifySizesAreEqual);
293 Dest dest;
294 memcpy(&dest, &source, sizeof(dest));
295 return dest;
    [all...]
  /external/llvm/include/llvm/Linker/
Linker.h 51 static bool LinkModules(Module *Dest, Module *Src, unsigned Mode,
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 116 MachineBasicBlock *Dest = nullptr;
118 Dest = I->getOperand(2).getMBB();
121 Dest = I->getOperand(1).getMBB();
125 Dest = I->getOperand(0).getMBB();
127 if (!Dest) {
135 if (Dest->getNumber() <= MBB.getNumber()) {
138 // from this block to the dest.
141 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
145 // dest to the number of bytes left in this block.
148 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i
    [all...]
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 235 template<typename Dest, typename Workspace>
236 void evalTo(Dest& dst, Workspace& workspace) const
240 if( internal::is_same<typename internal::remove_all<VectorsType>::type,Dest>::value
280 template<typename Dest> inline void applyThisOnTheRight(Dest& dst) const
282 Matrix<Scalar,1,Dest::RowsAtCompileTime,RowMajor,1,Dest::MaxRowsAtCompileTime> workspace(dst.rows());
287 template<typename Dest, typename Workspace>
288 inline void applyThisOnTheRight(Dest& dst, Workspace& workspace) const
300 template<typename Dest> inline void applyThisOnTheLeft(Dest& dst) cons
    [all...]

Completed in 1275 milliseconds

1 2 3 4 5 6 7 8