Searched defs:a_size (Results 1 - 23 of 23) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DMap.h148 * \param a_size the size of the vector expression
151 inline Map(PointerArgType dataPtr, Index a_size, const StrideType& a_stride = StrideType()) argument
152 : Base(cast_to_pointer_type(dataPtr), a_size), m_stride(a_stride)
H A DPlainObjectBase.h440 EIGEN_STRONG_INLINE PlainObjectBase(Index a_size, Index nbRows, Index nbCols) argument
441 : m_storage(a_size, nbRows, nbCols)
/external/opencv3/3rdparty/libwebp/dec/
H A Dbuffer.c52 const uint64_t a_size = (uint64_t)buf->a_stride * height; local
64 ok &= (a_size <= buf->a_size);
89 uint64_t uv_size = 0, a_size = 0, total_size; local
100 a_size = (uint64_t)a_stride * h;
103 total_size = size + 2 * uv_size + a_size;
126 buf->a_size = (size_t)a_size;
H A Didec.c649 uint8_t* a, size_t a_size, int a_stride) {
655 luma_size = u_size = v_size = a_size = 0;
664 if (a_size == 0 || a_stride == 0) return NULL;
685 idec->output_.u.YUVA.a_size = a_size;
646 WebPINewYUVA(uint8_t* luma, size_t luma_size, int luma_stride, uint8_t* u, size_t u_size, int u_stride, uint8_t* v, size_t v_size, int v_stride, uint8_t* a, size_t a_size, int a_stride) argument
/external/webp/src/dec/
H A Dbuffer.c59 const uint64_t a_size = MIN_BUFFER_SIZE(width, height, a_stride); local
71 ok &= (a_size <= buf->a_size);
98 uint64_t uv_size = 0, a_size = 0, total_size; local
109 a_size = (uint64_t)a_stride * h;
112 total_size = size + 2 * uv_size + a_size;
135 buf->a_size = (size_t)a_size;
H A Didec.c673 uint8_t* a, size_t a_size, int a_stride) {
679 luma_size = u_size = v_size = a_size = 0;
688 if (a_size == 0 || a_stride == 0) return NULL;
709 idec->output_.u.YUVA.a_size = a_size;
670 WebPINewYUVA(uint8_t* luma, size_t luma_size, int luma_stride, uint8_t* u, size_t u_size, int u_stride, uint8_t* v, size_t v_size, int v_stride, uint8_t* a, size_t a_size, int a_stride) argument
/external/webp/src/enc/
H A Dpicture.c98 uint64_t y_size, uv_size, a_size, total_size; local
115 a_size = (uint64_t)a_stride * height;
117 total_size = y_size + a_size + 2 * uv_size;
145 if (a_size > 0) {
147 mem += a_size;
/external/aac/libSYS/src/
H A DgenericStds.cpp276 int a_size; local
281 a_size = ((dim*size+3)&0xfffffffc); /* force 4 byte alignment (1111 .... 1111 1100) */
/external/opencv3/3rdparty/libwebp/webp/
H A Ddecode.h190 size_t a_size; // alpha-plane size member in struct:WebPYUVABuffer
305 uint8_t* a, size_t a_size, int a_stride);
/external/webp/include/webp/
H A Ddecode.h193 size_t a_size; // alpha-plane size member in struct:WebPYUVABuffer
308 uint8_t* a, size_t a_size, int a_stride);
/external/webp/src/webp/
H A Ddecode.h193 size_t a_size; // alpha-plane size member in struct:WebPYUVABuffer
308 uint8_t* a, size_t a_size, int a_stride);
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h1076 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1080 Element* const copy = new Element[a_size];
1081 CopyArray(array, a_size, copy);
1084 size_ = a_size;
/external/gtest/include/gtest/internal/
H A Dgtest-internal.h1002 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1006 Element* const copy = new Element[a_size];
1007 CopyArray(array, a_size, copy);
1010 size_ = a_size;
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h1099 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1103 Element* const copy = new Element[a_size];
1104 CopyArray(array, a_size, copy);
1107 size_ = a_size;
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-internal.h1070 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1074 Element* const copy = new Element[a_size];
1075 CopyArray(array, a_size, copy);
1078 size_ = a_size;
/external/v8/src/profiler/
H A Dprofile-generator.h273 CodeEntryInfo(CodeEntry* an_entry, unsigned a_size) argument
274 : entry(an_entry), size(a_size) { }
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-internal.h1002 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1006 Element* const copy = new Element[a_size];
1007 CopyArray(array, a_size, copy);
1010 size_ = a_size;
/external/opencv/cxcore/src/
H A Dcxmatmul.cpp131 CvSize a_size, CvSize d_size, \
134 int i, j, k, n = a_size.width, m = d_size.width, drows = d_size.height; \
156 n = a_size.height; \
376 CvSize a_size, CvSize d_size, int flags ) \
378 int i, j, k, n = a_size.width, m = d_size.width; \
394 n = a_size.height; \
631 CvSize a_size, d_size; local
701 a_size.width = A->cols;
702 a_size.height = A->rows;
710 if( a_size
[all...]
/external/opencv3/3rdparty/libwebp/enc/
H A Dpicture.c55 uint64_t y_size, uv_size, uv0_size, a_size, total_size; local
82 a_size = (uint64_t)a_stride * height;
84 total_size = y_size + a_size + 2 * uv_size + 2 * uv0_size;
111 if (a_size) {
113 mem += a_size;
/external/opencv3/modules/core/src/
H A Dmatmul.cpp135 Size a_size, Size d_size,
138 int i, j, k, n = a_size.width, m = d_size.width, drows = d_size.height;
161 n = a_size.height;
174 if( a_step > 1 && a_size.height > 1 )
383 Size a_size, Size d_size, int flags )
385 int i, j, k, n = a_size.width, m = d_size.width;
402 n = a_size.height;
579 Size a_size, Size d_size,
583 c_step, d_data, d_step, a_size, d_size,
591 Size a_size, Siz
131 GEMMSingleMul( const T* a_data, size_t a_step, const T* b_data, size_t b_step, const T* c_data, size_t c_step, T* d_data, size_t d_step, Size a_size, Size d_size, double alpha, double beta, int flags ) argument
380 GEMMBlockMul( const T* a_data, size_t a_step, const T* b_data, size_t b_step, WT* d_data, size_t d_step, Size a_size, Size d_size, int flags ) argument
575 GEMMSingleMul_32f( const float* a_data, size_t a_step, const float* b_data, size_t b_step, const float* c_data, size_t c_step, float* d_data, size_t d_step, Size a_size, Size d_size, double alpha, double beta, int flags ) argument
587 GEMMSingleMul_64f( const double* a_data, size_t a_step, const double* b_data, size_t b_step, const double* c_data, size_t c_step, double* d_data, size_t d_step, Size a_size, Size d_size, double alpha, double beta, int flags ) argument
600 GEMMSingleMul_32fc( const Complexf* a_data, size_t a_step, const Complexf* b_data, size_t b_step, const Complexf* c_data, size_t c_step, Complexf* d_data, size_t d_step, Size a_size, Size d_size, double alpha, double beta, int flags ) argument
612 GEMMSingleMul_64fc( const Complexd* a_data, size_t a_step, const Complexd* b_data, size_t b_step, const Complexd* c_data, size_t c_step, Complexd* d_data, size_t d_step, Size a_size, Size d_size, double alpha, double beta, int flags ) argument
624 GEMMBlockMul_32f( const float* a_data, size_t a_step, const float* b_data, size_t b_step, double* d_data, size_t d_step, Size a_size, Size d_size, int flags ) argument
633 GEMMBlockMul_64f( const double* a_data, size_t a_step, const double* b_data, size_t b_step, double* d_data, size_t d_step, Size a_size, Size d_size, int flags ) argument
642 GEMMBlockMul_32fc( const Complexf* a_data, size_t a_step, const Complexf* b_data, size_t b_step, Complexd* d_data, size_t d_step, Size a_size, Size d_size, int flags ) argument
651 GEMMBlockMul_64fc( const Complexd* a_data, size_t a_step, const Complexd* b_data, size_t b_step, Complexd* d_data, size_t d_step, Size a_size, Size d_size, int flags ) argument
890 Size a_size = A.size(), d_size; local
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h7962 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
7966 Element* const copy = new Element[a_size];
7967 CopyArray(array, a_size, copy);
7970 size_ = a_size;
/external/opencv3/modules/ts/include/opencv2/ts/
H A Dts_gtest.h8023 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
8027 Element* const copy = new Element[a_size];
8028 CopyArray(array, a_size, copy);
8031 size_ = a_size;
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest.h7963 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
7967 Element* const copy = new Element[a_size];
7968 CopyArray(array, a_size, copy);
7971 size_ = a_size;

Completed in 694 milliseconds