/third_party/boost/libs/numeric/ublas/test/ |
D | test_coordinate_matrix_inplace_merge.cpp | 41 void print_entries(size_t size_x, size_t size_y, in print_entries() argument 44 std::cerr << "Error - Size:" << size_x << " x " << size_y << ". Entries: "; in print_entries() 62 size_t size_y = size + rand() % dim_var; in BOOST_UBLAS_TEST_DEF() local 64 boost::numeric::ublas::coordinate_matrix<double> matrix_coord(size_x, size_y); in BOOST_UBLAS_TEST_DEF() 65 boost::numeric::ublas::matrix<double> matrix_dense(size_x, size_y, 0); in BOOST_UBLAS_TEST_DEF() 72 int y = rand() % size_y; in BOOST_UBLAS_TEST_DEF() 83 print_entries(size_x, size_y, entries); in BOOST_UBLAS_TEST_DEF() 91 int y = rand() % size_y; in BOOST_UBLAS_TEST_DEF() 102 print_entries(size_x, size_y, entries); in BOOST_UBLAS_TEST_DEF()
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_nir_lower_cs_intrinsics.c | 83 nir_ssa_def *size_y; in lower_cs_intrinsics_convert_block() local 87 size_y = nir_channel(b, size_xyz, 1); in lower_cs_intrinsics_convert_block() 90 size_y = nir_imm_int(b, nir->info.workgroup_size[1]); in lower_cs_intrinsics_convert_block() 92 nir_ssa_def *size_xy = nir_imul(b, size_x, size_y); in lower_cs_intrinsics_convert_block() 121 id_y = nir_umod(b, nir_udiv(b, linear, size_x), size_y); in lower_cs_intrinsics_convert_block() 142 size_y); in lower_cs_intrinsics_convert_block() 148 id_y = nir_umod(b, linear, size_y); in lower_cs_intrinsics_convert_block() 149 id_x = nir_umod(b, nir_udiv(b, linear, size_y), size_x); in lower_cs_intrinsics_convert_block() 165 id_y = nir_umod(b, nir_udiv(b, linear, size_x), size_y); in lower_cs_intrinsics_convert_block() 195 nir_umod(b, y, size_y), in lower_cs_intrinsics_convert_block() [all …]
|
/third_party/boost/libs/gil/test/core/image/ |
D | test_fixture.hpp | 55 auto generate_image(std::ptrdiff_t size_x, std::ptrdiff_t size_y, Generator&& generate) -> Image in generate_image() argument 59 Image out(size_x, size_y); in generate_image() 68 auto create_image(std::ptrdiff_t size_x, std::ptrdiff_t size_y, int channel_value) -> Image in create_image() argument 74 Image out(size_x, size_y); in create_image()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_unsharp_opencl.c | 59 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() 254 CL_SET_KERNEL_ARG(ctx->kernel, 3, cl_int, &ctx->plane[p].size_y); in unsharp_opencl_filter_frame()
|
D | vf_avgblur_vulkan.c | 40 int size_y; member 163 GLSLF(0, #define FILTER_RADIUS (%i) ,s->size_y - 1); 376 …{ "sizeY", "Set vertical radius", OFFSET(size_y), AV_OPT_TYPE_INT, {.i64 = 3}, 1, 32, .flags = FL…
|
D | vf_deshake_opencl.c | 789 int size_y, in make_vectors_contig() argument 794 for (int i = 0; i < size_y; ++i) { in make_vectors_contig()
|
/third_party/ffmpeg/libavfilter/opencl/ |
D | unsharp.cl | 22 int size_y, 29 int2 centre = (int2)(size_x / 2, size_y / 2); 35 for (y = 0; y < size_y; y++) { 49 int size_y, 63 int rad_y = size_y / 2; 93 for (y = 0; y < size_y; y++)
|
D | deshake.cl | 268 int size_y, 271 float2 offset = ((float2)(size_x, size_y) - 1.0f) * 0.5f; 273 for (int i = 0; i < size_y; i++) {
|
/third_party/skia/experimental/tools/ |
D | mskp_parser.py | 41 offset, size_x, size_y =struct.unpack('Qff', src.read(16)) variable 45 size_x, size_y =struct.unpack('ff', src.read(8)) variable 46 print('size = (%r,%r)' % (size_x, size_y))
|
/third_party/flutter/skia/experimental/tools/ |
D | mskp_parser.py | 41 offset, size_x, size_y =struct.unpack('Qff', src.read(16)) variable 45 size_x, size_y =struct.unpack('ff', src.read(8)) variable 46 print('size = (%r,%r)' % (size_x, size_y))
|
/third_party/mesa3d/src/panfrost/lib/ |
D | pan_encoder.h | 160 unsigned size_x, unsigned size_y, unsigned size_z, in panfrost_pack_work_groups_compute() argument 166 unsigned values[6] = { size_x, size_y, size_z, num_x, num_y, num_z }; in panfrost_pack_work_groups_compute()
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_lower_system_values.c | 409 nir_ssa_def *size_y = in lower_compute_system_value_instr() local 418 nir_imul(b, size_x, size_y)); in lower_compute_system_value_instr()
|
/third_party/mindspore/tests/ut/python/parameter_feature/ |
D | test_parameter.py | 277 size_y = self.shape(y)[2] 278 ret = self.loss_fn(x, y, z, size_x, size_y)
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl3cClipDistance.hpp | 120 Framebuffer(const glw::Functions& gl, const glw::GLsizei size_x, const glw::GLsizei size_y);
|
D | gl3cClipDistance.cpp | 1465 const glw::GLsizei size_y) in Framebuffer() argument 1466 : m_gl(gl), m_size_x(size_x), m_size_y(size_y), m_framebuffer_id(0), m_renderbuffer_id(0) in Framebuffer()
|
D | gl4cDirectStateAccessTexturesTests.cpp | 5202 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() 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()
|
/third_party/mesa3d/src/panfrost/lib/genxml/ |
D | decode.c | 474 …unsigned size_y = bits(invocation.invocations, invocation.size_y_shift, invocation.size_z_shift) +… in pandecode_invocation() local 482 size_x, size_y, size_z, in pandecode_invocation()
|
/third_party/libinput/src/ |
D | evdev.c | 1504 size_t *size_y) in evdev_read_attr_size_prop() argument 1519 *size_y = dim.y; in evdev_read_attr_size_prop()
|
/third_party/mesa3d/src/intel/vulkan/ |
D | genX_cmd_buffer.c | 5050 struct mi_value size_y = mi_mem32(anv_address_add(addr, 4)); in genX() local 5054 mi_store(&b, mi_reg32(GPGPU_DISPATCHDIMY), size_y); in genX() 5068 mi_store(&b, mi_reg32(MI_PREDICATE_SRC0), size_y); in genX()
|