HomeSort by relevance Sort by last modified time
    Searched refs:ArrayWrapper (Results 1 - 13 of 13) sorted by null

  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
array_wrapper.h 20 class ArrayWrapper {
30 ArrayWrapper() : buffer_(nullptr), capacity_(0), end_(0) {}
32 ArrayWrapper(pointer buffer, size_type capacity, size_type size)
37 ArrayWrapper(pointer buffer, size_type size)
38 : ArrayWrapper(buffer, size, size) {}
40 ArrayWrapper(const ArrayWrapper& other) { *this = other; }
42 ArrayWrapper(ArrayWrapper&& other) { *this = std::move(other); }
44 ArrayWrapper& operator=(const ArrayWrapper& other)
    [all...]
type_operators.h 40 // 1. std:vector<T, Any...> is convertible to ArrayWrapper<T>.
41 // 2. ArrayWrapper<T> is convertible to std:vector<T, Any...>.
95 // Compares std::vector, std::array, and ArrayWrapper; these are convertible if
98 struct IsConvertible<std::vector<A, Any...>, ArrayWrapper<B>>
101 struct IsConvertible<ArrayWrapper<A>, std::vector<B, Any...>>
110 struct IsConvertible<ArrayWrapper<A>, std::array<B, Size>>
113 struct IsConvertible<std::array<A, Size>, ArrayWrapper<B>>
serialization.h 58 // * ArrayWrapper of any supported basic type.
273 inline std::size_t GetSerializedSize(const ArrayWrapper<T>&);
378 // Overload for ArrayWrapper types.
380 inline std::size_t GetSerializedSize(const ArrayWrapper<T>& v) {
621 // Serializes the type code for std::vector and ArrayWrapper. These types are
629 inline void SerializeType(const ArrayWrapper<T>& value, void*& buffer) {
634 // format as std::vector and ArrayWrapper and is interchangeable in certain
857 inline void SerializeObject(const ArrayWrapper<T>&, MessageWriter*, void*&);
    [all...]
encoding.h 460 inline constexpr EncodingType EncodeType(const ArrayWrapper<T>& value) {
  /external/eigen/Eigen/src/Core/
ArrayWrapper.h 15 /** \class ArrayWrapper
28 struct traits<ArrayWrapper<ExpressionType> >
42 class ArrayWrapper : public ArrayBase<ArrayWrapper<ExpressionType> >
45 typedef ArrayBase<ArrayWrapper> Base;
46 EIGEN_DENSE_PUBLIC_INTERFACE(ArrayWrapper)
47 EIGEN_INHERIT_ASSIGNMENT_OPERATORS(ArrayWrapper)
61 explicit EIGEN_STRONG_INLINE ArrayWrapper(ExpressionType& matrix) : m_expression(matrix) {}
121 * \sa MatrixBase::matrix(), class ArrayWrapper
MatrixBase.h 326 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ArrayWrapper<Derived> array() { return ArrayWrapper<Derived>(derived()); }
329 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const ArrayWrapper<const Derived> array() const { return ArrayWrapper<const Derived>(derived()); }
CoreEvaluators.h 42 // - unary_evaluator for expressions taking only one arguments (CwiseUnaryOp, CwiseUnaryView, Transpose, MatrixWrapper, ArrayWrapper, Reverse, Replicate)
    [all...]
  /system/keymaster/include/keymaster/
android_keymaster_utils.h 163 * ArrayWrapper is a trivial wrapper around a C-style array that provides begin() and end()
167 template <typename T> class ArrayWrapper {
169 ArrayWrapper(T* array, size_t size) : begin_(array), end_(array + size) {}
179 template <typename T> ArrayWrapper<T> array_range(T* begin, size_t length) {
180 return ArrayWrapper<T>(begin, length);
183 template <typename T, size_t n> ArrayWrapper<T> array_range(T (&a)[n]) {
184 return ArrayWrapper<T>(a, n);
  /external/eigen/test/
array_for_matrix.cpp 251 ArrayWrapper<const Matrix4i> MA = M.array();
256 VERIFY((internal::traits<ArrayWrapper<const Matrix4i> >::Flags&LvalueBit)==0);
259 VERIFY((internal::traits<ArrayWrapper<Matrix4i> >::Flags&LvalueBit)==LvalueBit);
  /external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h 130 template<typename ExpressionType> class ArrayWrapper;
  /frameworks/native/libs/vr/libpdx/
serialization_tests.cpp 1047 TEST(SerializationTest, ArrayWrapper) {
1051 ArrayWrapper<std::uint8_t> wrapper;
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/
nashorn.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/
nashorn.jar 

Completed in 388 milliseconds