/linux-2.4.37.9/drivers/net/ |
D | tun.c | 184 static __inline__ ssize_t tun_get_user(struct tun_struct *tun, struct iovec *iv, size_t count) in tun_get_user() argument 194 memcpy_fromiovec((void *)&pi, iv, sizeof(pi)); in tun_get_user() 203 memcpy_fromiovec(skb_put(skb, len), iv, len); in tun_get_user() 228 static ssize_t tun_chr_writev(struct file * file, const struct iovec *iv, in tun_chr_writev() argument 241 if (verify_area(VERIFY_READ, iv[i].iov_base, iv[i].iov_len)) in tun_chr_writev() 243 len += iv[i].iov_len; in tun_chr_writev() 246 return tun_get_user(tun, (struct iovec *) iv, len); in tun_chr_writev() 253 struct iovec iv = { (void *) buf, count }; in tun_chr_write() local 254 return tun_chr_writev(file, &iv, 1, pos); in tun_chr_write() 260 struct iovec *iv, int len) in tun_put_user() argument [all …]
|
/linux-2.4.37.9/crypto/ |
D | cipher.c | 101 u8 *iv = info; in cbc_process() local 104 if (!iv) in cbc_process() 108 tfm->crt_u.cipher.cit_xor_block(iv, src); in cbc_process() 109 fn(crypto_tfm_ctx(tfm), dst, iv); in cbc_process() 110 memcpy(iv, dst, crypto_tfm_alg_blocksize(tfm)); in cbc_process() 116 tfm->crt_u.cipher.cit_xor_block(buf, iv); in cbc_process() 117 memcpy(iv, src, crypto_tfm_alg_blocksize(tfm)); in cbc_process() 153 unsigned int nbytes, u8 *iv) in ecb_encrypt_iv() argument 172 unsigned int nbytes, u8 *iv) in ecb_decrypt_iv() argument 191 unsigned int nbytes, u8 *iv) in cbc_encrypt_iv() argument [all …]
|
D | tcrypt.h | 52 char iv[MAX_IVLEN]; member 962 .iv = { 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10}, 974 .iv = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xab, 0xcd, 0xef }, 982 .iv = { 0xe5, 0xc7, 0xcd, 0xde, 0x87, 0x2b, 0xf2, 0x7c }, 990 .iv = { 0x43, 0xe9, 0x34, 0x00, 0x8c, 0x38, 0x9c, 0x0f }, 999 .iv = { 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10}, 1017 .iv = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xab, 0xcd, 0xef }, 1025 .iv = { 0xe5, 0xc7, 0xcd, 0xde, 0x87, 0x2b, 0xf2, 0x7c }, 1033 .iv = { 0x43, 0xe9, 0x34, 0x00, 0x8c, 0x38, 0x9c, 0x0f }, 1041 .iv = { 0x43, 0xe9, 0x34, 0x00, 0x8c, 0x38, 0x9c, 0x0f }, [all …]
|
D | tcrypt.c | 330 crypto_cipher_set_iv(tfm, cipher_tv[i].iv, in test_cipher() 389 crypto_cipher_set_iv(tfm, cipher_tv[i].iv, in test_cipher()
|
D | des.c | 41 u8 iv[DES_BLOCK_SIZE]; member 46 u8 iv[DES_BLOCK_SIZE]; member
|
D | serpent.c | 215 u8 iv[SERPENT_BLOCK_SIZE]; member
|
/linux-2.4.37.9/drivers/block/paride/ |
D | setup.h | 23 int *iv; /* pointer to variable */ member 48 t[j].iv[0] = 1; in generic_setup() 62 t[j].iv[k] = sgn * simple_strtoul(ss,NULL,0); in generic_setup()
|
/linux-2.4.37.9/include/linux/ |
D | crypto.h | 144 unsigned int nbytes, u8 *iv); 152 unsigned int nbytes, u8 *iv); 323 unsigned int nbytes, u8 *iv) in crypto_cipher_encrypt_iv() argument 327 return tfm->crt_cipher.cit_encrypt_iv(tfm, dst, src, nbytes, iv); in crypto_cipher_encrypt_iv() 342 unsigned int nbytes, u8 *iv) in crypto_cipher_decrypt_iv() argument 346 return tfm->crt_cipher.cit_decrypt_iv(tfm, dst, src, nbytes, iv); in crypto_cipher_decrypt_iv()
|
/linux-2.4.37.9/net/bluetooth/bnep/ |
D | core.c | 101 struct iovec iv = { data, len }; in bnep_send() local 102 s->msg.msg_iov = &iv; in bnep_send() 409 struct iovec iv[3]; in bnep_tx_frame() local 420 iv[il++] = (struct iovec) { &type, 1 }; in bnep_tx_frame() 435 iv[il++] = (struct iovec) { eh->h_source, ETH_ALEN }; in bnep_tx_frame() 440 iv[il++] = (struct iovec) { eh->h_dest, ETH_ALEN }; in bnep_tx_frame() 446 iv[il++] = (struct iovec) { skb->data, skb->len }; in bnep_tx_frame() 451 s->msg.msg_iov = iv; in bnep_tx_frame()
|
/linux-2.4.37.9/drivers/scsi/ |
D | changelog.megaraid2 | 77 iv. Right structure is passed to FW for 4-span read configuration command. 94 iv. Add support for Intel's subsystem vendor id 130 iv. The max outstanding commands are reduced to 126 because that's the 137 vi. max_commands is no longer a module parameter because of iv.
|
/linux-2.4.37.9/net/bluetooth/rfcomm/ |
D | core.c | 608 struct iovec iv = { data, len }; in rfcomm_send_frame() local 616 msg.msg_iov = &iv; in rfcomm_send_frame() 903 struct iovec iv[3]; in rfcomm_send_test() local 920 iv[0].iov_base = hdr; in rfcomm_send_test() 921 iv[0].iov_len = 5; in rfcomm_send_test() 922 iv[1].iov_base = pattern; in rfcomm_send_test() 923 iv[1].iov_len = len; in rfcomm_send_test() 924 iv[2].iov_base = crc; in rfcomm_send_test() 925 iv[2].iov_len = 1; in rfcomm_send_test() 929 msg.msg_iov = iv; in rfcomm_send_test()
|
/linux-2.4.37.9/include/asm-ia64/ |
D | pal.h | 493 iv : 1, /* instruction set field valid */ member 528 iv : 1, /* instruction set field valid */ member 564 iv : 1, /* instruction set field valid */ member 594 iv : 1, /* instruction set field valid */ member 623 iv : 1, /* instruction set field valid */ member
|
/linux-2.4.37.9/net/bluetooth/cmtp/ |
D | core.c | 202 struct iovec iv = { data, len }; in cmtp_send_frame() local 213 msg.msg_iov = &iv; in cmtp_send_frame()
|
/linux-2.4.37.9/Documentation/fb/ |
D | tridentfb.txt | 55 Contact: jani@iv.ro
|
/linux-2.4.37.9/Documentation/isdn/ |
D | README.sc | 196 iv) set the eaz of the interface to be the phone number of that 220 "encap" to syncppp. With this done, the rest of the steps, iv) to x) 246 iv) set the packet encapsulation to syncppp
|
/linux-2.4.37.9/fs/hfs/ |
D | HFS.txt | 333 …lpphhaa,, ccaapp,, llaattiinn,, nneettaattaallkk,, ttrriivviiaall}} 440 ttrriivviiaall
|
/linux-2.4.37.9/Documentation/filesystems/ |
D | coda.txt | 1231 44..2222.. iinnaaccttiivvee
|