Searched refs:temp_result (Results 1 – 4 of 4) sorted by relevance
| /src/lib/libcrypt/ |
| H A D | crypt-sha256.c | 67 uint8_t alt_result[32], temp_result[32]; in crypt_sha256() local 150 SHA256_Final(temp_result, &alt_ctx); in crypt_sha256() 155 memcpy(cp, temp_result, 32); in crypt_sha256() 158 memcpy(cp, temp_result, cnt); in crypt_sha256() 168 SHA256_Final(temp_result, &alt_ctx); in crypt_sha256() 173 memcpy(cp, temp_result, 32); in crypt_sha256() 176 memcpy(cp, temp_result, cnt); in crypt_sha256() 238 explicit_bzero(temp_result, sizeof(temp_result)); in crypt_sha256()
|
| H A D | crypt-sha512.c | 67 uint8_t alt_result[64], temp_result[64]; in crypt_sha512() local 150 SHA512_Final(temp_result, &alt_ctx); in crypt_sha512() 155 memcpy(cp, temp_result, 64); in crypt_sha512() 158 memcpy(cp, temp_result, cnt); in crypt_sha512() 168 SHA512_Final(temp_result, &alt_ctx); in crypt_sha512() 173 memcpy(cp, temp_result, 64); in crypt_sha512() 176 memcpy(cp, temp_result, cnt); in crypt_sha512() 250 explicit_bzero(temp_result, sizeof(temp_result)); in crypt_sha512()
|
| /src/contrib/libdiff/lib/ |
| H A D | diff_main.c | 352 if (!solved || state->temp_result.len) { in diff_state_add_chunk() 360 ARRAYLIST_ADD(new_chunk, state->temp_result); in diff_state_add_chunk() 538 ARRAYLIST_FREE(state->temp_result); in diff_run_algo() 539 ARRAYLIST_INIT(state->temp_result, DIFF_RESULT_ALLOC_BLOCKSIZE); in diff_run_algo() 562 for (i = 0; i < state->temp_result.len; i++) { in diff_run_algo() 563 struct diff_chunk *c = &state->temp_result.head[i]; in diff_run_algo() 590 ARRAYLIST_FREE(state->temp_result); in diff_run_algo()
|
| H A D | diff_internal.h | 125 diff_chunk_arraylist_t temp_result; member
|