Searched refs:cbits (Results 1 - 7 of 7) sorted by relevance

/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/evp/
H A Devp_locl.h80 #define BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) \
85 cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, &ctx->num);\
91 cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, &ctx->num);\
110 #define BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \
111 static int cname##_cfb##cbits##_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
114 if (cbits==1) chunk>>=3;\
118 cprefix##_cfb##cbits##_encrypt(in, out, (long)((cbits==1) && !(ctx->flags & EVP_CIPH_FLAG_LENGTH_BITS) ?inl*8:inl), &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, &ctx->num, ctx->encrypt);\
127 #define BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \
129 BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruc
[all...]
H A De_aes.c89 #define IMPLEMENT_AES_CFBR(ksize,cbits) IMPLEMENT_CFBR(aes,AES,EVP_AES_KEY,ks,ksize,cbits,16)
H A De_camellia.c96 #define IMPLEMENT_CAMELLIA_CFBR(ksize,cbits) IMPLEMENT_CFBR(camellia,Camellia,EVP_CAMELLIA_KEY,ks,ksize,cbits,16)
/barrelfish-2018-10-04/include/openssl/local/
H A Devp_locl.h80 #define BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) \
85 cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, &ctx->num);\
91 cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, &ctx->num);\
110 #define BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \
111 static int cname##_cfb##cbits##_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
114 if (cbits==1) chunk>>=3;\
118 cprefix##_cfb##cbits##_encrypt(in, out, (long)((cbits==1) && !(ctx->flags & EVP_CIPH_FLAG_LENGTH_BITS) ?inl*8:inl), &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, &ctx->num, ctx->encrypt);\
127 #define BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \
129 BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruc
[all...]
/barrelfish-2018-10-04/usr/monitor/include/arch/x86_32/
H A Dmonitor_invocations_arch.h261 invoke_monitor_get_cap_owner(capaddr_t root, int rbits, capaddr_t cap, int cbits, coreid_t *ret_owner) argument
264 root, rbits, cap, cbits);
272 invoke_monitor_set_cap_owner(capaddr_t root, int rbits, capaddr_t cap, int cbits, coreid_t owner) argument
274 return cap_invoke6(cap_kernel, KernelCmd_Set_cap_owner, root, rbits, cap, cbits, owner).error;
278 invoke_monitor_lock_cap(capaddr_t root, int rbits, capaddr_t cap, int cbits) argument
280 return cap_invoke5(cap_kernel, KernelCmd_Lock_cap, root, rbits, cap, cbits).error;
284 invoke_monitor_unlock_cap(capaddr_t root, int rbits, capaddr_t cap, int cbits) argument
286 return cap_invoke5(cap_kernel, KernelCmd_Unlock_cap, root, rbits, cap, cbits).error;
290 invoke_monitor_delete_last(capaddr_t root, int rbits, capaddr_t cap, int cbits, argument
294 assert(cbits <
308 invoke_monitor_revoke_mark_target(capaddr_t root, int rbits, capaddr_t cap, int cbits) argument
[all...]
/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_study.c727 for (c = 0; c < table_limit; c++) start_bits[c] |= cd->cbits[c+cbit_type];
732 if ((cd->cbits[c/8] & (1 << (c&7))) != 0)
769 for (c = 0; c < table_limit; c++) start_bits[c] |= ~cd->cbits[c+cbit_type];
1531 compile_block.cbits = tables + cbits_offset;
H A Dpcre_compile.c3316 set2 = (pcre_uint8 *)(cd->cbits + cbit_digit);
3323 set2 = (pcre_uint8 *)(cd->cbits + cbit_space);
3330 set2 = (pcre_uint8 *)(cd->cbits + cbit_word);
5016 register const pcre_uint8 *cbits = cd->cbits; local
5124 memcpy(pbits, cbits + posix_class_maps[posix_class],
5135 for (c = 0; c < 32; c++) pbits[c] |= cbits[c + taboffset];
5137 for (c = 0; c < 32; c++) pbits[c] &= ~cbits[c + taboffset];
5197 register const pcre_uint8 *cbits = cd->cbits; local
[all...]

Completed in 99 milliseconds