Home
last modified time | relevance | path

Searched refs:v_size (Results 1 - 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/libwebp/tests/fuzzer/
H A Dsimple_api_fuzzer.c69 size_t v_size = uv_stride * (h + 1) / 2; in LLVMFuzzerTestOneInput() local
73 if (size & 4) v_size--; in LLVMFuzzerTestOneInput()
77 uint8_t* const v_buf = (uint8_t*)malloc(v_size); in LLVMFuzzerTestOneInput()
79 u_buf, u_size, uv_stride, v_buf, v_size, uv_stride); in LLVMFuzzerTestOneInput()
/third_party/skia/third_party/externals/libwebp/src/webp/
H A Ddecode.h125 // 'u_size' and 'v_size' respectively.
132 uint8_t* v, size_t v_size, int v_stride);
195 size_t u_size, v_size; // chroma planes size member
304 // plane by 'v' and 'v_size'. And same for the alpha-plane. The 'a' pointer
313 uint8_t* v, size_t v_size, int v_stride,
321 uint8_t* v, size_t v_size, int v_stride);
/third_party/ffmpeg/libavformat/
H A Dvividas.c685 uint64_t v_size = ffio_read_varlen(pb); in viv_read_packet() local
692 if (v_size > INT_MAX || !v_size) in viv_read_packet()
694 ret = av_get_packet(pb, pkt, v_size); in viv_read_packet()
725 uint64_t v_size = ffio_read_varlen(pb); in viv_read_packet() local
727 if (v_size > INT_MAX || !v_size) in viv_read_packet()
729 ret = av_get_packet(pb, pkt, v_size); in viv_read_packet()
/third_party/skia/third_party/externals/libwebp/src/dec/
H A Dbuffer_dec.c58 const uint64_t v_size = MIN_BUFFER_SIZE(uv_width, uv_height, v_stride); in CheckDecBuffer() local
62 ok &= (v_size <= buf->v_size); in CheckDecBuffer()
136 buf->v_size = (size_t)uv_size; in AllocateBuffer()
H A Didec_dec.c718 uint8_t* v, size_t v_size, int v_stride, in WebPINewYUVA()
725 luma_size = u_size = v_size = a_size = 0; in WebPINewYUVA()
731 if (luma_size == 0 || u_size == 0 || v_size == 0) return NULL; in WebPINewYUVA()
752 idec->output_.u.YUVA.v_size = v_size; in WebPINewYUVA()
761 uint8_t* v, size_t v_size, int v_stride) { in WebPINewYUV()
764 v, v_size, v_stride, in WebPINewYUV()
716 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) WebPINewYUVA() argument
759 WebPINewYUV(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) WebPINewYUV() argument
H A Dwebp_dec.c578 uint8_t* v, size_t v_size, int v_stride) { in WebPDecodeYUVInto()
594 output.u.YUVA.v_size = v_size; in WebPDecodeYUVInto()
575 WebPDecodeYUVInto(const uint8_t* data, size_t data_size, 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) WebPDecodeYUVInto() argument
/third_party/skia/third_party/externals/libwebp/examples/
H A Ddwebp.c172 output_buffer->u.YUVA.v_size = uv_stride * (h + 1) / 2; in AllocateExternalBuffer()
173 tmp += output_buffer->u.YUVA.v_size; in AllocateExternalBuffer()
/third_party/pulseaudio/src/modules/
H A Dmodule-equalizer-sink.c145 #define v_size 4 macro
211 /* ensures memory allocated is a multiple of v_size and aligned */
216 f = PA_ROUND_UP(x*s, sizeof(float)*v_size); in alloc()
425 typedef float v4sf __attribute__ ((__aligned__(v_size * sizeof(float))));
427 float f[v_size];
433 //16 byte aligned addresses and memory allocations divisible by v_size
445 const size_t overlap_size = PA_ROUND_UP(u->overlap_size, v_size); in dsp_logic()
451 for(size_t j = 0; j < u->window_size; j += v_size) { in dsp_logic()
468 for(size_t j = 0; j < FILTER_SIZE; j += v_size / 2) { in dsp_logic()
493 for(size_t j = 0; j < overlap_size; j += v_size) { in dsp_logic()
[all...]
H A Dmodule-virtual-surround-sink.c115 #define v_size 4 macro
120 f = PA_ROUND_UP(x*s, sizeof(float)*v_size); in alloc()
/third_party/python/Tools/demo/
H A Dsortvisu.py522 self.v_size = MyIntVar(self.master, self)
523 self.v_size.set(size)
528 self.m_size = OptionMenu(self.botleftframe, self.v_size, *sizes)
/third_party/node/deps/brotli/c/enc/
H A Dbrotli_bit_stream.c578 static size_t IndexOf(const uint8_t* v, size_t v_size, uint8_t value) { in IndexOf() argument
580 for (; i < v_size; ++i) { in IndexOf()
596 const size_t v_size, in MoveToFrontTransform()
601 if (v_size == 0) { in MoveToFrontTransform()
605 for (i = 1; i < v_size; ++i) { in MoveToFrontTransform()
614 for (i = 0; i < v_size; ++i) { in MoveToFrontTransform()
595 MoveToFrontTransform(const uint32_t* BROTLI_RESTRICT v_in, const size_t v_size, uint32_t* v_out) MoveToFrontTransform() argument
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dbrotli_bit_stream.c578 static size_t IndexOf(const uint8_t* v, size_t v_size, uint8_t value) { in IndexOf() argument
580 for (; i < v_size; ++i) { in IndexOf()
596 const size_t v_size, in MoveToFrontTransform()
601 if (v_size == 0) { in MoveToFrontTransform()
605 for (i = 1; i < v_size; ++i) { in MoveToFrontTransform()
614 for (i = 0; i < v_size; ++i) { in MoveToFrontTransform()
595 MoveToFrontTransform(const uint32_t* BROTLI_RESTRICT v_in, const size_t v_size, uint32_t* v_out) MoveToFrontTransform() argument
/third_party/skia/third_party/externals/libwebp/imageio/
H A Dwebpdec.c209 output_buffer->u.YUVA.v_size = (pic->height + 1) / 2 * pic->uv_stride; in ReadWebP()

Completed in 17 milliseconds