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

1 2

  /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/swiftshader/third_party/LLVM/lib/Support/
FileUtilities.cpp 187 size_t A_size = FileAStat->getSize();
191 if (A_size == 0 && B_size == 0)
195 if ((A_size == 0 || B_size == 0)) {
226 if (A_size == B_size &&
227 std::memcmp(File1Start, File2Start, A_size) == 0)
  /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/llvm/lib/Support/
FileUtilities.cpp 202 uint64_t A_size = F1.getBufferSize();
206 if (A_size == B_size &&
207 std::memcmp(File1Start, File2Start, A_size) == 0)
  /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;
  /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/v8/src/profiler/
profile-generator.h 322 CodeEntryInfo(CodeEntry* an_entry, unsigned a_size)
323 : entry(an_entry), size(a_size) { }
  /system/core/libziparchive/
zip_archive_test.cc 324 const uint32_t a_size = data.uncompressed_length; local
325 ASSERT_EQ(a_size, kATxtContents.size());
326 uint8_t* buffer = new uint8_t[a_size];
327 ASSERT_EQ(0, ExtractToMemory(handle, &data, buffer, a_size));
328 ASSERT_EQ(0, memcmp(buffer, kATxtContents.data(), a_size));
  /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...]
  /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/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/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);

Completed in 1237 milliseconds

1 2