Home
last modified time | relevance | path

Searched refs:osize (Results 1 – 6 of 6) sorted by relevance

/reactos/dll/3rdparty/mbedtls/
H A Dpk.c453 unsigned char *output, size_t *olen, size_t osize, in mbedtls_pk_decrypt() argument
458 PK_VALIDATE_RET( output != NULL || osize == 0 ); in mbedtls_pk_decrypt()
468 output, olen, osize, f_rng, p_rng ) ); in mbedtls_pk_decrypt()
476 unsigned char *output, size_t *olen, size_t osize, in mbedtls_pk_encrypt() argument
481 PK_VALIDATE_RET( output != NULL || osize == 0 ); in mbedtls_pk_encrypt()
491 output, olen, osize, f_rng, p_rng ) ); in mbedtls_pk_encrypt()
H A Dpk_wrap.c149 unsigned char *output, size_t *olen, size_t osize, in rsa_decrypt_wrap() argument
158 MBEDTLS_RSA_PRIVATE, olen, input, output, osize ) ); in rsa_decrypt_wrap()
163 unsigned char *output, size_t *olen, size_t osize, in rsa_encrypt_wrap() argument
169 if( *olen > osize ) in rsa_encrypt_wrap()
654 unsigned char *output, size_t *olen, size_t osize, in rsa_alt_decrypt_wrap() argument
666 MBEDTLS_RSA_PRIVATE, olen, input, output, osize ) ); in rsa_alt_decrypt_wrap()
/reactos/sdk/include/reactos/libs/mbedtls/
H A Dpk_internal.h104 unsigned char *output, size_t *olen, size_t osize,
110 unsigned char *output, size_t *olen, size_t osize,
H A Dpk.h507 unsigned char *output, size_t *olen, size_t osize,
528 unsigned char *output, size_t *olen, size_t osize,
/reactos/sdk/tools/mkisofs/schilytools/mkisofs/
H A Djoliet.c181 size_t osize = 2; /* UCS-2 character size */ local
185 &obuf, &osize) == -1) {
295 size_t osize = 2; local
304 &obuf, &osize) == -1) {
391 size_t osize = 2; local
400 &obuf, &osize) == -1) {
/reactos/modules/rostests/winetests/iphlpapi/
H A Diphlpapi.c1354 ULONG ret, size, osize, i; in test_GetAdaptersAddresses() local
1380 osize = size; in test_GetAdaptersAddresses()
1381 ptr = HeapAlloc(GetProcessHeap(), 0, osize); in test_GetAdaptersAddresses()
1382 ret = pGetAdaptersAddresses(AF_UNSPEC, GAA_FLAG_INCLUDE_PREFIX, NULL, ptr, &osize); in test_GetAdaptersAddresses()
1384 ok(osize == size, "expected %d, got %d\n", size, osize); in test_GetAdaptersAddresses()