Home
last modified time | relevance | path

Searched refs:v_size (Results 1 – 20 of 20) sorted by relevance

/third_party/boost/libs/container/test/
Dsmall_vector_test.cpp101 const std::size_t v_size = v.size(); in test_swap() local
104 if(v.size() != w_size || w.size() != v_size) in test_swap()
113 const std::size_t v_size = v.size(); in test_swap() local
116 if(v.size() != w_size || w.size() != v_size) in test_swap()
128 const std::size_t v_size = v.size(); in test_swap() local
131 if(v.size() != w_size || w.size() != v_size) in test_swap()
143 const std::size_t v_size = v.size(); in test_swap() local
146 if(v.size() != w_size || w.size() != v_size) in test_swap()
/third_party/skia/third_party/externals/libwebp/tests/fuzzer/
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/
Ddecode.h132 uint8_t* v, size_t v_size, int v_stride);
195 size_t u_size, v_size; // chroma planes size member
313 uint8_t* v, size_t v_size, int v_stride,
321 uint8_t* v, size_t v_size, int v_stride);
/third_party/flutter/skia/third_party/externals/libwebp/src/webp/
Ddecode.h135 uint8_t* v, size_t v_size, int v_stride);
198 size_t u_size, v_size; // chroma planes size member
316 uint8_t* v, size_t v_size, int v_stride,
324 uint8_t* v, size_t v_size, int v_stride);
/third_party/ffmpeg/libavformat/
Dvividas.c685 uint64_t v_size = ffio_read_varlen(pb); in viv_read_packet() local
691 if (v_size > INT_MAX || !v_size) in viv_read_packet()
693 ret = av_get_packet(pb, pkt, v_size); in viv_read_packet()
718 uint64_t v_size = ffio_read_varlen(pb); in viv_read_packet() local
720 if (v_size > INT_MAX || !v_size) in viv_read_packet()
722 ret = av_get_packet(pb, pkt, v_size); in viv_read_packet()
/third_party/flutter/skia/third_party/externals/libwebp/src/dec/
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()
137 buf->v_size = (size_t)uv_size; in AllocateBuffer()
Didec_dec.c713 uint8_t* v, size_t v_size, int v_stride, in WebPINewYUVA() argument
720 luma_size = u_size = v_size = a_size = 0; in WebPINewYUVA()
726 if (luma_size == 0 || u_size == 0 || v_size == 0) return NULL; in WebPINewYUVA()
747 idec->output_.u.YUVA.v_size = v_size; in WebPINewYUVA()
756 uint8_t* v, size_t v_size, int v_stride) { in WebPINewYUV() argument
759 v, v_size, v_stride, in WebPINewYUV()
Dwebp_dec.c578 uint8_t* v, size_t v_size, int v_stride) { in WebPDecodeYUVInto() argument
594 output.u.YUVA.v_size = v_size; in WebPDecodeYUVInto()
/third_party/skia/third_party/externals/libwebp/src/dec/
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()
Didec_dec.c718 uint8_t* v, size_t v_size, int v_stride, in WebPINewYUVA() argument
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() argument
764 v, v_size, v_stride, in WebPINewYUV()
Dwebp_dec.c578 uint8_t* v, size_t v_size, int v_stride) { in WebPDecodeYUVInto() argument
594 output.u.YUVA.v_size = v_size; in WebPDecodeYUVInto()
/third_party/skia/third_party/externals/brotli/c/enc/
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() argument
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()
/third_party/node/deps/brotli/c/enc/
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() argument
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()
/third_party/mindspore/mindspore/numpy/
Dmath_ops.py2227 v_size = F.shape_mul(v.shape)
2228 if a_size == 0 or v_size == 0:
2237 if a_size < v_size:
2239 a_size, v_size = v_size, a_size
5850 v_size = F.shape_mul(v.shape)
5853 if v_size > 1:
5855 pad_left = _to_tensor(_list_comprehensions(v_size // 2, 0.0, True))
5856 pad_right = _to_tensor(_list_comprehensions(v_size - v_size // 2 - 1, 0.0, True))
5859 pad = _to_tensor(_list_comprehensions(v_size - 1, 0.0, True))
/third_party/skia/third_party/externals/libwebp/examples/
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/flutter/skia/third_party/externals/libwebp/examples/
Ddwebp.c171 output_buffer->u.YUVA.v_size = uv_stride * (h + 1) / 2; in AllocateExternalBuffer()
172 tmp += output_buffer->u.YUVA.v_size; in AllocateExternalBuffer()
/third_party/pulseaudio/src/modules/
Dmodule-equalizer-sink.c145 #define v_size 4 macro
216 f = PA_ROUND_UP(x*s, sizeof(float)*v_size); in alloc()
422 typedef float v4sf __attribute__ ((__aligned__(v_size * sizeof(float))));
424 float f[v_size];
442 const size_t overlap_size = PA_ROUND_UP(u->overlap_size, v_size); in dsp_logic()
448 for(size_t j = 0; j < u->window_size; j += v_size) { in dsp_logic()
465 for(size_t j = 0; j < FILTER_SIZE; j += v_size / 2) { in dsp_logic()
490 for(size_t j = 0; j < overlap_size; j += v_size) { in dsp_logic()
/third_party/python/Tools/demo/
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/skia/third_party/externals/libwebp/imageio/
Dwebpdec.c209 output_buffer->u.YUVA.v_size = (pic->height + 1) / 2 * pic->uv_stride; in ReadWebP()
/third_party/flutter/skia/third_party/externals/libwebp/imageio/
Dwebpdec.c209 output_buffer->u.YUVA.v_size = (pic->height + 1) / 2 * pic->uv_stride; in ReadWebP()