Home
last modified time | relevance | path

Searched refs:size_y (Results 1 - 19 of 19) sorted by relevance

/third_party/mesa3d/src/intel/compiler/
H A Dbrw_nir_lower_cs_intrinsics.c91 nir_ssa_def *size_y; in lower_cs_intrinsics_convert_block() local
95 size_y = nir_channel(b, size_xyz, 1); in lower_cs_intrinsics_convert_block()
98 size_y = nir_imm_int(b, nir->info.workgroup_size[1]); in lower_cs_intrinsics_convert_block()
100 nir_ssa_def *size_xy = nir_imul(b, size_x, size_y); in lower_cs_intrinsics_convert_block()
129 id_y = nir_umod(b, nir_udiv(b, linear, size_x), size_y); in lower_cs_intrinsics_convert_block()
137 * y = ((linear % 4) + (linear / 4 / size_x) * 4) % size_y in lower_cs_intrinsics_convert_block()
150 size_y); in lower_cs_intrinsics_convert_block()
154 * (0,0) (0,1) (0,2) ... (0,size_y-1) (1,0) (1,1) ... in lower_cs_intrinsics_convert_block()
156 id_y = nir_umod(b, linear, size_y); in lower_cs_intrinsics_convert_block()
157 id_x = nir_umod(b, nir_udiv(b, linear, size_y), size_ in lower_cs_intrinsics_convert_block()
227 nir_ssa_def *size_y = nir_channel(b, size_xyz, 1); lower_cs_intrinsics_convert_block() local
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_unsharp_opencl.c59 cl_int size_y; member
114 int err, p, x, y, size_x, size_y; in unsharp_opencl_make_filter_params() local
133 size_y = (int)ceil(diam_y) | 1; in unsharp_opencl_make_filter_params()
134 matrix_bytes = size_x * size_y * sizeof(float); in unsharp_opencl_make_filter_params()
151 for (y = 0; y < size_y; y++) { in unsharp_opencl_make_filter_params()
152 double dy = (double)(y - size_y / 2) / diam_y; in unsharp_opencl_make_filter_params()
155 for (y = 0; y < size_y; y++) in unsharp_opencl_make_filter_params()
158 for (y = 0; y < size_y; y++) { in unsharp_opencl_make_filter_params()
199 ctx->plane[p].size_y = size_y; in unsharp_opencl_make_filter_params()
[all...]
H A Dvf_avgblur_vulkan.c41 int size_y; member
166 GLSLF(0, #define FILTER_RADIUS (%i) ,s->size_y - 1); in init_filter()
387 { "sizeY", "Set vertical radius", OFFSET(size_y), AV_OPT_TYPE_INT, {.i64 = 3}, 1, 32, .flags = FLAGS },
H A Dvf_deshake_opencl.c781 int size_y, in make_vectors_contig()
786 for (int i = 0; i < size_y; ++i) { in make_vectors_contig()
779 make_vectors_contig( DeshakeOpenCLContext *deshake_ctx, int size_y, int size_x ) make_vectors_contig() argument
/third_party/skia/experimental/tools/
H A Dmskp_parser.py41 offset, size_x, size_y =struct.unpack('Qff', src.read(16))
45 size_x, size_y =struct.unpack('ff', src.read(8))
46 print('size = (%r,%r)' % (size_x, size_y))
/third_party/astc-encoder/Source/
H A Dastcenc_compute_variance.cpp113 int size_y = arg.size_y; in compute_pixel_region_variance() local
132 int padsize_y = size_y + kerneldim; in compute_pixel_region_variance()
363 for (int y = 0; y < size_y; y++) in compute_pixel_region_variance()
395 for (int y = 0; y < size_y; y++) in compute_pixel_region_variance()
430 unsigned int size_y = img.dim_y; in init_compute_averages() local
447 ag.arg.size_y = 0; in init_compute_averages()
460 ag.img_size_y = size_y; in init_compute_averages()
468 unsigned int y_tasks = (size_y + max_blk_size_xy - 1) / max_blk_size_xy; in init_compute_averages()
H A Dastcenc_entry.cpp1014 int size_y = ag.img_size_y; in compute_averages() local
1020 int y_tasks = (size_y + step_xy - 1) / step_xy; in compute_averages()
1040 arg.size_y = astc::min(step_xy, size_y - y); in compute_averages()
H A Dastcenc_internal.h1166 unsigned int size_y; member
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_system_values.c284 nir_ssa_def *size_y = nir_channel(b, size, 1); in lower_id_to_index_no_umod() local
285 nir_ssa_def *size_x_y = nir_imul(b, size_x, size_y); in lower_id_to_index_no_umod()
318 nir_ssa_def *size_y = nir_channel(b, size, 1); in lower_id_to_index() local
321 nir_ssa_def *id_y = nir_umod(b, nir_udiv(b, index, size_x), size_y); in lower_id_to_index()
322 nir_ssa_def *id_z = nir_udiv(b, index, nir_imul(b, size_x, size_y)); in lower_id_to_index()
468 nir_ssa_def *size_y = nir_channel(b, local_size, 1); in lower_compute_system_value_instr() local
476 nir_imul(b, size_x, size_y)); in lower_compute_system_value_instr()
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_encoder.h158 unsigned size_x, unsigned size_y, unsigned size_z, in panfrost_pack_work_groups_compute()
164 unsigned values[6] = { size_x, size_y, size_z, num_x, num_y, num_z }; in panfrost_pack_work_groups_compute()
155 panfrost_pack_work_groups_compute( struct mali_invocation_packed *out, unsigned num_x, unsigned num_y, unsigned num_z, unsigned size_x, unsigned size_y, unsigned size_z, bool quirk_graphics, bool indirect_dispatch) panfrost_pack_work_groups_compute() argument
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_job_common.c274 reg.size_y = util_logbase2_ceil(surface_params->height); in pvr_pbe_pack_state()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl3cClipDistance.hpp120 Framebuffer(const glw::Functions& gl, const glw::GLsizei size_x, const glw::GLsizei size_y);
H A Dgl3cClipDistance.cpp1462 * @param [in] size_y Y size of framebuffer.
1465 const glw::GLsizei size_y) in Framebuffer()
1466 : m_gl(gl), m_size_x(size_x), m_size_y(size_y), m_framebuffer_id(0), m_renderbuffer_id(0) in Framebuffer()
1464 Framebuffer(const glw::Functions& gl, const glw::GLsizei size_x, const glw::GLsizei size_y) Framebuffer() argument
H A Dgl4cDirectStateAccessTexturesTests.cpp5202 GLsizei size_y = s_texture_height * s_block_2d_size_y; in PrepareCompressedStorage() local
5205 gl.compressedTexImage2D(TextureTarget<2>(), 0, internalformat, size_x, size_y, in PrepareCompressedStorage() local
5225 GLsizei size_y = s_texture_height * s_block_3d_size; in PrepareCompressedStorage() local
5229 gl.compressedTexImage3D(TextureTarget<3>(), 0, internalformat, size_x, size_y, size_z, 0, in PrepareCompressedStorage() local
/third_party/backends/backend/
H A Dhp5590_cmds.c264 uint16_t size_y; /* Y pixels in Base DPI (CMD 15) member
1641 scan_params.size_y = htons (scanner_pixels_y); in hp5590_set_scan_area()
/third_party/mesa3d/src/panfrost/lib/genxml/
H A Ddecode.c478 unsigned size_y = bits(invocation.invocations, invocation.size_y_shift, invocation.size_z_shift) + 1; in pandecode_invocation() local
486 size_x, size_y, size_z, in pandecode_invocation()
/third_party/libinput/src/
H A Devdev.c1624 size_t *size_y) in evdev_read_attr_size_prop()
1639 *size_y = dim.y; in evdev_read_attr_size_prop()
1622 evdev_read_attr_size_prop(struct evdev_device *device, size_t *size_x, size_t *size_y) evdev_read_attr_size_prop() argument
/third_party/mesa3d/src/intel/vulkan/
H A DgenX_cmd_buffer.c5531 struct mi_value size_y = mi_mem32(anv_address_add(addr, 4)); in CmdDispatchIndirect() local
5535 mi_store(&b, mi_reg32(GPGPU_DISPATCHDIMY), size_y); in CmdDispatchIndirect()
5549 mi_store(&b, mi_reg32(MI_PREDICATE_SRC0), size_y); in CmdDispatchIndirect()
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_state.c7109 struct mi_value size_y = mi_mem32(ro_bo(bo, grid_size->offset + 4)); in iris_load_indirect_location() local
7112 mi_store(&b, mi_reg32(GPGPU_DISPATCHDIMY), size_y); in iris_load_indirect_location()

Completed in 62 milliseconds