Searched refs:a_size (Results 1 - 19 of 19) sorted by relevance

/external/webp/src/enc/
H A Dpicture_enc.c99 uint64_t y_size, uv_size, a_size, total_size; local
116 a_size = (uint64_t)a_stride * height;
118 total_size = y_size + a_size + 2 * uv_size;
146 if (a_size > 0) {
148 mem += a_size;
/external/webp/src/dec/
H A Dbuffer_dec.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_dec.c703 uint8_t* a, size_t a_size, int a_stride) {
709 luma_size = u_size = v_size = a_size = 0;
718 if (a_size == 0 || a_stride == 0) return NULL;
739 idec->output_.u.YUVA.a_size = a_size;
700 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/libvpx/libvpx/test/
H A Dpredict_test.cc102 // Given a block of memory 'a' with size 'a_size', determine if all regions
105 bool CheckBorder(const uint8_t *a, int a_size, const uint8_t *b, int b_width, argument
107 const uint8_t *a_end = a + a_size;
140 for (int pixel = static_cast<int>(b - a + b_size); pixel < a_size;
/external/webp/include/webp/
H A Ddecode.h193 size_t a_size; // alpha-plane size member in struct:WebPYUVABuffer
311 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
311 uint8_t* a, size_t a_size, int a_stride);
/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/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/v8/src/profiler/
H A Dprofile-generator.h322 CodeEntryInfo(CodeEntry* an_entry, unsigned a_size) argument
323 : entry(an_entry), size(a_size) { }
/external/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h1077 void InitCopy(const Element* array, size_t a_size) { argument
1078 Element* const copy = new Element[a_size];
1079 CopyArray(array, a_size, copy);
1081 size_ = a_size;
1086 void InitRef(const Element* array, size_t a_size) { argument
1088 size_ = a_size;
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-internal.h1077 void InitCopy(const Element* array, size_t a_size) { argument
1078 Element* const copy = new Element[a_size];
1079 CopyArray(array, a_size, copy);
1081 size_ = a_size;
1086 void InitRef(const Element* array, size_t a_size) { argument
1088 size_ = a_size;
/external/v8/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h1077 void InitCopy(const Element* array, size_t a_size) { argument
1078 Element* const copy = new Element[a_size];
1079 CopyArray(array, a_size, copy);
1081 size_ = a_size;
1086 void InitRef(const Element* array, size_t a_size) { argument
1088 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/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/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/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h1090 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1094 Element* const copy = new Element[a_size];
1095 CopyArray(array, a_size, copy);
1098 size_ = a_size;
/external/fmtlib/test/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/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 794 milliseconds