Home
last modified time | relevance | path

Searched refs:buf_type (Results 1 – 11 of 11) sorted by relevance

/third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/
Dtest_VIDIOC_CROPCAP.c36 static void do_ioctl_VIDIOC_CROPCAP(enum v4l2_buf_type buf_type, in do_ioctl_VIDIOC_CROPCAP() argument
44 cropcap.type = buf_type; in do_ioctl_VIDIOC_CROPCAP()
49 __FILE__, __LINE__, buf_type, ret_cap, errno_cap, expected_ret); in do_ioctl_VIDIOC_CROPCAP()
56 CU_ASSERT_EQUAL(cropcap.type, buf_type); in do_ioctl_VIDIOC_CROPCAP()
118 cropcap2.type = buf_type; in do_ioctl_VIDIOC_CROPCAP()
/third_party/libdrm/tests/exynos/
Dexynos_fimg2d_test.c293 src_img.buf_type = type; in g2d_copy_test()
303 dst_img.buf_type = G2D_IMGBUF_GEM; in g2d_copy_test()
386 img.buf_type = G2D_IMGBUF_GEM; in g2d_move_test()
396 tmp_img.buf_type = type; in g2d_move_test()
499 src_img.buf_type = type; in g2d_copy_with_scale_test()
513 dst_img.buf_type = G2D_IMGBUF_GEM; in g2d_copy_with_scale_test()
589 src_img.buf_type = type; in g2d_blend_test()
605 dst_img.buf_type = G2D_IMGBUF_GEM; in g2d_blend_test()
689 src_img.buf_type = type; in g2d_checkerboard_test()
695 dst_img.buf_type = G2D_IMGBUF_GEM; in g2d_checkerboard_test()
Dexynos_fimg2d_perf.c52 img.buf_type = G2D_IMGBUF_GEM; in fimg2d_perf_simple()
137 images[i].buf_type = G2D_IMGBUF_GEM; in fimg2d_perf_multi()
Dexynos_fimg2d_event.c305 img.buf_type = G2D_IMGBUF_GEM; in main()
/third_party/mindspore/mindspore/ccsrc/pybind_api/ir/
Dtensor_py.cc202 auto buf_type = GetDataType(buf); in MakeTensor() local
203 if (buf_type == TypeId::kTypeUnknown && data_type == TypeId::kTypeUnknown) { in MakeTensor()
206 MS_LOG(DEBUG) << "data_type: " << data_type << ", buf_type: " << buf_type; in MakeTensor()
207 if (data_type == TypeId::kObjectTypeString || buf_type == TypeId::kObjectTypeString) { in MakeTensor()
212 data_type = buf_type; in MakeTensor()
230 if (data_type == buf_type) { in MakeTensor()
235 return std::make_shared<Tensor>(data_type, shape, buf.ptr, buf_type); in MakeTensor()
/third_party/ffmpeg/libavcodec/
Dlibmp3lame.c180 #define ENCODE_BUFFER(func, buf_type, buf_name) do { \ argument
182 (const buf_type *)buf_name[0], \
183 (const buf_type *)buf_name[1], frame->nb_samples, \
/third_party/mesa3d/src/amd/vulkan/
Dradv_meta_dcc_retile.c34 const struct glsl_type *buf_type = glsl_image_type(dim, false, GLSL_TYPE_UINT); in build_dcc_retile_compute_shader() local
48 nir_variable *input_dcc = nir_variable_create(b.shader, nir_var_uniform, buf_type, "dcc_in"); in build_dcc_retile_compute_shader()
51 nir_variable *output_dcc = nir_variable_create(b.shader, nir_var_uniform, buf_type, "dcc_out"); in build_dcc_retile_compute_shader()
Dradv_meta_bufimage.c220 const struct glsl_type *buf_type = in build_nir_btoi_compute_shader() local
228 nir_variable *input_img = nir_variable_create(b.shader, nir_var_uniform, buf_type, "s_tex"); in build_nir_btoi_compute_shader()
400 const struct glsl_type *buf_type = in build_nir_btoi_r32g32b32_compute_shader() local
408 nir_variable *input_img = nir_variable_create(b.shader, nir_var_uniform, buf_type, "s_tex"); in build_nir_btoi_r32g32b32_compute_shader()
555 const struct glsl_type *buf_type = glsl_sampler_type(dim, false, false, GLSL_TYPE_FLOAT); in build_nir_itoi_compute_shader() local
562 nir_variable *input_img = nir_variable_create(b.shader, nir_var_uniform, buf_type, "s_tex"); in build_nir_itoi_compute_shader()
/third_party/boost/boost/convert/
Dbase.hpp123 using buf_type = char_type[bufsize_]; in to_str_() typedef
125 buf_type buf; in to_str_()
/third_party/libdrm/exynos/
Dexynos_fimg2d.h296 enum e_g2d_buf_type buf_type; member
Dexynos_fimg2d.c284 if (img->buf_type == G2D_IMGBUF_USERPTR) in g2d_add_base_addr()