Home
last modified time | relevance | path

Searched refs:target (Results 4601 - 4625 of 7599) sorted by relevance

1...<<181182183184185186187188189190>>...304

/third_party/python/Lib/
H A Dpydoc.py2127 target = self.topics.get(topic, self.keywords.get(topic))
2128 if not target:
2131 if type(target) is type(''):
2132 return self.showtopic(target, more_xrefs)
2134 label, xrefs = target
2166 target = self.topics.get(topic, self.keywords.get(topic))
2167 if not target:
2169 if isinstance(target, str):
2170 return self._gettopic(target, more_xrefs)
2171 label, xrefs = target
[all...]
/kernel/linux/linux-5.10/drivers/media/v4l2-core/
H A Dv4l2-ioctl.c640 pr_cont("type=%s, target=%d, flags=0x%x, wxh=%dx%d, x,y=%d,%d\n", in v4l_print_selection()
642 p->target, p->flags, in v4l_print_selection()
2409 s.target = V4L2_SEL_TGT_COMPOSE; in v4l_g_crop()
2411 s.target = V4L2_SEL_TGT_CROP; in v4l_g_crop()
2414 s.target = s.target == V4L2_SEL_TGT_COMPOSE ? in v4l_g_crop()
2439 s.target = V4L2_SEL_TGT_COMPOSE; in v4l_s_crop()
2441 s.target = V4L2_SEL_TGT_CROP; in v4l_s_crop()
2444 s.target = s.target in v4l_s_crop()
[all...]
/kernel/linux/linux-6.6/drivers/media/v4l2-core/
H A Dv4l2-ioctl.c606 pr_cont("type=%s, target=%d, flags=0x%x, wxh=%dx%d, x,y=%d,%d\n", in v4l_print_selection()
608 p->target, p->flags, in v4l_print_selection()
2445 s.target = V4L2_SEL_TGT_COMPOSE; in v4l_g_crop()
2447 s.target = V4L2_SEL_TGT_CROP; in v4l_g_crop()
2450 s.target = s.target == V4L2_SEL_TGT_COMPOSE ? in v4l_g_crop()
2475 s.target = V4L2_SEL_TGT_COMPOSE; in v4l_s_crop()
2477 s.target = V4L2_SEL_TGT_CROP; in v4l_s_crop()
2480 s.target = s.target in v4l_s_crop()
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_state.c163 enum pipe_texture_target target, in r600_is_format_supported()
171 if (target >= PIPE_MAX_TEXTURE_TYPES) { in r600_is_format_supported()
172 R600_ERR("r600: unsupported texture type %d\n", target); in r600_is_format_supported()
204 if (target == PIPE_BUFFER) { in r600_is_format_supported()
690 if (texture->target == PIPE_BUFFER) in r600_create_sampler_view_custom()
733 if (texture->target == PIPE_TEXTURE_1D_ARRAY) { in r600_create_sampler_view_custom()
736 } else if (texture->target == PIPE_TEXTURE_2D_ARRAY) { in r600_create_sampler_view_custom()
738 } else if (texture->target == PIPE_TEXTURE_CUBE_ARRAY) in r600_create_sampler_view_custom()
755 view->tex_resource_words[0] = (S_038000_DIM(r600_tex_dim(texture->target, texture->nr_samples)) | in r600_create_sampler_view_custom()
1842 enum pipe_texture_target target in r600_emit_sampler_states() local
161 r600_is_format_supported(struct pipe_screen *screen, enum pipe_format format, enum pipe_texture_target target, unsigned sample_count, unsigned storage_sample_count, unsigned usage) r600_is_format_supported() argument
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
H A Dvariant_test.cc705 Variant target(TypeParam(value.value + 1)); in TYPED_TEST()
707 ASSERT_TRUE(absl::holds_alternative<TypeParam>(target)); in TYPED_TEST()
708 ASSERT_NE(absl::get<TypeParam>(source), absl::get<TypeParam>(target)); in TYPED_TEST()
709 target = source; in TYPED_TEST()
711 ASSERT_TRUE(absl::holds_alternative<TypeParam>(target)); in TYPED_TEST()
712 EXPECT_EQ(absl::get<TypeParam>(source), absl::get<TypeParam>(target)); in TYPED_TEST()
723 Variant target(value_type1(1)); in TYPED_TEST()
724 ASSERT_TRUE(absl::holds_alternative<value_type1>(target)); in TYPED_TEST()
725 target = source; in TYPED_TEST()
727 EXPECT_TRUE(absl::holds_alternative<TypeParam>(target)); in TYPED_TEST()
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fRasterizationTests.cpp117 BaseRenderingCase (Context& context, const char* name, const char* desc, RenderTarget target, int numSamples, int renderSize);
148 BaseRenderingCase::BaseRenderingCase (Context& context, const char* name, const char* desc, RenderTarget target, int numSamples, int renderSize) in BaseRenderingCase() argument
155 , m_renderTarget (target) in BaseRenderingCase()
184 throw tcu::NotSupportedError(std::string("Render target size must be at least ") + de::toString(m_renderSize) + "x" + de::toString(m_renderSize));
231 throw tcu::NotSupportedError("could not create target texture, got out of memory");
254 throw tcu::NotSupportedError("could not create target texture, got out of memory");
267 // Resolve (blitFramebuffer) target fbo for MSAA targets
281 throw tcu::NotSupportedError("could not create blit target, got out of memory");
2353 BaseRenderingCase::RenderTarget target;
2380 primitiveGroup->addChild(new TrianglesCase (m_context, "triangles", "Render primitives as GL_TRIANGLES, verify rasterization result", renderTargets[targetNdx].target, renderTarget
[all...]
/third_party/python/Python/
H A DPython-ast.c252 Py_CLEAR(state->target); in _PyAST_Fini()
349 if ((state->target = PyUnicode_InternFromString("target")) == NULL) return 0; in init_identifiers()
433 "target",
438 "target",
444 "target",
451 "target",
530 "target",
644 "target",
1139 " | AugAssign(expr target, operato in init_types()
2114 _PyAST_AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_AugAssign() argument
2148 _PyAST_AnnAssign(expr_ty target, expr_ty annotation, expr_ty value, int simple, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_AnnAssign() argument
2179 _PyAST_For(expr_ty target, expr_ty iter, asdl_stmt_seq * body, asdl_stmt_seq * orelse, string type_comment, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_For() argument
2211 _PyAST_AsyncFor(expr_ty target, expr_ty iter, asdl_stmt_seq * body, asdl_stmt_seq * orelse, string type_comment, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_AsyncFor() argument
2604 _PyAST_NamedExpr(expr_ty target, expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_NamedExpr() argument
3260 _PyAST_comprehension(expr_ty target, expr_ty iter, asdl_expr_seq * ifs, int is_async, PyArena *arena) _PyAST_comprehension() argument
6487 expr_ty target; obj2ast_stmt() local
6553 expr_ty target; obj2ast_stmt() local
6637 expr_ty target; obj2ast_stmt() local
6779 expr_ty target; obj2ast_stmt() local
8300 expr_ty target; obj2ast_expr() local
10218 expr_ty target; obj2ast_comprehension() local
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/singlever/
H A Dsingle_ver_sync_state_machine.cpp957 SingleVerSyncTarget target; in PreStartPullResponse() local
958 context_->PopResponseTarget(target); in PreStartPullResponse()
959 context_->SetEndMark(target.GetEndWaterMark()); in PreStartPullResponse()
960 context_->SetResponseSessionId(target.GetResponseSessionId()); in PreStartPullResponse()
963 context_->SetQuerySync(target.IsQuerySync()); in PreStartPullResponse()
964 context_->SetQuery(target.GetQuery()); in PreStartPullResponse()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Dcallbacks.c153 static FILLP_INT FillpSysAdptArchAtomicSet(SysArchAtomic *target, FILLP_INT newValue) in FillpSysAdptArchAtomicSet() argument
155 return atomic_set(target, newValue); in FillpSysAdptArchAtomicSet()
183 static FILLP_INT FillpSysAdptArchAtomicSet(SysArchAtomic *target, FILLP_INT newValue) in FillpSysAdptArchAtomicSet() argument
185 return target->counter = newValue; in FillpSysAdptArchAtomicSet()
216 static FILLP_INT FillpSysAdptArchAtomicSet(SysArchAtomic *target, IN FILLP_INT value) in FillpSysAdptArchAtomicSet() argument
218 return InterlockedExchange((LONG volatile *)(uintptr_t)target, value); in FillpSysAdptArchAtomicSet()
/foundation/graphic/graphic_2d/frameworks/opengl_wrapper/src/EGL/
H A Degl_wrapper_entry.cpp91 EGLBoolean EglCopyBuffersImpl(EGLDisplay dpy, EGLSurface surf, NativePixmapType target) in EglCopyBuffersImpl() argument
100 return display->CopyBuffers(surf, target); in EglCopyBuffersImpl()
735 EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attribList) in EglCreateImageImpl()
744 return display->CreateImage(ctx, target, buffer, attribList); in EglCreateImageImpl()
840 EGLenum target, EGLClientBuffer buffer, const EGLint *attribList) in EglCreateImageKHRImpl()
849 return display->CreateImageKHR(ctx, target, buffer, attribList); in EglCreateImageKHRImpl()
734 EglCreateImageImpl(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attribList) EglCreateImageImpl() argument
839 EglCreateImageKHRImpl(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attribList) EglCreateImageKHRImpl() argument
H A Degl_wrapper_display.cpp572 EGLBoolean EglWrapperDisplay::CopyBuffers(EGLSurface surf, NativePixmapType target) in CopyBuffers() argument
587 ret = table->egl.eglCopyBuffers(disp_, surfPtr->GetEglSurface(), target); in CopyBuffers()
804 EGLImage EglWrapperDisplay::CreateImage(EGLContext ctx, EGLenum target, in CreateImage() argument
820 return table->egl.eglCreateImage(disp_, actualCtx, target, buffer, attribList); in CreateImage()
947 EGLImageKHR EglWrapperDisplay::CreateImageKHR(EGLContext ctx, EGLenum target, in CreateImageKHR() argument
963 return table->egl.eglCreateImageKHR(disp_, actualCtx, target, buffer, attribList); in CreateImageKHR()
/foundation/filemanagement/storage_service/services/storage_daemon/quota/
H A Dquota_manager.cpp81 std::string target; in InitialiseQuotaMounts() local
86 std::getline(in, target, ' '); in InitialiseQuotaMounts()
91 mQuotaReverseMounts[target] = source; in InitialiseQuotaMounts()
99 static std::string GetQuotaSrcMountPath(const std::string &target) in GetQuotaSrcMountPath() argument
102 if (mQuotaReverseMounts.find(target) != mQuotaReverseMounts.end()) { in GetQuotaSrcMountPath()
103 return mQuotaReverseMounts[target]; in GetQuotaSrcMountPath()
544 * @param statFile target file stream pointer
/kernel/linux/linux-5.10/arch/powerpc/perf/
H A Dhv-24x7.c1667 int target; in ppc_hv_24x7_cpu_offline() local
1674 target = cpumask_last(cpu_active_mask); in ppc_hv_24x7_cpu_offline()
1676 if (target < 0 || target >= nr_cpu_ids) { in ppc_hv_24x7_cpu_offline()
1681 /* Migrate 24x7 events to the new target */ in ppc_hv_24x7_cpu_offline()
1682 cpumask_set_cpu(target, &hv_24x7_cpumask); in ppc_hv_24x7_cpu_offline()
1683 perf_pmu_migrate_context(&h_24x7_pmu, cpu, target); in ppc_hv_24x7_cpu_offline()
/kernel/linux/linux-5.10/arch/sparc/kernel/
H A Dmdesc.c326 u64 target; in parent_cfg_handle() local
328 target = mdesc_arc_target(hp, a); in parent_cfg_handle()
329 id = mdesc_get_property(hp, target, in parent_cfg_handle()
852 u64 target = mdesc_arc_target(hp, a); in fill_in_one_cache() local
853 const char *name = mdesc_node_name(hp, target); in fill_in_one_cache()
856 fill_in_one_cache(c, hp, target); in fill_in_one_cache()
/kernel/linux/linux-6.6/arch/powerpc/perf/
H A Dhv-24x7.c1675 int target; in ppc_hv_24x7_cpu_offline() local
1682 target = cpumask_last(cpu_active_mask); in ppc_hv_24x7_cpu_offline()
1684 if (target < 0 || target >= nr_cpu_ids) { in ppc_hv_24x7_cpu_offline()
1689 /* Migrate 24x7 events to the new target */ in ppc_hv_24x7_cpu_offline()
1690 cpumask_set_cpu(target, &hv_24x7_cpumask); in ppc_hv_24x7_cpu_offline()
1691 perf_pmu_migrate_context(&h_24x7_pmu, cpu, target); in ppc_hv_24x7_cpu_offline()
/kernel/linux/linux-6.6/arch/sparc/kernel/
H A Dmdesc.c326 u64 target; in parent_cfg_handle() local
328 target = mdesc_arc_target(hp, a); in parent_cfg_handle()
329 id = mdesc_get_property(hp, target, in parent_cfg_handle()
852 u64 target = mdesc_arc_target(hp, a); in fill_in_one_cache() local
853 const char *name = mdesc_node_name(hp, target); in fill_in_one_cache()
856 fill_in_one_cache(c, hp, target); in fill_in_one_cache()
/kernel/linux/linux-5.10/drivers/media/platform/omap3isp/
H A Dispvideo.c774 .target = sel->target, in isp_video_get_selection()
779 switch (sel->target) { in isp_video_get_selection()
830 .target = sel->target, in isp_video_set_selection()
837 switch (sel->target) { in isp_video_set_selection()
/kernel/linux/linux-5.10/net/vmw_vsock/
H A Dvirtio_transport_common.c513 size_t target, in virtio_transport_notify_poll_in()
527 size_t target, in virtio_transport_notify_poll_out()
543 size_t target, struct vsock_transport_recv_notify_data *data) in virtio_transport_notify_recv_init()
550 size_t target, struct vsock_transport_recv_notify_data *data) in virtio_transport_notify_recv_pre_block()
557 size_t target, struct vsock_transport_recv_notify_data *data) in virtio_transport_notify_recv_pre_dequeue()
564 size_t target, ssize_t copied, bool data_read, in virtio_transport_notify_recv_post_dequeue()
512 virtio_transport_notify_poll_in(struct vsock_sock *vsk, size_t target, bool *data_ready_now) virtio_transport_notify_poll_in() argument
526 virtio_transport_notify_poll_out(struct vsock_sock *vsk, size_t target, bool *space_avail_now) virtio_transport_notify_poll_out() argument
542 virtio_transport_notify_recv_init(struct vsock_sock *vsk, size_t target, struct vsock_transport_recv_notify_data *data) virtio_transport_notify_recv_init() argument
549 virtio_transport_notify_recv_pre_block(struct vsock_sock *vsk, size_t target, struct vsock_transport_recv_notify_data *data) virtio_transport_notify_recv_pre_block() argument
556 virtio_transport_notify_recv_pre_dequeue(struct vsock_sock *vsk, size_t target, struct vsock_transport_recv_notify_data *data) virtio_transport_notify_recv_pre_dequeue() argument
563 virtio_transport_notify_recv_post_dequeue(struct vsock_sock *vsk, size_t target, ssize_t copied, bool data_read, struct vsock_transport_recv_notify_data *data) virtio_transport_notify_recv_post_dequeue() argument
/kernel/linux/linux-5.10/tools/perf/arch/x86/util/
H A Dintel-pt.c30 #include "../../../util/target.h"
172 static int intel_pt_pick_bit(int bits, int target) in intel_pt_pick_bit() argument
178 if (pos <= target || pick < 0) in intel_pt_pick_bit()
180 if (pos >= target) in intel_pt_pick_bit()
794 bool cpu_wide = !target__none(&opts->target) && in intel_pt_recording_options()
795 !target__has_task(&opts->target); in intel_pt_recording_options()
891 !target__none(&opts->target) && in intel_pt_recording_options()
/kernel/linux/linux-5.10/fs/xfs/
H A Dxfs_iomap.c60 struct xfs_buftarg *target = xfs_inode_buftarg(ip); in xfs_bmbt_to_iomap() local
81 iomap->bdev = target->bt_bdev; in xfs_bmbt_to_iomap()
82 iomap->dax_dev = target->bt_daxdev; in xfs_bmbt_to_iomap()
98 struct xfs_buftarg *target = xfs_inode_buftarg(ip); in xfs_hole_to_iomap() local
104 iomap->bdev = target->bt_bdev; in xfs_hole_to_iomap()
105 iomap->dax_dev = target->bt_daxdev; in xfs_hole_to_iomap()
/kernel/linux/linux-5.10/net/core/
H A Dnet_namespace.c911 struct net *peer, *target = net; in rtnl_net_getid() local
944 target = rtnl_get_net_ns_capable(NETLINK_CB(skb).sk, id); in rtnl_net_getid()
945 if (IS_ERR(target)) { in rtnl_net_getid()
949 err = PTR_ERR(target); in rtnl_net_getid()
962 fillargs.nsid = peernet2id(target, peer); in rtnl_net_getid()
974 put_net(target); in rtnl_net_getid()
1034 "Invalid target network namespace id"); in rtnl_valid_dump_net_req()
/kernel/linux/linux-5.10/net/mac80211/
H A Dmesh_hwmp.c102 u8 target_flags, const u8 *target, in mesh_path_sel_frame_tx()
135 mhwmp_dbg(sdata, "sending PREQ to %pM\n", target); in mesh_path_sel_frame_tx()
161 memcpy(pos, target, ETH_ALEN); in mesh_path_sel_frame_tx()
182 memcpy(pos, target, ETH_ALEN); in mesh_path_sel_frame_tx()
224 * @target: broken destination
235 u8 ttl, const u8 *target, u32 target_sn, in mesh_path_error_tx()
281 memcpy(pos, target, ETH_ALEN); in mesh_path_error_tx()
415 /* Originator here refers to the MP that was the target in the in hwmp_route_info_get()
573 /* Update target SN, if present */ in hwmp_preq_frame_process()
100 mesh_path_sel_frame_tx(enum mpath_frame_type action, u8 flags, const u8 *orig_addr, u32 orig_sn, u8 target_flags, const u8 *target, u32 target_sn, const u8 *da, u8 hop_count, u8 ttl, u32 lifetime, u32 metric, u32 preq_id, struct ieee80211_sub_if_data *sdata) mesh_path_sel_frame_tx() argument
234 mesh_path_error_tx(struct ieee80211_sub_if_data *sdata, u8 ttl, const u8 *target, u32 target_sn, u16 target_rcode, const u8 *ra) mesh_path_error_tx() argument
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/
H A Di915_trace.h497 TP_PROTO(struct drm_i915_private *i915, unsigned long target, unsigned flags),
498 TP_ARGS(i915, target, flags),
502 __field(unsigned long, target)
508 __entry->target = target;
512 TP_printk("dev=%d, target=%lu, flags=%x",
513 __entry->dev, __entry->target, __entry->flags)
/kernel/linux/linux-5.10/drivers/gpu/drm/sti/
H A Dsti_hdmi.c1004 int target = mode->clock * 1000; in sti_hdmi_connector_mode_valid() local
1005 int target_min = target - CLK_TOLERANCE_HZ; in sti_hdmi_connector_mode_valid()
1006 int target_max = target + CLK_TOLERANCE_HZ; in sti_hdmi_connector_mode_valid()
1013 result = clk_round_rate(hdmi->clk_pix, target); in sti_hdmi_connector_mode_valid()
1015 DRM_DEBUG_DRIVER("target rate = %d => available rate = %d\n", in sti_hdmi_connector_mode_valid()
1016 target, result); in sti_hdmi_connector_mode_valid()
1019 DRM_DEBUG_DRIVER("hdmi pixclk=%d not supported\n", target); in sti_hdmi_connector_mode_valid()
/kernel/linux/linux-5.10/drivers/staging/media/omap4iss/
H A Diss_video.c652 .target = sel->target, in iss_video_get_selection()
657 switch (sel->target) { in iss_video_get_selection()
709 .target = sel->target, in iss_video_set_selection()
716 switch (sel->target) { in iss_video_set_selection()

Completed in 57 milliseconds

1...<<181182183184185186187188189190>>...304