Home
last modified time | relevance | path

Searched refs:res (Results 651 - 675 of 9597) sorted by relevance

1...<<21222324252627282930>>...384

/kernel/linux/linux-6.6/fs/nfs/
H A Dnfs42proc.c56 struct nfs42_falloc_res res = { in _nfs42_proc_fallocate() local
62 msg->rpc_resp = &res; in _nfs42_proc_fallocate()
75 res.falloc_fattr = nfs_alloc_fattr(); in _nfs42_proc_fallocate()
76 if (!res.falloc_fattr) in _nfs42_proc_fallocate()
80 &args.seq_args, &res.seq_res, 0); in _nfs42_proc_fallocate()
89 res.falloc_fattr); in _nfs42_proc_fallocate()
95 kfree(res.falloc_fattr); in _nfs42_proc_fallocate()
176 static int handle_async_copy(struct nfs42_copy_res *res, in handle_async_copy() argument
197 if (memcmp(&res->write_res.stateid, &iter->stateid, in handle_async_copy()
211 memcpy(&copy->stateid, &res in handle_async_copy()
256 process_copy_commit(struct file *dst, loff_t pos_dst, struct nfs42_copy_res *res) process_copy_commit() argument
309 _nfs42_proc_copy(struct file *src, struct nfs_lock_context *src_lock, struct file *dst, struct nfs_lock_context *dst_lock, struct nfs42_copy_args *args, struct nfs42_copy_res *res, struct nl4_server *nss, nfs4_stateid *cnr_stateid, bool *restart) _nfs42_proc_copy() argument
428 struct nfs42_copy_res res; nfs42_proc_copy() local
504 struct nfs42_offload_status_res res; global() member
585 _nfs42_proc_copy_notify(struct file *src, struct file *dst, struct nfs42_copy_notify_args *args, struct nfs42_copy_notify_res *res) _nfs42_proc_copy_notify() argument
617 trace_nfs4_copy_notify(file_inode(src), args, res, status); _nfs42_proc_copy_notify() local
626 nfs42_proc_copy_notify(struct file *src, struct file *dst, struct nfs42_copy_notify_res *res) nfs42_proc_copy_notify() argument
672 struct nfs42_seek_res res; _nfs42_proc_llseek() local
1065 struct nfs42_clone_res res = { _nfs42_proc_clone() local
1173 struct nfs42_removexattrres res; _nfs42_proc_removexattr() local
1205 struct nfs42_setxattrres res = { _nfs42_proc_setxattr() local
1261 struct nfs42_getxattrres res; _nfs42_proc_getxattr() local
1308 struct nfs42_listxattrsres res = { _nfs42_proc_listxattrs() local
[all...]
/kernel/linux/linux-5.10/drivers/dax/
H A Dkmem.c40 struct resource *res[]; member
73 struct resource *res; in dev_dax_kmem_probe() local
84 res = request_mem_region(range.start, range_len(&range), data->res_name); in dev_dax_kmem_probe()
85 if (!res) { in dev_dax_kmem_probe()
97 data->res[i] = res; in dev_dax_kmem_probe()
105 res->flags = IORESOURCE_SYSTEM_RAM; in dev_dax_kmem_probe()
117 remove_resource(res); in dev_dax_kmem_probe()
118 kfree(res); in dev_dax_kmem_probe()
119 data->res[ in dev_dax_kmem_probe()
[all...]
/kernel/linux/linux-5.10/drivers/xen/
H A Dunpopulated-alloc.c21 struct resource *res; in fill_list() local
26 res = kzalloc(sizeof(*res), GFP_KERNEL); in fill_list()
27 if (!res) in fill_list()
30 res->name = "Xen scratch"; in fill_list()
31 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; in fill_list()
33 ret = allocate_resource(&iomem_resource, res, in fill_list()
49 .start = res->start, in fill_list()
50 .end = res->end, in fill_list()
53 pgmap->owner = res; in fill_list()
[all...]
/kernel/linux/linux-5.10/lib/
H A Dbitfield_kunit.c11 #define CHECK_ENC_GET_U(tp, v, field, res) do { \
16 KUNIT_ASSERT_FALSE_MSG(context, _res != res, \
17 "u" #tp "_encode_bits(" #v ", " #field ") is 0x%llx != " #res "\n", \
24 #define CHECK_ENC_GET_LE(tp, v, field, res) do { \
30 _res != cpu_to_le##tp(res), \
33 (u64)(res)); \
39 #define CHECK_ENC_GET_BE(tp, v, field, res) do { \
45 _res != cpu_to_be##tp(res), \
48 (u64)(res)); \
54 #define CHECK_ENC_GET(tp, v, field, res) d
[all...]
/kernel/linux/linux-5.10/fs/squashfs/
H A Dfile_direct.c36 int i, n, pages, missing_pages, bytes, res = -ENOMEM; in squashfs_readpage_block() local
48 return res; in squashfs_readpage_block()
84 res = squashfs_read_cache(target_page, block, bsize, pages, in squashfs_readpage_block()
86 if (res < 0) in squashfs_readpage_block()
93 res = squashfs_read_data(inode->i_sb, block, bsize, NULL, actor); in squashfs_readpage_block()
94 if (res < 0) in squashfs_readpage_block()
97 if (res != expected) { in squashfs_readpage_block()
98 res = -EIO; in squashfs_readpage_block()
103 bytes = res % PAGE_SIZE; in squashfs_readpage_block()
140 return res; in squashfs_readpage_block()
150 int res = buffer->error, n, offset = 0; squashfs_read_cache() local
[all...]
/kernel/linux/linux-6.6/fs/verity/
H A Dread_metadata.c102 int res; in fsverity_read_descriptor() local
104 res = fsverity_get_descriptor(inode, &desc); in fsverity_read_descriptor()
105 if (res) in fsverity_read_descriptor()
106 return res; in fsverity_read_descriptor()
112 res = fsverity_read_buffer(buf, offset, length, desc, desc_size); in fsverity_read_descriptor()
115 return res; in fsverity_read_descriptor()
122 int res; in fsverity_read_signature() local
124 res = fsverity_get_descriptor(inode, &desc); in fsverity_read_signature()
125 if (res) in fsverity_read_signature()
126 return res; in fsverity_read_signature()
[all...]
/kernel/linux/linux-6.6/lib/
H A Dbitfield_kunit.c11 #define CHECK_ENC_GET_U(tp, v, field, res) do { \
16 KUNIT_ASSERT_FALSE_MSG(context, _res != res, \
17 "u" #tp "_encode_bits(" #v ", " #field ") is 0x%llx != " #res "\n", \
24 #define CHECK_ENC_GET_LE(tp, v, field, res) do { \
30 _res != cpu_to_le##tp(res), \
33 (u64)(res)); \
39 #define CHECK_ENC_GET_BE(tp, v, field, res) do { \
45 _res != cpu_to_be##tp(res), \
48 (u64)(res)); \
54 #define CHECK_ENC_GET(tp, v, field, res) d
[all...]
/kernel/linux/linux-5.10/fs/nfs/
H A Dnfs42xdr.c476 struct nfs42_getxattrres *res, in decode_getxattr()
495 res->xattr_len = len; in decode_getxattr()
550 struct nfs42_listxattrsres *res) in decode_listxattrs()
573 xdr_decode_hyper(p, &res->cookie); in decode_listxattrs()
579 left = res->xattr_len; in decode_listxattrs()
580 buf = res->xattr_buf; in decode_listxattrs()
629 res->eof = be32_to_cpup(p); in decode_listxattrs()
630 res->copied = copied; in decode_listxattrs()
633 if (status == -ERANGE && res->xattr_len == XATTR_LIST_MAX) in decode_listxattrs()
859 static int decode_allocate(struct xdr_stream *xdr, struct nfs42_falloc_res *res) in decode_allocate() argument
475 decode_getxattr(struct xdr_stream *xdr, struct nfs42_getxattrres *res, struct rpc_rqst *req) decode_getxattr() argument
549 decode_listxattrs(struct xdr_stream *xdr, struct nfs42_listxattrsres *res) decode_listxattrs() argument
864 decode_write_response(struct xdr_stream *xdr, struct nfs42_write_res *res) decode_write_response() argument
942 decode_copy_requirements(struct xdr_stream *xdr, struct nfs42_copy_res *res) decode_copy_requirements() argument
955 decode_copy(struct xdr_stream *xdr, struct nfs42_copy_res *res) decode_copy() argument
975 decode_offload_cancel(struct xdr_stream *xdr, struct nfs42_offload_status_res *res) decode_offload_cancel() argument
981 decode_copy_notify(struct xdr_stream *xdr, struct nfs42_copy_notify_res *res) decode_copy_notify() argument
1017 decode_deallocate(struct xdr_stream *xdr, struct nfs42_falloc_res *res) decode_deallocate() argument
1022 decode_read_plus_data(struct xdr_stream *xdr, struct nfs_pgio_res *res) decode_read_plus_data() argument
1043 decode_read_plus_hole(struct xdr_stream *xdr, struct nfs_pgio_res *res, uint32_t *eof) decode_read_plus_hole() argument
1063 decode_read_plus(struct xdr_stream *xdr, struct nfs_pgio_res *res) decode_read_plus() argument
1111 decode_seek(struct xdr_stream *xdr, struct nfs42_seek_res *res) decode_seek() argument
1151 struct nfs42_falloc_res *res = data; nfs4_xdr_dec_allocate() local
1179 struct nfs42_copy_res *res = data; nfs4_xdr_dec_copy() local
1214 struct nfs42_offload_status_res *res = data; nfs4_xdr_dec_offload_cancel() local
1240 struct nfs42_copy_notify_res *res = data; nfs4_xdr_dec_copy_notify() local
1266 struct nfs42_falloc_res *res = data; nfs4_xdr_dec_deallocate() local
1294 struct nfs_pgio_res *res = data; nfs4_xdr_dec_read_plus() local
1321 struct nfs42_seek_res *res = data; nfs4_xdr_dec_seek() local
1346 struct nfs42_layoutstat_res *res = data; nfs4_xdr_dec_layoutstats() local
1377 struct nfs42_clone_res *res = data; nfs4_xdr_dec_clone() local
1412 struct nfs42_layouterror_res *res = data; nfs4_xdr_dec_layouterror() local
1450 struct nfs42_setxattrres *res = data; nfs4_xdr_dec_setxattr() local
1495 struct nfs42_getxattrres *res = data; nfs4_xdr_dec_getxattr() local
1535 struct nfs42_listxattrsres *res = data; nfs4_xdr_dec_listxattrs() local
1573 struct nfs42_removexattrres *res = data; nfs4_xdr_dec_removexattr() local
[all...]
/foundation/communication/nfc/interfaces/inner_api/tags/
H A Dndef_formatable_tag.cpp58 int res = tagSession->FormatNdef(tagRfDiscId, keyDefault); in Format() local
59 if (res != ErrorCode::ERR_NONE) { in Format()
60 ErrorLog("[NdefFormatableTag::Format] res failed."); in Format()
61 return res; in Format()
74 res = tagSession->NdefWrite(tagRfDiscId, ndefMessage); in Format()
75 if (res != ErrorCode::ERR_NONE) { in Format()
76 return res; in Format()
81 res = tagSession->NdefMakeReadOnly(tagRfDiscId); in Format()
82 if (res != ErrorCode::ERR_NONE) { in Format()
83 return res; in Format()
[all...]
/kernel/linux/linux-5.10/arch/arm/mach-mvebu/
H A Dcpu-reset.c46 struct resource res; in mvebu_cpu_reset_map() local
48 if (of_address_to_resource(np, res_idx, &res)) { in mvebu_cpu_reset_map()
53 if (!request_mem_region(res.start, resource_size(&res), in mvebu_cpu_reset_map()
59 cpu_reset_base = ioremap(res.start, resource_size(&res)); in mvebu_cpu_reset_map()
62 release_mem_region(res.start, resource_size(&res)); in mvebu_cpu_reset_map()
66 cpu_reset_size = resource_size(&res); in mvebu_cpu_reset_map()
/kernel/linux/linux-5.10/tools/testing/selftests/ptp/
H A Dphc.sh92 local res
94 res=$(phc_ctl $DEV set 0 wait 120.5 get 2> /dev/null \
98 (( res == 120 ))
103 local res
105 res=$(phc_ctl $DEV set 0 adj 10 get 2> /dev/null \
109 (( res == 10 ))
114 local res
117 res=$(phc_ctl $DEV freq 10000000 set 0 wait 100.5 get 2> /dev/null \
121 (( res == 101 ))
/kernel/linux/linux-6.6/arch/arm/mach-mvebu/
H A Dcpu-reset.c43 struct resource res; in mvebu_cpu_reset_map() local
45 if (of_address_to_resource(np, res_idx, &res)) { in mvebu_cpu_reset_map()
50 if (!request_mem_region(res.start, resource_size(&res), in mvebu_cpu_reset_map()
56 cpu_reset_base = ioremap(res.start, resource_size(&res)); in mvebu_cpu_reset_map()
59 release_mem_region(res.start, resource_size(&res)); in mvebu_cpu_reset_map()
63 cpu_reset_size = resource_size(&res); in mvebu_cpu_reset_map()
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_preempt_mgr.c55 * @res: TTM memory object
62 struct ttm_resource **res) in amdgpu_preempt_mgr_new()
64 *res = kzalloc(sizeof(**res), GFP_KERNEL); in amdgpu_preempt_mgr_new()
65 if (!*res) in amdgpu_preempt_mgr_new()
68 ttm_resource_init(tbo, place, *res); in amdgpu_preempt_mgr_new()
69 (*res)->start = AMDGPU_BO_INVALID_OFFSET; in amdgpu_preempt_mgr_new()
77 * @res: TTM memory object
82 struct ttm_resource *res) in amdgpu_preempt_mgr_del()
84 ttm_resource_fini(man, res); in amdgpu_preempt_mgr_del()
59 amdgpu_preempt_mgr_new(struct ttm_resource_manager *man, struct ttm_buffer_object *tbo, const struct ttm_place *place, struct ttm_resource **res) amdgpu_preempt_mgr_new() argument
81 amdgpu_preempt_mgr_del(struct ttm_resource_manager *man, struct ttm_resource *res) amdgpu_preempt_mgr_del() argument
[all...]
/kernel/linux/linux-6.6/arch/x86/kernel/
H A Dresource.c7 static void resource_clip(struct resource *res, resource_size_t start, in resource_clip() argument
12 if (res->end < start || res->start > end) in resource_clip()
15 if (res->start < start) in resource_clip()
16 low = start - res->start; in resource_clip()
18 if (res->end > end) in resource_clip()
19 high = res->end - end; in resource_clip()
23 res->end = start - 1; in resource_clip()
25 res->start = end + 1; in resource_clip()
/kernel/linux/linux-6.6/tools/testing/selftests/ptp/
H A Dphc.sh92 local res
94 res=$(phc_ctl $DEV set 0 wait 120.5 get 2> /dev/null \
98 (( res == 120 ))
103 local res
105 res=$(phc_ctl $DEV set 0 adj 10 get 2> /dev/null \
109 (( res == 10 ))
114 local res
117 res=$(phc_ctl $DEV freq 10000000 set 0 wait 100.5 get 2> /dev/null \
121 (( res == 101 ))
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dmenu_item_modifier.cpp77 std::vector<std::string> res; in SetLabelFont() local
79 StringUtils::StringSplitter(fontValues, DELIMITER, res); in SetLabelFont()
80 if (res.empty() || res.size() != SIZE_OF_FONT_INFO) { in SetLabelFont()
84 if (res[0] != ERR_CODE) { // 0: position of font size data in SetLabelFont()
85 fontSize = StringUtils::StringToCalcDimension(res[0], false, DimensionUnit::FP); in SetLabelFont()
89 if (res[1] != ERR_CODE) { // 1: position of font weight data in SetLabelFont()
90 MenuItemModelNG::SetLabelFontWeight(frameNode, Framework::ConvertStrToFontWeight(res[1])); in SetLabelFont()
101 if (res[2] != ERR_CODE) { // 2: position of font family data in SetLabelFont()
102 MenuItemModelNG::SetLabelFontFamily(frameNode, Framework::ConvertStrToFontFamilies(res[ in SetLabelFont()
125 std::vector<std::string> res; SetContentFont() local
[all...]
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Dasset_loader.h39 BASE_NS::string res; in NormalizePath() local
41 res.reserve(path.size() + 1); in NormalizePath()
42 res.push_back('/'); in NormalizePath()
44 res.reserve(path.size()); in NormalizePath()
48 if (res.empty()) { in NormalizePath()
49 res.push_back('/'); in NormalizePath()
60 if ((!res.empty()) && (res.back() == '/')) { in NormalizePath()
61 res.resize(res in NormalizePath()
[all...]
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/animation/
H A Drs_animation_fraction_test.cpp57 float res = rsAnimationFraction.GetAnimationScale(); in HWTEST_F() local
58 ASSERT_NE(res, 0); in HWTEST_F()
110 int64_t res = rsAnimationFraction.GetLastFrameTime(); in HWTEST_F() local
111 EXPECT_EQ(lastFrameTime, res); in HWTEST_F()
122 int64_t res = rsAnimationFraction.GetLastFrameTime(); in HWTEST_F() local
123 EXPECT_NE(res, 1); in HWTEST_F()
138 bool res = rsAnimationFraction.IsStartRunning(deltaTime, startDelayNs); in HWTEST_F() local
139 EXPECT_EQ(res, true); in HWTEST_F()
143 res = rsAnimationFraction.IsStartRunning(deltaTime, startDelayNs); in HWTEST_F()
144 EXPECT_EQ(res, tru in HWTEST_F()
219 float res = rsAnimationFraction.GetStartFraction(); HWTEST_F() local
231 float res = rsAnimationFraction.GetEndFraction(); HWTEST_F() local
375 bool res = rsAnimationFraction.GetRepeatCallbackEnable(); HWTEST_F() local
[all...]
/foundation/graphic/graphic_2d/rosen/test/render/render/unittest/animat/
H A Drs_animat_fraction_test.cpp44 float res = rsAnimationFraction.GetAnimationScale(); in HWTEST_F() local
45 ASSERT_NE(res, 0); in HWTEST_F()
97 int64_t res = rsAnimationFraction.GetLastFrameTime(); in HWTEST_F() local
98 EXPECT_EQ(lastFrameTime, res); in HWTEST_F()
126 bool res = rsAnimationFraction.IsStartRunning(deltaTime, startDelayNs); in HWTEST_F() local
127 EXPECT_EQ(res, true); in HWTEST_F()
131 res = rsAnimationFraction.IsStartRunning(deltaTime, startDelayNs); in HWTEST_F()
132 EXPECT_EQ(res, true); in HWTEST_F()
136 res = rsAnimationFraction.IsStartRunning(deltaTime, startDelayNs); in HWTEST_F()
137 EXPECT_EQ(res, tru in HWTEST_F()
166 int64_t res = rsAnimationFraction.GetLastFrameTime(); HWTEST_F() local
196 float res = rsAnimationFraction.GetStartFraction(); HWTEST_F() local
231 float res = rsAnimationFraction.GetEndFraction(); HWTEST_F() local
362 bool res = rsAnimationFraction.GetRepeatCallbackEnable(); HWTEST_F() local
[all...]
/foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/src/
H A Dlocal_ability_manager_proxy_test.cpp69 bool res = localAbility->StartAbility(TEST_SAID_INVAILD, EVENT_STR); in HWTEST_F() local
70 EXPECT_EQ(res, false); in HWTEST_F()
82 bool res = localAbility->StartAbility(TEST_SAID_VAILD, EVENT_STR); in HWTEST_F() local
83 EXPECT_EQ(res, false); in HWTEST_F()
96 bool res = localAbility->StartAbility(TEST_SAID_VAILD, EVENT_STR); in HWTEST_F() local
97 EXPECT_EQ(res, true); in HWTEST_F()
112 bool res = localAbility->StartAbility(TEST_SAID_VAILD, EVENT_STR); in HWTEST_F() local
113 EXPECT_EQ(res, false); in HWTEST_F()
143 bool res = localAbility->StopAbility(TEST_SAID_INVAILD, EVENT_STR); in HWTEST_F() local
144 EXPECT_EQ(res, fals in HWTEST_F()
160 bool res = localAbility->StopAbility(TEST_SAID_VAILD, eventStr); HWTEST_F() local
175 bool res = localAbility->StopAbility(TEST_SAID_VAILD, EVENT_STR); HWTEST_F() local
191 bool res = localAbility->StopAbility(TEST_SAID_VAILD, EVENT_STR); HWTEST_F() local
207 bool res = localAbility->ActiveAbility(TEST_SAID_INVAILD, activeReason); HWTEST_F() local
223 bool res = localAbility->ActiveAbility(TEST_SAID_VAILD, activeReason); HWTEST_F() local
[all...]
/kernel/linux/linux-6.6/arch/riscv/kernel/
H A Dsetup.c83 struct resource *res) in add_resource()
87 ret = insert_resource(parent, res); in add_resource()
90 res->name, (unsigned long long) res->start); in add_resource()
152 struct resource *res = NULL; in init_resources() local
186 res = &mem_res[res_idx--]; in init_resources()
188 res->name = "Reserved"; in init_resources()
189 res->flags = IORESOURCE_MEM | IORESOURCE_EXCLUSIVE; in init_resources()
190 res->start = __pfn_to_phys(memblock_region_reserved_base_pfn(region)); in init_resources()
191 res in init_resources()
82 add_resource(struct resource *parent, struct resource *res) add_resource() argument
[all...]
/kernel/linux/linux-5.10/kernel/power/
H A Duser.c136 ssize_t res; in snapshot_read() local
143 res = -ENODATA; in snapshot_read()
147 res = snapshot_read_next(&data->handle); in snapshot_read()
148 if (res <= 0) in snapshot_read()
151 res = PAGE_SIZE - pg_offp; in snapshot_read()
154 res = simple_read_from_buffer(buf, count, &pg_offp, in snapshot_read()
155 data_of(data->handle), res); in snapshot_read()
156 if (res > 0) in snapshot_read()
157 *offp += res; in snapshot_read()
162 return res; in snapshot_read()
169 ssize_t res; snapshot_write() local
[all...]
/kernel/linux/linux-6.6/kernel/power/
H A Duser.c140 ssize_t res; in snapshot_read() local
146 res = -ENODATA; in snapshot_read()
150 res = snapshot_read_next(&data->handle); in snapshot_read()
151 if (res <= 0) in snapshot_read()
154 res = PAGE_SIZE - pg_offp; in snapshot_read()
157 res = simple_read_from_buffer(buf, count, &pg_offp, in snapshot_read()
158 data_of(data->handle), res); in snapshot_read()
159 if (res > 0) in snapshot_read()
160 *offp += res; in snapshot_read()
165 return res; in snapshot_read()
174 ssize_t res; snapshot_write() local
[all...]
/foundation/multimedia/av_codec/test/unittest/filter_test/
H A Ddecoder_surface_filter_unit_test.cpp271 auto res = decoderSurfaceFilter_->DoInitAfterLink(); in HWTEST_F() local
272 std::cout << "DoInitAfterLink " << static_cast<int32_t>(res) << std::endl; in HWTEST_F()
276 res = decoderSurfaceFilter_->DoInitAfterLink(); in HWTEST_F()
277 std::cout << "DoInitAfterLink " << static_cast<int32_t>(res) << std::endl; in HWTEST_F()
280 res = decoderSurfaceFilter_->DoInitAfterLink(); in HWTEST_F()
281 std::cout << "DoInitAfterLink " << static_cast<int32_t>(res) << std::endl; in HWTEST_F()
284 res = decoderSurfaceFilter_->DoInitAfterLink(); in HWTEST_F()
285 std::cout << "DoInitAfterLink " << static_cast<int32_t>(res) << std::endl; in HWTEST_F()
293 auto res = decoderSurfaceFilter_->DoStart(); in HWTEST_F() local
294 EXPECT_NE(res, Statu in HWTEST_F()
320 auto res = decoderSurfaceFilter_->DoPause(); HWTEST_F() local
348 auto res = decoderSurfaceFilter_->DoResume(); HWTEST_F() local
367 auto res = decoderSurfaceFilter_->DoResumeDragging(); HWTEST_F() local
386 auto res = decoderSurfaceFilter_->DoStop(); HWTEST_F() local
411 auto res = decoderSurfaceFilter_->DoPrepare(); HWTEST_F() local
1012 int32_t res = decoderSurfaceFilter_->GetDecRateUpperLimit(); HWTEST_F() local
[all...]
/kernel/linux/linux-6.6/drivers/firmware/
H A Dstratix10-svc.c208 struct arm_smccc_res res; in svc_thread_cmd_data_claim() local
217 0, 0, 0, 0, 0, 0, 0, &res); in svc_thread_cmd_data_claim()
219 if (res.a0 == INTEL_SIP_SMC_STATUS_OK) { in svc_thread_cmd_data_claim()
220 if (!res.a1) { in svc_thread_cmd_data_claim()
225 cb_data->kaddr1 = svc_pa_to_va(res.a1); in svc_thread_cmd_data_claim()
226 cb_data->kaddr2 = (res.a2) ? in svc_thread_cmd_data_claim()
227 svc_pa_to_va(res.a2) : NULL; in svc_thread_cmd_data_claim()
228 cb_data->kaddr3 = (res.a3) ? in svc_thread_cmd_data_claim()
229 svc_pa_to_va(res.a3) : NULL; in svc_thread_cmd_data_claim()
236 } while (res in svc_thread_cmd_data_claim()
254 struct arm_smccc_res res; svc_thread_cmd_config_status() local
316 svc_thread_recv_status_ok(struct stratix10_svc_data *p_data, struct stratix10_svc_cb_data *cb_data, struct arm_smccc_res res) svc_thread_recv_status_ok() argument
397 struct arm_smccc_res res; svc_normal_to_secure_thread() local
682 struct arm_smccc_res res; svc_normal_to_secure_shm_thread() local
818 svc_smccc_smc(unsigned long a0, unsigned long a1, unsigned long a2, unsigned long a3, unsigned long a4, unsigned long a5, unsigned long a6, unsigned long a7, struct arm_smccc_res *res) svc_smccc_smc() argument
839 svc_smccc_hvc(unsigned long a0, unsigned long a1, unsigned long a2, unsigned long a3, unsigned long a4, unsigned long a5, unsigned long a6, unsigned long a7, struct arm_smccc_res *res) svc_smccc_hvc() argument
[all...]

Completed in 13 milliseconds

1...<<21222324252627282930>>...384