/external/webp/src/dec/ |
D | buffer_dec.c | 59 const uint64_t a_size = MIN_BUFFER_SIZE(width, height, a_stride); in CheckDecBuffer() local 71 ok &= (a_size <= buf->a_size); in CheckDecBuffer() 98 uint64_t uv_size = 0, a_size = 0, total_size; in AllocateBuffer() local 109 a_size = (uint64_t)a_stride * h; in AllocateBuffer() 112 total_size = size + 2 * uv_size + a_size; in AllocateBuffer() 135 buf->a_size = (size_t)a_size; in AllocateBuffer()
|
D | idec_dec.c | 703 uint8_t* a, size_t a_size, int a_stride) { in WebPINewYUVA() argument 709 luma_size = u_size = v_size = a_size = 0; in WebPINewYUVA() 718 if (a_size == 0 || a_stride == 0) return NULL; in WebPINewYUVA() 739 idec->output_.u.YUVA.a_size = a_size; in WebPINewYUVA()
|
/external/valgrind/coregrind/m_demangle/ |
D | vg_libciface.h | 83 static inline void *xmemdup(const void *in, size_t c_size, size_t a_size) { in xmemdup() argument 85 dst = VG_(arena_malloc)(VG_AR_DEMANGLE, "m_demangle.xmemdup", a_size); in xmemdup() 86 if (a_size > c_size) in xmemdup() 87 memset ((char *) dst + c_size, 0, a_size - c_size); in xmemdup()
|
/external/webp/src/enc/ |
D | picture_enc.c | 99 uint64_t y_size, uv_size, a_size, total_size; in WebPPictureAllocYUVA() local 116 a_size = (uint64_t)a_stride * height; in WebPPictureAllocYUVA() 118 total_size = y_size + a_size + 2 * uv_size; in WebPPictureAllocYUVA() 146 if (a_size > 0) { in WebPPictureAllocYUVA() 148 mem += a_size; in WebPPictureAllocYUVA()
|
/external/python/cpython2/Objects/ |
D | longobject.c | 2218 Py_ssize_t a_size, a_bits, shift_digits, shift_bits, x_size; in _PyLong_Frexp() local 2227 a_size = ABS(Py_SIZE(a)); in _PyLong_Frexp() 2228 if (a_size == 0) { in _PyLong_Frexp() 2233 a_bits = bits_in_digit(a->ob_digit[a_size-1]); in _PyLong_Frexp() 2236 if (a_size >= (PY_SSIZE_T_MAX - 1) / PyLong_SHIFT + 1 && in _PyLong_Frexp() 2237 (a_size > (PY_SSIZE_T_MAX - 1) / PyLong_SHIFT + 1 || in _PyLong_Frexp() 2240 a_bits = (a_size - 1) * PyLong_SHIFT + a_bits; in _PyLong_Frexp() 2273 rem = v_lshift(x_digits + x_size, a->ob_digit, a_size, in _PyLong_Frexp() 2275 x_size += a_size; in _PyLong_Frexp() 2282 a_size - shift_digits, (int)shift_bits); in _PyLong_Frexp() [all …]
|
/external/libvpx/libvpx/test/ |
D | predict_test.cc | 105 bool CheckBorder(const uint8_t *a, int a_size, const uint8_t *b, int b_width, in CheckBorder() argument 107 const uint8_t *a_end = a + a_size; in CheckBorder() 140 for (int pixel = static_cast<int>(b - a + b_size); pixel < a_size; in CheckBorder()
|
/external/googletest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 1078 void InitCopy(const Element* array, size_t a_size) { 1079 Element* const copy = new Element[a_size]; 1080 CopyArray(array, a_size, copy); 1082 size_ = a_size; 1087 void InitRef(const Element* array, size_t a_size) { 1089 size_ = a_size;
|
/external/v8/testing/gtest/include/gtest/internal/ |
D | gtest-internal.h | 1077 void InitCopy(const Element* array, size_t a_size) { 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) { 1088 size_ = a_size;
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/ |
D | gtest-internal.h | 1077 void InitCopy(const Element* array, size_t a_size) { 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) { 1088 size_ = a_size;
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/ |
D | gtest-internal.h | 1002 void Init(const Element* array, size_t a_size, RelationToSource relation) { 1006 Element* const copy = new Element[a_size]; 1007 CopyArray(array, a_size, copy); 1010 size_ = a_size;
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-internal.h | 1002 void Init(const Element* array, size_t a_size, RelationToSource relation) { 1006 Element* const copy = new Element[a_size]; 1007 CopyArray(array, a_size, copy); 1010 size_ = a_size;
|
/external/webp/src/webp/ |
D | decode.h | 193 size_t a_size; // alpha-plane size member 311 uint8_t* a, size_t a_size, int a_stride);
|
/external/webp/include/webp/ |
D | decode.h | 193 size_t a_size; // alpha-plane size member 311 uint8_t* a, size_t a_size, int a_stride);
|
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 1090 void Init(const Element* array, size_t a_size, RelationToSource relation) { 1094 Element* const copy = new Element[a_size]; 1095 CopyArray(array, a_size, copy); 1098 size_ = a_size;
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 1099 void Init(const Element* array, size_t a_size, RelationToSource relation) { 1103 Element* const copy = new Element[a_size]; 1104 CopyArray(array, a_size, copy); 1107 size_ = a_size;
|
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
D | gtest-internal.h | 1076 void Init(const Element* array, size_t a_size, RelationToSource relation) { 1080 Element* const copy = new Element[a_size]; 1081 CopyArray(array, a_size, copy); 1084 size_ = a_size;
|
/external/aac/libSYS/src/ |
D | genericStds.cpp | 276 int a_size; in FDKcalloc_L() local 281 a_size = ((dim*size+3)&0xfffffffc); /* force 4 byte alignment (1111 .... 1111 1100) */ in FDKcalloc_L()
|
/external/v8/src/profiler/ |
D | profile-generator.h | 322 CodeEntryInfo(CodeEntry* an_entry, unsigned a_size) in CodeEntryInfo() 323 : entry(an_entry), size(a_size) { } in CodeEntryInfo()
|
/external/fmtlib/test/gtest/ |
D | gtest.h | 7962 void Init(const Element* array, size_t a_size, RelationToSource relation) { 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/ |
D | gtest.h | 7963 void Init(const Element* array, size_t a_size, RelationToSource relation) { 7967 Element* const copy = new Element[a_size]; 7968 CopyArray(array, a_size, copy); 7971 size_ = a_size;
|