Searched refs:cip (Results 1 - 8 of 8) sorted by relevance

/linux-master/drivers/media/usb/pvrusb2/
H A Dpvrusb2-sysfs.c73 struct pvr2_sysfs_ctl_item *cip; local
75 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_name);
76 name = pvr2_ctrl_get_desc(cip->cptr);
78 cip->chptr, cip->ctl_id, name);
87 struct pvr2_sysfs_ctl_item *cip; local
90 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_type);
91 tp = pvr2_ctrl_get_type(cip->cptr);
100 cip->chptr, cip
108 struct pvr2_sysfs_ctl_item *cip; local
121 struct pvr2_sysfs_ctl_item *cip; local
134 struct pvr2_sysfs_ctl_item *cip; local
153 struct pvr2_sysfs_ctl_item *cip; local
172 struct pvr2_sysfs_ctl_item *cip; local
191 struct pvr2_sysfs_ctl_item *cip; local
215 struct pvr2_sysfs_ctl_item *cip; local
236 store_val_any(struct pvr2_sysfs_ctl_item *cip, int customfl, const char *buf,unsigned int count) argument
258 struct pvr2_sysfs_ctl_item *cip; local
272 struct pvr2_sysfs_ctl_item *cip; local
284 struct pvr2_sysfs_ctl_item *cip; local
[all...]
/linux-master/drivers/crypto/
H A Dgeode-aes.h53 struct crypto_cipher *cip; member in union:geode_aes_tfm_ctx::__anon262
H A Dgeode-aes.c129 tctx->fallback.cip->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK;
130 tctx->fallback.cip->base.crt_flags |=
133 return crypto_cipher_setkey(tctx->fallback.cip, key, len);
169 crypto_cipher_encrypt_one(tctx->fallback.cip, out, in);
184 crypto_cipher_decrypt_one(tctx->fallback.cip, out, in);
197 tctx->fallback.cip = crypto_alloc_cipher(name, 0,
200 if (IS_ERR(tctx->fallback.cip)) {
202 return PTR_ERR(tctx->fallback.cip);
212 crypto_free_cipher(tctx->fallback.cip);
/linux-master/fs/xfs/
H A Dxfs_export.c224 struct xfs_inode *cip; local
226 error = xfs_lookup(XFS_I(d_inode(child)), &xfs_name_dotdot, &cip, NULL);
230 return d_obtain_alias(VFS_I(cip));
H A Dxfs_iops.c295 struct xfs_inode *cip; local
303 error = xfs_lookup(XFS_I(dir), &name, &cip, NULL);
305 inode = VFS_I(cip);
408 struct xfs_inode *cip = NULL; local
419 error = xfs_symlink(idmap, XFS_I(dir), &name, symname, mode, &cip);
423 inode = VFS_I(cip);
429 xfs_setup_iops(cip);
432 xfs_finish_inode_setup(cip);
436 xfs_finish_inode_setup(cip);
438 xfs_irele(cip);
[all...]
/linux-master/arch/s390/crypto/
H A Daes_s390.c49 struct crypto_cipher *cip; member in union:s390_aes_ctx::__anon16
77 sctx->fallback.cip->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK;
78 sctx->fallback.cip->base.crt_flags |= (tfm->crt_flags &
81 return crypto_cipher_setkey(sctx->fallback.cip, in_key, key_len);
110 crypto_cipher_encrypt_one(sctx->fallback.cip, out, in);
121 crypto_cipher_decrypt_one(sctx->fallback.cip, out, in);
133 sctx->fallback.cip = crypto_alloc_cipher(name, 0,
136 if (IS_ERR(sctx->fallback.cip)) {
139 return PTR_ERR(sctx->fallback.cip);
149 crypto_free_cipher(sctx->fallback.cip);
[all...]
/linux-master/arch/powerpc/kvm/
H A Dbook3s_hv.c3494 static void init_core_info(struct core_info *cip, struct kvmppc_vcore *vc) argument
3496 memset(cip, 0, sizeof(*cip));
3497 cip->n_subcores = 1;
3498 cip->max_subcore_threads = vc->num_threads;
3499 cip->total_threads = vc->num_threads;
3500 cip->subcore_threads[0] = vc->num_threads;
3501 cip->vc[0] = vc;
3537 static bool can_dynamic_split(struct kvmppc_vcore *vc, struct core_info *cip) argument
3546 if (one_vm_per_core && vc->kvm != cip
3570 can_piggyback(struct kvmppc_vcore *pvc, struct core_info *cip, int target_threads) argument
3598 collect_piggybacks(struct core_info *cip, int target_threads) argument
3629 recheck_signals_and_mmu(struct core_info *cip) argument
[all...]
/linux-master/tools/testing/selftests/net/
H A Dtls.c1742 char cip[3][128]; local
1754 n = recv(self->cfd, cip[i], sizeof(cip[i]), 0);
1758 cip[2][n - 1]++;
1759 EXPECT_EQ(send(self->fd2, cip[i], n, 0), n);
1777 char cip[128]; local
1788 n = recv(self->cfd, cip, sizeof(cip), 0);
1790 EXPECT_EQ(send(self->fd2, cip, n, 0), n);
1793 n = recv(self->cfd, cip, sizeo
[all...]

Completed in 427 milliseconds