Searched refs:mres (Results 1 – 8 of 8) sorted by relevance
/third_party/openssl/crypto/modes/ |
D | gcm128.c | 848 ctx->mres = 0; 995 unsigned int n, ctr, mres; local 1013 mres = ctx->mres; 1026 mres = sizeof(ctx->Xi); 1042 n = mres % 16; 1049 ctx->Xn[mres++] = *(out++) = *(in++) ^ ctx->EKi.c[n]; 1054 GHASH(ctx, ctx->Xn, mres); 1055 mres = 0; 1057 ctx->mres = mres; 1068 mres = 0; [all …]
|
D | modes_local.h | 139 unsigned int mres, ares; member
|
/third_party/curl/tests/libtest/ |
D | lib670.c | 106 CURLMcode mres; in test() local 179 mres = curl_multi_add_handle(multi, pooh.easy); in test() 180 while(!mres) { in test() 188 mres = curl_multi_perform(multi, &still_running); in test() 189 if(!still_running || mres != CURLM_OK) in test() 210 mres = curl_multi_fdset(multi, &fdread, &fdwrite, &fdexcept, &maxfd); in test() 211 if(mres) in test() 225 if(mres != CURLM_OK) in test()
|
D | lib583.c | 39 CURLMcode mres; in test() local 69 mres = curl_multi_remove_handle(multiHandle, curl); in test() 70 if(mres) { in test() 72 "with code %d\n", (int)mres); in test()
|
D | lib1592.c | 47 CURLMcode mres; in test() local 101 mres = curl_multi_remove_handle(multiHandle, curl); in test() 102 if(mres) { in test()
|
/third_party/boringssl/src/crypto/fipsmodule/modes/ |
D | gcm.c | 393 ctx->mres = 0; in CRYPTO_gcm128_setiv() 507 unsigned n = ctx->mres; in CRYPTO_gcm128_encrypt() 517 ctx->mres = n; in CRYPTO_gcm128_encrypt() 567 ctx->mres = n; in CRYPTO_gcm128_encrypt() 595 unsigned n = ctx->mres; in CRYPTO_gcm128_decrypt() 607 ctx->mres = n; in CRYPTO_gcm128_decrypt() 659 ctx->mres = n; in CRYPTO_gcm128_decrypt() 686 unsigned n = ctx->mres; in CRYPTO_gcm128_encrypt_ctr32() 696 ctx->mres = n; in CRYPTO_gcm128_encrypt_ctr32() 744 ctx->mres = n; in CRYPTO_gcm128_encrypt_ctr32() [all …]
|
D | internal.h | 183 unsigned mres, ares; member
|
/third_party/openssl/crypto/evp/ |
D | e_aes.c | 1095 unsigned char mres[16]; member 1500 ctx->mres[n] = *inptr; in s390x_aes_gcm() 1507 s390x_kma(ctx->ares, ctx->areslen, ctx->mres, 16, buf.b, in s390x_aes_gcm() 1554 ctx->mres[n + i] = in[i]; in s390x_aes_gcm() 1893 s390x_kma(gctx->ares, gctx->areslen, gctx->mres, gctx->mreslen, tmp, in s390x_aes_gcm_cipher() 3212 size_t res = (16 - gctx->gcm.mres) % 16; in aes_gcm_cipher() 3234 size_t res = (16 - gctx->gcm.mres) % 16; in aes_gcm_cipher() 3256 size_t res = (16 - gctx->gcm.mres) % 16; in aes_gcm_cipher() 3278 size_t res = (16 - gctx->gcm.mres) % 16; in aes_gcm_cipher()
|