Searched refs:tmp_output (Results 1 – 2 of 2) sorted by relevance
| /freebsd/crypto/libecc/src/hash/ |
| H A D | sha512_core.c | 165 u8 tmp_output[SHA512_CORE_DIGEST_SIZE] = { 0 }; in sha512_core_final() local 166 PUT_UINT64_BE(ctx->sha512_state[0], tmp_output, 0); in sha512_core_final() 167 PUT_UINT64_BE(ctx->sha512_state[1], tmp_output, 8); in sha512_core_final() 168 PUT_UINT64_BE(ctx->sha512_state[2], tmp_output, 16); in sha512_core_final() 169 PUT_UINT64_BE(ctx->sha512_state[3], tmp_output, 24); in sha512_core_final() 170 PUT_UINT64_BE(ctx->sha512_state[4], tmp_output, 32); in sha512_core_final() 171 PUT_UINT64_BE(ctx->sha512_state[5], tmp_output, 40); in sha512_core_final() 172 PUT_UINT64_BE(ctx->sha512_state[6], tmp_output, 48); in sha512_core_final() 173 PUT_UINT64_BE(ctx->sha512_state[7], tmp_output, 56); in sha512_core_final() 174 ret = local_memcpy(output, tmp_output, output_size); EG(ret, err); in sha512_core_final()
|
| /freebsd/usr.sbin/periodic/ |
| H A D | periodic.sh | 93 tmp_output=`mktemp ${TMPDIR:-/tmp}/periodic.XXXXXXXXXX` 132 $file </dev/null >$tmp_output 2>&1 134 if [ -s $tmp_output ]; then 140 [ $output = TRUE ] && { cat $tmp_output; empty=FALSE; } 142 cp /dev/null $tmp_output 157 rm -f $tmp_output
|