Searched refs:playground (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/tests/sys/mac/bsdextended/
H A Dmatches_test.sh45 if ! playground=$(mktemp -d $TMPDIR/tmp.XXXXXXX); then
49 trap "rmdir $playground" EXIT INT TERM
50 if ! mdmfs -s 25m md $playground; then
54 chmod a+rwx $playground
55 md_device=$(mount -p | grep "$playground" | awk '{ gsub(/^\/dev\//, "", $1); print $1 }')
56 trap "umount -f $playground; mdconfig -d -u $md_device; rmdir $playground" EXIT INT TERM
58 mount -p | grep $playground
64 file1=$playground/test-$uidinrange
65 file2=$playground/tes
[all...]
/freebsd-11-stable/crypto/openssh/
H A Ded25519.c14 static void get_hram(unsigned char *hram, const unsigned char *sm, const unsigned char *pk, unsigned char *playground, unsigned long long smlen) argument
18 for (i = 0;i < 32;++i) playground[i] = sm[i];
19 for (i = 32;i < 64;++i) playground[i] = pk[i-32];
20 for (i = 64;i < smlen;++i) playground[i] = sm[i];
22 crypto_hash_sha512(hram,playground,smlen);

Completed in 101 milliseconds