Searched refs:impl (Results 1 - 14 of 14) sorted by relevance

/barrelfish-master/lib/libc/include/
H A Dcompat.h38 #define __sym_compat(sym,impl,verid) \
39 .symver impl, sym@verid
/barrelfish-master/tools/harness/tests/
H A Dmdbbench.py45 for impl in self.impls:
46 targets.append('%s/sbin/%s' % (machine.get_bootarch(), impl))
49 def run_one(self, build, machine, testdir, count, measure, reset, impl, runs):
50 debug.log('running %s m=%s c=%s' % (impl, measure, count))
51 yield "[mdb_bench of %s]\n" % impl
55 modules.add_module(impl, bench_args)
77 results = RowResults(['impl', 'reset', 'measure', 'count', 'ticks'])
79 impl = None
87 impl = m.group(1)
98 assert(impl
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/evp/
H A Ddigest.c141 int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl) argument
159 if(impl)
161 if (!ENGINE_init(impl))
169 impl = ENGINE_get_digest_engine(type->type);
170 if(impl)
173 const EVP_MD *d = ENGINE_get_digest(impl, type->type);
178 ENGINE_finish(impl);
186 ctx->engine = impl;
330 unsigned char *md, unsigned int *size, const EVP_MD *type, ENGINE *impl)
337 ret=EVP_DigestInit_ex(&ctx, type, impl)
329 EVP_Digest(const void *data, size_t count, unsigned char *md, unsigned int *size, const EVP_MD *type, ENGINE *impl) argument
[all...]
H A Devp_enc.c93 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, argument
123 if(impl)
125 if (!ENGINE_init(impl))
133 impl = ENGINE_get_cipher_engine(cipher->nid);
134 if(impl)
137 const EVP_CIPHER *c = ENGINE_get_cipher(impl, cipher->nid);
152 ctx->engine = impl;
260 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl, argument
263 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1);
272 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, argument
[all...]
H A Devp.h513 int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl);
518 unsigned char *md, unsigned int *size, const EVP_MD *type, ENGINE *impl);
539 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
548 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
558 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
/barrelfish-master/lib/openssl-1.0.0d/crypto/
H A Dex_data.c171 static const CRYPTO_EX_DATA_IMPL *impl = NULL; variable
173 /* To call "impl" functions, use this macro rather than referring to 'impl' directly, eg.
175 #define EX_IMPL(a) impl->cb_##a
199 /* Internal function that checks whether "impl" is set and if not, sets it to
204 if(!impl)
205 impl = &impl_default;
210 #define IMPL_CHECK if(!impl) impl_check();
216 return impl;
222 if(!impl)
[all...]
/barrelfish-master/lib/acpica/tests/aslts/bin/
H A Dsettings109 local func compl excep bdemo serv impl
147 impl="dynobj"
/barrelfish-master/lib/openssl-1.0.0d/crypto/hmac/
H A Dhmac.c65 const EVP_MD *md, ENGINE *impl)
85 if (!EVP_DigestInit_ex(&ctx->md_ctx,md, impl))
108 if (!EVP_DigestInit_ex(&ctx->i_ctx,md, impl))
115 if (!EVP_DigestInit_ex(&ctx->o_ctx,md, impl))
64 HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md, ENGINE *impl) argument
H A Dhmac.h96 const EVP_MD *md, ENGINE *impl);
/barrelfish-master/include/openssl/
H A Dhmac.h96 const EVP_MD *md, ENGINE *impl);
H A Devp.h513 int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl);
518 unsigned char *md, unsigned int *size, const EVP_MD *type, ENGINE *impl);
539 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
548 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
558 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
/barrelfish-master/usr/eclipseclp/WinMSC/GmpDll/
H A DGmpDll.mak1204 "..\..\gmp\src\gmp-impl.h"\
1243 "..\..\gmp\src\gmp-impl.h"\
1282 "..\..\gmp\src\gmp-impl.h"\
1321 "..\..\gmp\src\gmp-impl.h"\
1361 "..\..\gmp\src\gmp-impl.h"\
1403 "..\..\gmp\src\gmp-impl.h"\
1443 "..\..\gmp\src\gmp-impl.h"\
1482 "..\..\gmp\src\gmp-impl.h"\
1521 "..\..\gmp\src\gmp-impl.h"\
1561 "..\..\gmp\src\gmp-impl
[all...]
/barrelfish-master/include/sys/
H A Dcdefs.h576 #define __sym_compat(sym,impl,verid) \
577 __asm__(".symver " #impl ", " #sym "@" #verid)
578 #define __sym_default(sym,impl,verid) \
579 __asm__(".symver " #impl ", " #sym "@@" #verid)
588 #define __sym_compat(sym,impl,verid) \
589 __asm__(".symver impl, sym@verid")
590 #define __sym_default(impl,sym,verid) \
591 __asm__(".symver impl, sym@@verid")
/barrelfish-master/lib/libc/gen/
H A Dsem.c100 #define SYM_COMPAT(sym, impl, ver) __sym_compat(sym, impl, ver)

Completed in 209 milliseconds