Home
last modified time | relevance | path

Searched refs:out_width (Results 1 – 25 of 30) sorted by relevance

12

/third_party/skia/third_party/externals/libjpeg-turbo/simd/
Djsimd.h361 (JDIMENSION out_width, JSAMPIMAGE input_buf, JDIMENSION input_row,
364 (JDIMENSION out_width, JSAMPIMAGE input_buf, JDIMENSION input_row,
367 (JDIMENSION out_width, JSAMPIMAGE input_buf, JDIMENSION input_row,
370 (JDIMENSION out_width, JSAMPIMAGE input_buf, JDIMENSION input_row,
373 (JDIMENSION out_width, JSAMPIMAGE input_buf, JDIMENSION input_row,
376 (JDIMENSION out_width, JSAMPIMAGE input_buf, JDIMENSION input_row,
379 (JDIMENSION out_width, JSAMPIMAGE input_buf, JDIMENSION input_row,
384 (JDIMENSION out_width, JSAMPIMAGE input_buf, JDIMENSION input_row,
387 (JDIMENSION out_width, JSAMPIMAGE input_buf, JDIMENSION input_row,
390 (JDIMENSION out_width, JSAMPIMAGE input_buf, JDIMENSION input_row,
[all …]
/third_party/skia/third_party/externals/libwebp/src/dec/
Dio_dec.c295 const int out_width = io->scaled_width; in InitYUVRescaler() local
297 const int uv_out_width = (out_width + 1) >> 1; in InitYUVRescaler()
302 const size_t work_size = 2 * (size_t)out_width; in InitYUVRescaler()
334 buf->y, out_width, out_height, buf->y_stride, 1, in InitYUVRescaler()
348 buf->a, out_width, out_height, buf->a_stride, 1, in InitYUVRescaler()
490 const int out_width = io->scaled_width; in InitRGBRescaler() local
495 const size_t work_size = 2 * (size_t)out_width; in InitRGBRescaler()
504 tmp_size2 = (uint64_t)num_rescalers * out_width; in InitRGBRescaler()
527 tmp + 0 * out_width, out_width, out_height, 0, 1, in InitRGBRescaler()
530 tmp + 1 * out_width, out_width, out_height, 0, 1, in InitRGBRescaler()
[all …]
Dvp8l_dec.c542 const int out_width = io->scaled_width; in AllocateAndInitRescaler() local
545 const uint64_t work_size = 2 * num_channels * (uint64_t)out_width; in AllocateAndInitRescaler()
547 const uint64_t scaled_data_size = (uint64_t)out_width; in AllocateAndInitRescaler()
567 (uint8_t*)scaled_data, out_width, out_height, in AllocateAndInitRescaler()
/third_party/ffmpeg/libavfilter/
Dvf_sr.c81 int out_width, out_height; in config_output() local
84 result = ff_dnn_get_output(&ctx->dnnctx, inlink->w, inlink->h, &out_width, &out_height); in config_output()
90 if (inlink->w != out_width || inlink->h != out_height) { in config_output()
92 outlink->w = out_width; in config_output()
107 outlink->w = out_width * ctx->scale_factor; in config_output()
Dvf_vpp_qsv.c62 int out_width; member
207 vpp->out_width); in eval_expr()
215 vpp->out_width); in eval_expr()
275 if (vpp->out_height == 0 || vpp->out_width == 0) { in config_input()
276 vpp->out_width = inlink->w; in config_input()
330 outlink->w = vpp->out_width; in config_output()
467 FFSWAP(int, vpp->out_width, vpp->out_height); in config_output()
Dvf_scale_qsv.c157 int out_width, int out_height) in init_out_pool() argument
188 out_frames_ctx->width = FFALIGN(out_width, 16); in init_out_pool()
205 info->CropW = out_width; in init_out_pool()
439 int out_width, int out_height) in init_scale_session() argument
445 ret = init_out_pool(ctx, out_width, out_height); in init_scale_session()
Dvf_scale_cuda.c222 int out_width, int out_height) in init_processing_chain() argument
254 …if (s->passthrough && in_width == out_width && in_height == out_height && in_format == out_format)… in init_processing_chain()
261 ret = init_hwframe_ctx(s, in_frames_ctx->device_ref, out_width, out_height); in init_processing_chain()
265 if (in_width == out_width && in_height == out_height && in init_processing_chain()
Dvf_scale_npp.c519 int out_width, int out_height) in init_processing_chain() argument
559 if (in_width != out_width || in_height != out_height || in init_processing_chain()
564 (out_width > in_width && out_height > in_height)) { in init_processing_chain()
569 !(out_width < in_width && out_height < in_height)) { in init_processing_chain()
594 s->stages[STAGE_RESIZE].planes_out[0].width = out_width; in init_processing_chain()
599 s->stages[STAGE_INTERLEAVE].planes_in[0].width = out_width; in init_processing_chain()
Dvf_transpose_npp.c179 int out_width, int out_height) in init_processing_chain() argument
185 int rot_width = out_width, rot_height = out_height; in init_processing_chain()
224 s->stages[STAGE_TRANSPOSE].planes_out[0].width = out_width; in init_processing_chain()
Dv360.h161 int out_width, out_height; member
Dvf_coreimage.m229 size_t out_width = CGImageGetWidth(out);
232 if (out_width > frame->width || out_height > frame->height) { // this might result in segfault
234 out_width, out_height, frame->width, frame->height);
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderRendering.hpp144 …virtual void getRenderTargetSize(unsigned int n_instances, unsigned int* out_width, unsigned int* …
264 …void getRenderTargetSize(unsigned int n_instances, unsigned int* out_width, unsigned int* out_heig…
359 …void getRenderTargetSize(unsigned int n_instances, unsigned int* out_width, unsigned int* out_heig…
515 …void getRenderTargetSize(unsigned int n_instances, unsigned int* out_width, unsigned int* out_heig…
DesextcGeometryShaderRendering.cpp1404 …ryShaderRenderingPointsCase::getRenderTargetSize(unsigned int n_instances, unsigned int* out_width, in getRenderTargetSize() argument
1411 *out_width = 56; /* as per test spec */ in getRenderTargetSize()
1419 *out_width = 38; /* as per test spec */ in getRenderTargetSize()
1427 *out_width = 48; /* as per test spec */ in getRenderTargetSize()
3004 …tryShaderRenderingLinesCase::getRenderTargetSize(unsigned int n_instances, unsigned int* out_width, in getRenderTargetSize() argument
3026 *out_width = 3 /* 'pixel' size */ * 8 + 3 /* Delta size */ * 7; in getRenderTargetSize()
4764 …haderRenderingTrianglesCase::getRenderTargetSize(unsigned int n_instances, unsigned int* out_width, in getRenderTargetSize() argument
4773 *out_width = 29; /* as per test spec */ in getRenderTargetSize()
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/
Djdcolext-mmx.asm24 ; jsimd_ycc_rgb_convert_mmx(JDIMENSION out_width, JSAMPIMAGE input_buf,
29 %define out_width(b) (b) + 8 ; JDIMENSION out_width
62 mov ecx, JDIMENSION [out_width(eax)] ; num_cols
Djdcolext-sse2.asm24 ; jsimd_ycc_rgb_convert_sse2(JDIMENSION out_width, JSAMPIMAGE input_buf,
29 %define out_width(b) (b) + 8 ; JDIMENSION out_width
62 mov ecx, JDIMENSION [out_width(eax)] ; num_cols
Djdcolext-avx2.asm25 ; jsimd_ycc_rgb_convert_avx2(JDIMENSION out_width, JSAMPIMAGE input_buf,
30 %define out_width(b) (b) + 8 ; JDIMENSION out_width
63 mov ecx, JDIMENSION [out_width(eax)] ; num_cols
/third_party/vk-gl-cts/external/openglcts/modules/glesext/gpu_shader5/
DesextcGPUShader5TextureGatherOffset.hpp73 virtual void getTextureInfo(glw::GLuint& out_width, glw::GLenum& out_texture_internal_format,
258 virtual void getTextureInfo(glw::GLuint& out_width, glw::GLenum& out_texture_internal_format,
/third_party/mesa3d/src/gallium/include/pipe/
Dp_screen.h163 unsigned *out_width, unsigned *out_height);
/third_party/ffmpeg/libavdevice/
Dopengl_enc.c693 int *out_width, int *out_height) in opengl_get_texture_size() argument
696 *out_width = in_width; in opengl_get_texture_size()
704 *out_width = power_of_2; in opengl_get_texture_size()
706 in_width, in_height, *out_width, *out_height); in opengl_get_texture_size()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_sample.c1486 LLVMValueRef *out_width, in lp_build_extract_image_sizes() argument
1495 *out_width = lp_build_extract_broadcast(bld->gallivm, in lp_build_extract_image_sizes()
1519 *out_width = size; in lp_build_extract_image_sizes()
1522 *out_width = lp_build_swizzle_scalar_aos(size_bld, size, 0, 4); in lp_build_extract_image_sizes()
1532 *out_width = lp_build_pack_aos_scalars(bld->gallivm, size_type, in lp_build_extract_image_sizes()
Dlp_bld_sample.h639 LLVMValueRef *out_width,
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/
Djdcolext-sse2.asm25 ; jsimd_ycc_rgb_convert_sse2(JDIMENSION out_width, JSAMPIMAGE input_buf,
30 ; r10d = JDIMENSION out_width
Djdcolext-avx2.asm26 ; jsimd_ycc_rgb_convert_avx2(JDIMENSION out_width, JSAMPIMAGE input_buf,
31 ; r10d = JDIMENSION out_width
/third_party/mesa3d/src/imgui/
Dimgui_draw.cpp1504 void ImFontAtlas::GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height… in GetTexDataAsAlpha8() argument
1515 if (out_width) *out_width = TexWidth; in GetTexDataAsAlpha8()
1520 void ImFontAtlas::GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height… in GetTexDataAsRGBA32() argument
1539 if (out_width) *out_width = TexWidth; in GetTexDataAsRGBA32()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cTextureViewTests.hpp806 …opertiesForTextureType(_texture_type texture_type, glw::GLuint* out_to_id, unsigned int* out_width,

12