| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_auth/hmacsha256/ |
| auth_hmacsha256.c | 58 crypto_hash_sha256_init(&state->octx); 63 crypto_hash_sha256_update(&state->octx, pad, 64); 87 crypto_hash_sha256_update(&state->octx, ihash, 32); 88 crypto_hash_sha256_final(&state->octx, out);
|
| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_auth/hmacsha512/ |
| auth_hmacsha512.c | 58 crypto_hash_sha512_init(&state->octx); 63 crypto_hash_sha512_update(&state->octx, pad, 128); 87 crypto_hash_sha512_update(&state->octx, ihash, 64); 88 crypto_hash_sha512_final(&state->octx, out);
|
| /src/tests/lib/libc/sys/ |
| t_swapcontext.c | 42 ucontext_t octx; variable 64 ATF_REQUIRE(swapcontext(&nctx, &octx)); 93 ATF_REQUIRE(swapcontext(&octx, &nctx) == 0);
|
| /src/tests/lib/libpthread/ |
| t_swapcontext.c | 47 ucontext_t octx; variable 72 nctx.uc_link = &octx; 78 ATF_REQUIRE_MSG(swapcontext(&octx, &nctx) != -1, "swapcontext failed: %s",
|
| /src/external/bsd/tmux/dist/ |
| format-draw.c | 109 format_draw_put(struct screen_write_ctx *octx, u_int ocx, u_int ocy, 117 screen_write_cursormove(octx, ocx + offset, ocy, 0); 118 screen_write_fast_copy(octx, s, start, 0, width, 1); 124 format_draw_put_list(struct screen_write_ctx *octx, 133 format_draw_put(octx, ocx, ocy, list, frs, offset, 0, width); 148 screen_write_cursormove(octx, ocx + offset, ocy, 0); 149 screen_write_fast_copy(octx, list_left, 0, 0, list_left->cx, 1); 155 screen_write_cursormove(octx, ocx + offset + width - 157 screen_write_fast_copy(octx, list_right, 0, 0, list_right->cx, 163 format_draw_put(octx, ocx, ocy, list, frs, offset, start, width) [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| e_aes.c | 344 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX,ctx); local 355 &octx->ksenc.ks); 357 &octx->ksdec.ks); 358 if (!CRYPTO_ocb128_init(&octx->ocb, 359 &octx->ksenc.ks, &octx->ksdec.ks, 371 if (iv == NULL && octx->iv_set) 372 iv = octx->iv; 374 if (CRYPTO_ocb128_setiv(&octx->ocb, iv, octx->ivlen, octx->taglen 698 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX,ctx); local 3738 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX,c); local 3802 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX,ctx); local 3888 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX,ctx); local 4032 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX,c); local [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
| e_aes.c | 481 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX,ctx); local 492 &octx->ksenc.ks); 494 &octx->ksdec.ks); 495 if (!CRYPTO_ocb128_init(&octx->ocb, 496 &octx->ksenc.ks, &octx->ksdec.ks, 508 if (iv == NULL && octx->iv_set) 509 iv = octx->iv; 511 if (CRYPTO_ocb128_setiv(&octx->ocb, iv, octx->ivlen, octx->taglen 905 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX,ctx); local 3959 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX,c); local 4046 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX,ctx); local 4130 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX,ctx); local 4274 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX,c); local [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| e_aes.c | 361 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX, ctx); local 379 aesni_set_encrypt_key(key, keylen, &octx->ksenc.ks); 380 aesni_set_decrypt_key(key, keylen, &octx->ksdec.ks); 381 if (!CRYPTO_ocb128_init(&octx->ocb, 382 &octx->ksenc.ks, &octx->ksdec.ks, 393 if (iv == NULL && octx->iv_set) 394 iv = octx->iv; 396 if (CRYPTO_ocb128_setiv(&octx->ocb, iv, octx->ivlen, octx->taglen 747 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX, ctx); local 3852 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX, c); local 3915 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX, ctx); local 4000 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX, ctx); local 4142 EVP_AES_OCB_CTX *octx = EVP_C_DATA(EVP_AES_OCB_CTX, c); local [all...] |
| /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/ |
| crypto_auth_hmacsha256.h | 40 crypto_hash_sha256_state octx; member in struct:crypto_auth_hmacsha256_state
|
| crypto_auth_hmacsha512.h | 40 crypto_hash_sha512_state octx; member in struct:crypto_auth_hmacsha512_state
|
| /src/sys/arch/sparc/sparc/ |
| cache.c | 592 int i, ls, octx; local 599 octx = getcontext4m(); 604 setcontext4m(octx); 618 int i, ls, octx; local 625 octx = getcontext4m(); 630 setcontext4m(octx); 646 int i, ls, octx; local 653 octx = getcontext4m(); 658 setcontext4m(octx); 670 int i, ls, octx; local 723 int octx; local [all...] |
| pmap.c | 648 int opsr, octx; local 668 octx = getcontext4m(); /* save context */ 674 setcontext4m(octx); /* restore context */ 2321 int octx = getcontext4(); local 2324 setcontext4(octx);
|
| /src/crypto/external/bsd/openssh/dist/ |
| hmac.c | 31 struct ssh_digest_ctx *octx; member in struct:ssh_hmac_ctx 52 (ret->octx = ssh_digest_start(alg)) == NULL || 69 /* reset ictx and octx if no is key given */ 83 if (ssh_digest_update(ctx->octx, ctx->buf, ctx->buf_len) < 0) 114 /* switch to octx */ 115 if (ssh_digest_copy_state(ctx->octx, ctx->digest) < 0 || 127 ssh_digest_free(ctx->octx);
|
| umac.c | 1240 struct umac_ctx *ctx, *octx; local 1244 octx = ctx = xcalloc(1, sizeof(*ctx) + ALLOC_BOUNDARY); 1251 ctx->free_ptr = octx;
|
| /src/external/gpl3/gcc/dist/gcc/ |
| gimplify.cc | 7857 struct gimplify_omp_ctx *octx; 7859 for (octx = ctx; octx; octx = octx->outer_context) 7860 if ((octx->region_type & ORT_TARGET) != 0 7861 || octx->order_concurrent) 7863 n = splay_tree_lookup (octx->variables, (splay_tree_key)decl); 7866 if (octx->order_concurrent) 7870 inform (octx->location, "enclosing region") 7854 struct gimplify_omp_ctx *octx; local 8265 struct gimplify_omp_ctx *octx; local 8328 struct gimplify_omp_ctx *octx = ctx->outer_context; local 12295 struct gimplify_omp_ctx *octx = outer_ctx; local 12324 struct gimplify_omp_ctx *octx = outer_ctx; local 12430 struct gimplify_omp_ctx *octx; local 13772 struct gimplify_omp_ctx *octx; local 13997 struct gimplify_omp_ctx *octx; local 15596 struct gimplify_omp_ctx *octx = outer->outer_context; local 16337 struct gimplify_omp_ctx *octx = gimplify_omp_ctxp; local [all...] |
| omp-low.cc | 3207 for (omp_context *octx = ctx; octx != NULL; octx = octx->outer) 3208 if (is_gimple_omp (octx->stmt) 3209 && is_gimple_omp_oacc (octx->stmt)) 3487 for (omp_context *octx = ctx->outer; 3488 octx; octx = octx->outer 4095 omp_context *octx = ctx; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| gimplify.cc | 7427 struct gimplify_omp_ctx *octx; 7429 for (octx = ctx; octx; octx = octx->outer_context) 7430 if ((octx->region_type & ORT_TARGET) != 0 7431 || octx->order_concurrent) 7433 n = splay_tree_lookup (octx->variables, (splay_tree_key)decl); 7436 if (octx->order_concurrent) 7440 inform (octx->location, "enclosing region") 7424 struct gimplify_omp_ctx *octx; local 7797 struct gimplify_omp_ctx *octx; local 7855 struct gimplify_omp_ctx *octx = ctx->outer_context; local 9397 struct gimplify_omp_ctx *octx = outer_ctx; local 9426 struct gimplify_omp_ctx *octx = outer_ctx; local 9564 struct gimplify_omp_ctx *octx; local 11369 struct gimplify_omp_ctx *octx; local 11529 struct gimplify_omp_ctx *octx; local 12817 struct gimplify_omp_ctx *octx = outer->outer_context; local 13558 struct gimplify_omp_ctx *octx = gimplify_omp_ctxp; local [all...] |
| omp-low.cc | 3165 for (omp_context *octx = ctx; octx != NULL; octx = octx->outer) 3166 if (is_gimple_omp (octx->stmt) 3167 && is_gimple_omp_oacc (octx->stmt)) 3445 for (omp_context *octx = ctx->outer; 3446 octx; octx = octx->outer 4135 omp_context *octx = ctx; local [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/modes/ |
| ocb128.c | 134 OCB128_CONTEXT *octx; local 137 if ((octx = OPENSSL_malloc(sizeof(*octx))) != NULL) { 138 ret = CRYPTO_ocb128_init(octx, keyenc, keydec, encrypt, decrypt, 141 return octx; 142 OPENSSL_free(octx);
|
| /src/crypto/external/bsd/openssl/dist/crypto/modes/ |
| ocb128.c | 134 OCB128_CONTEXT *octx; local 137 if ((octx = OPENSSL_malloc(sizeof(*octx))) != NULL) { 138 ret = CRYPTO_ocb128_init(octx, keyenc, keydec, encrypt, decrypt, 141 return octx; 142 OPENSSL_free(octx);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/modes/ |
| ocb128.c | 134 OCB128_CONTEXT *octx; local 137 if ((octx = OPENSSL_malloc(sizeof(*octx))) != NULL) { 138 ret = CRYPTO_ocb128_init(octx, keyenc, keydec, encrypt, decrypt, 141 return octx; 142 OPENSSL_free(octx);
|
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| cp-gimplify.cc | 862 struct cp_genericize_omp_taskreg *octx; local 864 for (octx = omp_ctx->outer; octx; octx = octx->outer) 866 n = splay_tree_lookup (octx->variables, (splay_tree_key) decl); 872 if (octx->is_parallel) 875 if (octx == NULL
|
| call.cc | 9520 tree octx = DECL_CONTEXT (ov); local 9522 while (obinfo && !SAME_BINFO_TYPE_P (BINFO_TYPE (obinfo), octx))
|
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| cp-gimplify.cc | 1010 struct cp_genericize_omp_taskreg *octx; local 1012 for (octx = omp_ctx->outer; octx; octx = octx->outer) 1014 n = splay_tree_lookup (octx->variables, (splay_tree_key) decl); 1020 if (octx->is_parallel) 1023 if (octx == NULL
|
| call.cc | 10199 tree octx = DECL_CONTEXT (ov); local 10201 while (obinfo && !SAME_BINFO_TYPE_P (BINFO_TYPE (obinfo), octx))
|