Searched refs:inblock (Results 1 - 10 of 10) sorted by last modified time

/freebsd-11-stable/sys/kern/
H A Dvfs_aio.c816 job->inblock = inblock_end - inblock_st;
1846 td->td_ru.ru_inblock += job->inblock;
2373 job->inblock += nblks;
2440 td->td_ru.ru_inblock += job->inblock;
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp.h1371 long inblock; /* the number of times the file system had to perform input */ member in struct:kmp_sys_info
H A Dz_Windows_NT_util.cpp631 info->inblock = 0; // the number of times the file system had to perform input
H A Dz_Linux_util.cpp1764 info->inblock = r_usage.ru_inblock;
/freebsd-11-stable/sys/sys/
H A Daio.h122 int inblock; /* (*) input blocks */ member in struct:kaiocb
/freebsd-11-stable/crypto/openssl/engines/ccgost/
H A Dgost89.c407 void gost_enc_with_key(gost_ctx * c, byte * key, byte * inblock, argument
411 gostcrypt(c, inblock, outblock);
H A Dgost89.h69 void gost_enc_with_key(gost_ctx *, byte * key, byte * inblock,
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dkeyblock.c97 * @param inblock the key to copy
107 const krb5_keyblock *inblock,
110 return copy_EncryptionKey(inblock, to);
118 * @param inblock the key to copy
129 const krb5_keyblock *inblock,
143 ret = krb5_copy_keyblock_contents (context, inblock, k);
106 krb5_copy_keyblock_contents(krb5_context context, const krb5_keyblock *inblock, krb5_keyblock *to) argument
128 krb5_copy_keyblock(krb5_context context, const krb5_keyblock *inblock, krb5_keyblock **to) argument
/freebsd-11-stable/sys/opencrypto/
H A Dcast.c42 void cast_encrypt(cast_key* key, u_int8_t* inblock, u_int8_t* outblock) argument
46 /* Get inblock into l,r */
47 l = ((u_int32_t)inblock[0] << 24) | ((u_int32_t)inblock[1] << 16) |
48 ((u_int32_t)inblock[2] << 8) | (u_int32_t)inblock[3];
49 r = ((u_int32_t)inblock[4] << 24) | ((u_int32_t)inblock[5] << 16) |
50 ((u_int32_t)inblock[6] << 8) | (u_int32_t)inblock[
87 cast_decrypt(cast_key* key, u_int8_t* inblock, u_int8_t* outblock) argument
[all...]
H A Dcast.h20 void cast_encrypt(cast_key * key, u_int8_t * inblock, u_int8_t * outblock);
21 void cast_decrypt(cast_key * key, u_int8_t * inblock, u_int8_t * outblock);

Completed in 119 milliseconds