HomeSort by relevance Sort by last modified time
    Searched defs:a_stride (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/libwebp/dec/
buffer.c 48 const int a_stride = abs(buf->a_stride); local
52 const uint64_t a_size = (uint64_t)a_stride * height;
63 ok &= (a_stride >= width);
89 int uv_stride = 0, a_stride = 0; local
100 a_stride = w;
101 a_size = (uint64_t)a_stride * h;
128 buf->a_stride = a_stride;
157 buf->a += (H - 1) * buf->a_stride;
    [all...]
  /external/webp/src/dec/
buffer.c 48 const int a_stride = abs(buf->a_stride); local
52 const uint64_t a_size = (uint64_t)a_stride * height;
63 ok &= (a_stride >= width);
89 int uv_stride = 0, a_stride = 0; local
100 a_stride = w;
101 a_size = (uint64_t)a_stride * h;
128 buf->a_stride = a_stride;
157 buf->a += (H - 1) * buf->a_stride;
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
picture.c 57 picture->a_stride = 0;
96 int a_width, a_stride; local
111 a_stride = a_width;
114 a_size = (uint64_t)a_stride * height;
133 picture->a_stride = a_stride;
  /external/webp/src/enc/
picture.c 57 picture->a_stride = 0;
96 int a_width, a_stride; local
111 a_stride = a_width;
114 a_size = (uint64_t)a_stride * height;
133 picture->a_stride = a_stride;
  /external/webp/examples/
dwebp.c 232 const int a_stride = buffer->u.YUVA.a_stride; local
237 if (fwrite(a + y * a_stride, width, 1, fout) != 1) {
284 ok &= (fwrite(yuv->a + y * yuv->a_stride, width, 1, fout) == 1);
  /external/chromium_org/third_party/libwebp/webp/
decode.h 187 int a_stride; // alpha stride member in struct:WebPYUVABuffer
305 uint8_t* a, size_t a_size, int a_stride);
348 int* width, int* height, int* stride, int* uv_stride, int* a_stride);
encode.h 298 int a_stride; // stride of the alpha plane member in struct:WebPPicture
  /external/webp/include/webp/
decode.h 187 int a_stride; // alpha stride member in struct:WebPYUVABuffer
305 uint8_t* a, size_t a_size, int a_stride);
348 int* width, int* height, int* stride, int* uv_stride, int* a_stride);
encode.h 298 int a_stride; // stride of the alpha plane member in struct:WebPPicture

Completed in 1175 milliseconds