Home
last modified time | relevance | path

Searched refs:pctx (Results 1 – 20 of 20) sorted by relevance

/linux/drivers/media/platform/st/sti/delta/
H A Ddelta-mjpeg-dec.c171 static bool delta_mjpeg_check_status(struct delta_ctx *pctx, in delta_mjpeg_check_status() argument
174 struct delta_dev *delta = pctx->dev; in delta_mjpeg_check_status()
183 pctx->name, pctx->decoded_frames, in delta_mjpeg_check_status()
185 pctx->stream_errors++; in delta_mjpeg_check_status()
189 pctx->name, pctx->decoded_frames, in delta_mjpeg_check_status()
191 pctx->decode_errors++; in delta_mjpeg_check_status()
197 "%s firmware: decoding time(us)=%d\n", pctx->name, in delta_mjpeg_check_status()
203 static int delta_mjpeg_ipc_open(struct delta_ctx *pctx) in delta_mjpeg_ipc_open() argument
205 struct delta_dev *delta = pctx->dev; in delta_mjpeg_ipc_open()
206 struct delta_mjpeg_ctx *ctx = to_ctx(pctx); in delta_mjpeg_ipc_open()
[all …]
H A Ddelta-ipc.c110 int delta_ipc_open(struct delta_ctx *pctx, const char *name, in delta_ipc_open() argument
114 struct delta_dev *delta = pctx->dev; in delta_ipc_open()
116 struct delta_ipc_ctx *ctx = &pctx->ipc_ctx; in delta_ipc_open()
124 pctx->name); in delta_ipc_open()
125 pctx->sys_errors++; in delta_ipc_open()
132 pctx->name); in delta_ipc_open()
139 pctx->name); in delta_ipc_open()
146 pctx->name); in delta_ipc_open()
153 pctx->name, in delta_ipc_open()
166 ret = hw_alloc(pctx, ipc_buf_size, in delta_ipc_open()
[all …]
H A Ddelta-mjpeg-hdr.c40 static int delta_mjpeg_read_sof(struct delta_ctx *pctx, in delta_mjpeg_read_sof() argument
44 struct delta_dev *delta = pctx->dev; in delta_mjpeg_read_sof()
65 pctx->name, header->nb_of_components, in delta_mjpeg_read_sof()
79 pctx->name, size); in delta_mjpeg_read_sof()
83 int delta_mjpeg_read_header(struct delta_ctx *pctx, in delta_mjpeg_read_header() argument
88 struct delta_dev *delta = pctx->dev; in delta_mjpeg_read_header()
112 pctx->name); in delta_mjpeg_read_header()
116 ret = delta_mjpeg_read_sof(pctx, in delta_mjpeg_read_header()
136 "%s found header @ offset %d:\n%s", pctx->name, in delta_mjpeg_read_header()
144 pctx->name, size); in delta_mjpeg_read_header()
H A Ddelta-mjpeg.h30 int delta_mjpeg_read_header(struct delta_ctx *pctx,
H A Ddelta.h557 int delta_recycle_default(struct delta_ctx *pctx,
H A Ddelta-v4l2.c1214 int delta_recycle_default(struct delta_ctx *pctx, in delta_recycle_default() argument
/linux/drivers/net/
H A Dgtp.c122 static void pdp_context_delete(struct pdp_ctx *pctx);
232 static bool gtp_check_ms_ipv4(struct sk_buff *skb, struct pdp_ctx *pctx, in gtp_check_ms_ipv4() argument
243 return iph->daddr == pctx->ms.addr.s_addr; in gtp_check_ms_ipv4()
245 return iph->saddr == pctx->ms.addr.s_addr; in gtp_check_ms_ipv4()
248 static bool gtp_check_ms_ipv6(struct sk_buff *skb, struct pdp_ctx *pctx, in gtp_check_ms_ipv6() argument
264 ret = ipv6_pdp_addr_equal(&ip6h->daddr, &pctx->ms.addr6); in gtp_check_ms_ipv6()
266 ret = ipv6_pdp_addr_equal(&ip6h->saddr, &pctx->ms.addr6); in gtp_check_ms_ipv6()
275 static bool gtp_check_ms(struct sk_buff *skb, struct pdp_ctx *pctx, in gtp_check_ms() argument
281 return gtp_check_ms_ipv4(skb, pctx, hdrlen, role); in gtp_check_ms()
283 return gtp_check_ms_ipv6(skb, pctx, hdrlen, role); in gtp_check_ms()
[all …]
/linux/drivers/media/platform/st/sti/hva/
H A Dhva-h264.c415 static int hva_h264_fill_slice_header(struct hva_ctx *pctx, in hva_h264_fill_slice_header() argument
429 struct device *dev = ctx_to_dev(pctx); in hva_h264_fill_slice_header()
484 pctx->name, __func__, frame_order, idr_pic_id, *header_size); in hva_h264_fill_slice_header()
488 static int hva_h264_fill_data_nal(struct hva_ctx *pctx, in hva_h264_fill_data_nal() argument
492 struct device *dev = ctx_to_dev(pctx); in hva_h264_fill_data_nal()
495 dev_dbg(dev, "%s %s stuffing bytes %d\n", pctx->name, __func__, in hva_h264_fill_data_nal()
500 pctx->name, __func__, stuffing_bytes); in hva_h264_fill_data_nal()
521 static int hva_h264_fill_sei_nal(struct hva_ctx *pctx, in hva_h264_fill_sei_nal() argument
525 struct device *dev = ctx_to_dev(pctx); in hva_h264_fill_sei_nal()
582 pctx->name, type); in hva_h264_fill_sei_nal()
[all …]
/linux/tools/perf/util/
H A Dstat-shadow.c51 struct expr_parse_ctx *pctx, in prepare_metric()
121 expr__add_id_val_source_count_aggr_nr(pctx, n, val, source_count, aggr_nr); in prepare_metric()
125 int ret = expr__add_ref(pctx, &metric_refs[j]); in prepare_metric()
147 struct expr_parse_ctx *pctx; in generic_metric()
153 pctx = expr__ctx_new(); in generic_metric()
154 if (!pctx) in generic_metric()
158 pctx->sctx.user_requested_cpu_list = strdup(config->user_requested_cpu_list); in generic_metric()
159 pctx->sctx.runtime = runtime; in generic_metric()
160 pctx->sctx.system_wide = config->system_wide; in generic_metric()
161 i = prepare_metric(config, mexp, evsel, pctx, aggr_id in generic_metric()
48 prepare_metric(struct perf_stat_config * config,const struct metric_expr * mexp,const struct evsel * evsel,struct expr_parse_ctx * pctx,int aggr_idx) prepare_metric() argument
140 struct expr_parse_ctx *pctx; generic_metric() local
208 struct expr_parse_ctx *pctx; test_generic_metric() local
[all...]
H A Dmetricgroup.c129 struct expr_parse_ctx *pctx; member
215 expr__ctx_free(m->pctx); in metric__free()
235 m->pctx = expr__ctx_new(); in metric__new()
236 if (!m->pctx) in metric__new()
251 m->pctx->sctx.user_requested_cpu_list = NULL; in metric__new()
253 m->pctx->sctx.user_requested_cpu_list = strdup(user_requested_cpu_list); in metric__new()
254 if (!m->pctx->sctx.user_requested_cpu_list) in metric__new()
257 m->pctx->sctx.runtime = runtime; in metric__new()
258 m->pctx->sctx.system_wide = system_wide; in metric__new()
763 hashmap__for_each_entry(root_metric->pctx in resolve_metric()
[all...]
H A Dpython.c2728 struct expr_parse_ctx *pctx,
2784 ret = expr__add_id_val_source_count(pctx, n, val, source_count);
2790 int ret = expr__add_ref(pctx, &metric_refs[i]);
2806 struct expr_parse_ctx *pctx;
2855 pctx = expr__ctx_new();
2856 if (!pctx)
2859 ret = prepare_metric(mexp, metric_evsel, pctx, cpu_idx, thread_idx);
2861 expr__ctx_free(pctx);
2866 if (expr__parse(&result, pctx, mexp->metric_expr))
2869 expr__ctx_free(pctx);
1336 prepare_metric(const struct metric_expr * mexp,const struct evsel * evsel,struct expr_parse_ctx * pctx,int cpu_idx,int thread_idx) prepare_metric() argument
1414 struct expr_parse_ctx *pctx; pyrf_evlist__compute_metric() local
[all...]
/linux/crypto/
H A Dccm.c168 struct crypto_ccm_req_priv_ctx *pctx = crypto_ccm_reqctx(req); in crypto_ccm_auth() local
171 struct ahash_request *ahreq = &pctx->ahreq; in crypto_ccm_auth()
174 u8 *odata = pctx->odata; in crypto_ccm_auth()
175 u8 *idata = pctx->idata; in crypto_ccm_auth()
197 ahash_request_set_callback(ahreq, pctx->flags, NULL, NULL); in crypto_ccm_auth()
228 struct crypto_ccm_req_priv_ctx *pctx = crypto_ccm_reqctx(req); in crypto_ccm_encrypt_done() local
229 u8 *odata = pctx->odata; in crypto_ccm_encrypt_done()
249 struct crypto_ccm_req_priv_ctx *pctx = crypto_ccm_reqctx(req); in crypto_ccm_init_crypt() local
258 pctx->flags = aead_request_flags(req); in crypto_ccm_init_crypt()
265 sg_init_table(pctx->src, 3); in crypto_ccm_init_crypt()
[all …]
/linux/fs/ntfs/
H A Dcompress.c959 static void ntfs_best_match(struct compress_context *pctx, const int i, in ntfs_best_match() argument
962 const u8 * const inbuf = pctx->inbuf; in ntfs_best_match()
964 s16 * const prev = pctx->prev; in ntfs_best_match()
965 const int max_len = min(pctx->bufsize - i, pctx->mxsz); in ntfs_best_match()
979 cur_match = pctx->head[hash]; in ntfs_best_match()
981 pctx->head[hash] = i; in ntfs_best_match()
1055 pctx->size = best_len; in ntfs_best_match()
1056 pctx->rel = best_matchptr - strptr; /* given as a negative number! */ in ntfs_best_match()
1062 static void ntfs_skip_position(struct compress_context *pctx, const int i) in ntfs_skip_position() argument
1066 if (pctx->bufsize - i < 4) in ntfs_skip_position()
[all …]
/linux/fs/ceph/
H A Dsuper.c257 struct ceph_parse_opts_ctx *pctx = fc->fs_private; in ceph_parse_old_source() local
258 struct ceph_mount_options *fsopt = pctx->opts; in ceph_parse_old_source()
264 pctx->copts, fc->log.log, ','); in ceph_parse_old_source()
277 struct ceph_parse_opts_ctx *pctx = fc->fs_private; in ceph_parse_new_source() local
278 struct ceph_options *opts = pctx->copts; in ceph_parse_new_source()
279 struct ceph_mount_options *fsopt = pctx->opts; in ceph_parse_new_source()
341 struct ceph_parse_opts_ctx *pctx = fc->fs_private; in ceph_parse_source() local
342 struct ceph_mount_options *fsopt = pctx->opts; in ceph_parse_source()
393 struct ceph_parse_opts_ctx *pctx = fc->fs_private; in ceph_parse_mon_addr() local
394 struct ceph_mount_options *fsopt = pctx->opts; in ceph_parse_mon_addr()
[all …]
/linux/drivers/gpu/drm/i915/gt/
H A Dintel_rc6_types.h34 struct drm_i915_gem_object *pctx; member
/linux/drivers/block/
H A Drbd.c6243 struct rbd_parse_opts_ctx *pctx) in rbd_parse_param() argument
6245 struct rbd_options *opt = pctx->opts; in rbd_parse_param()
6250 ret = ceph_parse_param(param, pctx->copts, NULL); in rbd_parse_param()
6283 kfree(pctx->spec->pool_ns); in rbd_parse_param()
6284 pctx->spec->pool_ns = param->string; in rbd_parse_param()
6339 static int rbd_parse_options(char *options, struct rbd_parse_opts_ctx *pctx) in rbd_parse_options() argument
6367 ret = rbd_parse_param(&param, pctx); in rbd_parse_options()
6428 struct rbd_parse_opts_ctx pctx = { 0 }; in rbd_add_parse_args() local
6451 pctx.spec = rbd_spec_alloc(); in rbd_add_parse_args()
6452 if (!pctx.spec) in rbd_add_parse_args()
[all …]
/linux/security/apparmor/
H A Daf_unix.c772 struct aa_sk_ctx *pctx = aa_sock(peer_sk); in aa_unix_file_perm() local
775 plabel = aa_get_newest_label(pctx->label); in aa_unix_file_perm()
792 update_peer_ctx(peer_sk, pctx, label); in aa_unix_file_perm()
/linux/fs/smb/client/
H A Dsmb2pdu.c973 struct smb2_neg_context *pctx; in smb311_decode_neg_context() local
993 pctx = (struct smb2_neg_context *)(offset + (char *)rsp); in smb311_decode_neg_context()
995 + le16_to_cpu(pctx->DataLength); in smb311_decode_neg_context()
1006 if (pctx->ContextType == SMB2_PREAUTH_INTEGRITY_CAPABILITIES) in smb311_decode_neg_context()
1008 (struct smb2_preauth_neg_context *)pctx); in smb311_decode_neg_context()
1009 else if (pctx->ContextType == SMB2_ENCRYPTION_CAPABILITIES) in smb311_decode_neg_context()
1011 (struct smb2_encryption_neg_context *)pctx); in smb311_decode_neg_context()
1012 else if (pctx->ContextType == SMB2_COMPRESSION_CAPABILITIES) in smb311_decode_neg_context()
1014 (struct smb2_compression_capabilities_context *)pctx); in smb311_decode_neg_context()
1015 else if (pctx->ContextType == SMB2_POSIX_EXTENSIONS_AVAILABLE) in smb311_decode_neg_context()
[all …]
/linux/fs/smb/server/
H A Dsmb2pdu.c1723 struct smb2_neg_context *pctx = (struct smb2_neg_context *)req; in deassemble_neg_contexts() local
1744 pctx = (struct smb2_neg_context *)((char *)pctx + offset); in deassemble_neg_contexts()
1745 clen = le16_to_cpu(pctx->DataLength); in deassemble_neg_contexts()
1751 if (pctx->ContextType == SMB2_PREAUTH_INTEGRITY_CAPABILITIES) { in deassemble_neg_contexts()
1758 (struct smb2_preauth_neg_context *)pctx, in deassemble_neg_contexts()
1762 } else if (pctx->ContextType == SMB2_ENCRYPTION_CAPABILITIES) { in deassemble_neg_contexts()
1769 (struct smb2_encryption_neg_context *)pctx, in deassemble_neg_contexts()
1771 } else if (pctx->ContextType == SMB2_COMPRESSION_CAPABILITIES) { in deassemble_neg_contexts()
1781 pctx, ctxt_len); in deassemble_neg_contexts()
1784 } else if (pctx->ContextType == SMB2_NETNAME_NEGOTIATE_CONTEXT_ID) { in deassemble_neg_contexts()
[all …]
/linux/net/netfilter/
H A Dnf_tables_api.c4252 struct nft_ctx *pctx = (struct nft_ctx *)ctx; in nft_setelem_validate() local
4267 pctx->level++; in nft_setelem_validate()
4271 pctx->level--; in nft_setelem_validate()