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

1 2

  /external/valgrind/coregrind/m_demangle/
vg_libciface.h 83 static inline void *xmemdup(const void *in, size_t c_size, size_t a_size) {
85 dst = VG_(arena_malloc)(VG_AR_DEMANGLE, "m_demangle.xmemdup", a_size);
86 if (a_size > c_size)
87 memset ((char *) dst + c_size, 0, a_size - c_size);
  /external/webp/src/enc/
picture_enc.c 99 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/
buffer_dec.c 59 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;
idec_dec.c 703 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;
  /external/libvpx/libvpx/test/
predict_test.cc 102 // 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,
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/
decode.h 193 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/
decode.h 193 size_t a_size; // alpha-plane size member in struct:WebPYUVABuffer
311 uint8_t* a, size_t a_size, int a_stride);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
longobject.c 2216 Py_ssize_t a_size, a_bits, shift_digits, shift_bits, x_size; local
3093 Py_ssize_t a_size, b_size, shift, extra_bits, diff, x_size, x_bits; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
longobject.c 2230 Py_ssize_t a_size, a_bits, shift_digits, shift_bits, x_size; local
3107 Py_ssize_t a_size, b_size, shift, extra_bits, diff, x_size, x_bits; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
longobject.c 2216 Py_ssize_t a_size, a_bits, shift_digits, shift_bits, x_size; local
3093 Py_ssize_t a_size, b_size, shift, extra_bits, diff, x_size, x_bits; local
    [all...]
  /external/python/cpython2/Objects/
longobject.c 2218 Py_ssize_t a_size, a_bits, shift_digits, shift_bits, x_size; local
3095 Py_ssize_t a_size, b_size, shift, extra_bits, diff, x_size, x_bits; local
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-internal.h     [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h     [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h     [all...]
  /toolchain/binutils/binutils-2.25/include/aout/
adobe.h 75 unsigned int a_size:24; /* Segment size */ member in struct:internal_segdesc
  /external/aac/libSYS/src/
genericStds.cpp 276 int a_size; local
281 a_size = ((dim*size+3)&0xfffffffc); /* force 4 byte alignment (1111 .... 1111 1100) */
  /external/v8/src/profiler/
profile-generator.h 322 CodeEntryInfo(CodeEntry* an_entry, unsigned a_size)
323 : entry(an_entry), size(a_size) { }
  /external/googletest/googletest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-internal.h     [all...]
  /external/v8/testing/gtest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/opencv/cxcore/src/
cxmatmul.cpp 131 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
    [all...]

Completed in 1027 milliseconds

1 2