Home
last modified time | relevance | path

Searched refs:final (Results 1 – 25 of 79) sorted by relevance

1234

/f-stack/freebsd/contrib/libsodium/test/default/
H A DMakefile.am160 auth.final \
161 auth2.final \
162 auth3.final \
166 box.final \
167 box2.final \
168 box7.final \
169 box8.final \
187 hash.final \
190 kdf.final \
192 kx.final \
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Dsend-c_incremental.ksh38 typeset final dstlist list vol
58 final=$(getds_with_suffix $POOL2 @final)
59 list="$final $(getds_with_suffix $POOL2 @snapA)"
67 dstlist=$(getds_with_suffix $POOL2 @final)
68 [[ $final != $dstlist ]] && log_fail "$final != $dstlist"
74 final=$(getds_with_suffix $vol @final)
79 dstlist=$(getds_with_suffix $POOL2/$FS/vol @final)
80 [[ $final != $dstlist ]] && log_fail "$final != $dstlist"
86 final=$(getds_with_suffix $POOL2/$FS @final)
95 dstlist=$(getds_with_suffix $POOL2/$FS @final)
[all …]
H A Drsend_004_pos.ksh61 srclist=$(getds_with_suffix $POOL2 @final)
72 dstlist=$(getds_with_suffix $POOL2 @final)
86 srclist=$(getds_with_suffix $dstds/$FS @final)
94 zfs receive -F -d $dstds/$FS < $BACKDIR/fs-init-final-iR
97 dstlist=$(getds_with_suffix $dstds/$FS @final)
107 srclist=$(getds_with_suffix $POOL2/$FS/vol @final)
113 dstlist=$(getds_with_suffix $POOL2/$FS/vol @final)
H A Drsend_002_pos.ksh62 log_must destroy_tree $POOL2@final $POOL2@snapC $POOL2@snapA
74 log_must destroy_tree $dstds/$FS@final $dstds/$FS@snapC $dstds/$FS@snapB
86 log_must destroy_tree $dataset@final $dataset@snapC \
H A Dsend-c_props.ksh60 log_must cmp_ds_prop $POOL$ds@final $POOL2$ds@final
H A Drsend_005_pos.ksh86 zfs receive -d -F $dstds < $BACKDIR/fs-init-final-IR
98 log_must destroy_tree $vol@snapB $vol@snapC $vol@final
H A Drsend_012_pos.ksh180 log_must cmp_ds_prop ${pair[$i]}@final ${pair[((i+1))]}@final
H A Drsend_007_pos.ksh93 zfs receive -d -F $dstds < $BACKDIR/pool-init-final-IR
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_crypt.c56 u_char *p, *last, final[16]; in ngx_crypt_apr1() local
82 ngx_md5_final(final, &ctx1); in ngx_crypt_apr1()
88 ngx_memzero(final, sizeof(final)); in ngx_crypt_apr1()
99 ngx_md5_final(final, &md5); in ngx_crypt_apr1()
126 ngx_md5_final(final, &ctx1); in ngx_crypt_apr1()
140 p = ngx_crypt_to64(p, (final[ 0]<<16) | (final[ 6]<<8) | final[12], 4); in ngx_crypt_apr1()
141 p = ngx_crypt_to64(p, (final[ 1]<<16) | (final[ 7]<<8) | final[13], 4); in ngx_crypt_apr1()
142 p = ngx_crypt_to64(p, (final[ 2]<<16) | (final[ 8]<<8) | final[14], 4); in ngx_crypt_apr1()
143 p = ngx_crypt_to64(p, (final[ 3]<<16) | (final[ 9]<<8) | final[15], 4); in ngx_crypt_apr1()
144 p = ngx_crypt_to64(p, (final[ 4]<<16) | (final[10]<<8) | final[ 5], 4); in ngx_crypt_apr1()
[all …]
/f-stack/app/redis-5.0.5/deps/jemalloc/test/unit/
H A Dhash.c65 VARIABLE_ARRAY(uint8_t, final, hashbytes); in hash_variant_verify_key()
71 memset(final, 0, hashbytes); in hash_variant_verify_key()
103 memcpy(final, &out, sizeof(out)); in hash_variant_verify_key()
108 memcpy(final, out, sizeof(out)); in hash_variant_verify_key()
113 memcpy(final, out, sizeof(out)); in hash_variant_verify_key()
118 computed = (final[0] << 0) | (final[1] << 8) | (final[2] << 16) | in hash_variant_verify_key()
119 (final[3] << 24); in hash_variant_verify_key()
/f-stack/freebsd/crypto/siphash/
H A Dsiphash.c55 static void SipRounds(SIPHASH_CTX *ctx, int final);
94 SipBuf(SIPHASH_CTX *ctx, const uint8_t **src, size_t len, int final) in SipBuf() argument
98 KASSERT((!final && len > 0) || (final && len == 0), in SipBuf()
101 if (!final) { in SipBuf()
109 if (ctx->buflen == 8 || final) { in SipBuf()
213 SipRounds(SIPHASH_CTX *ctx, int final) in SipRounds() argument
217 if (!final) in SipRounds()
/f-stack/freebsd/contrib/openzfs/contrib/dracut/90zfs/
H A Dexport-zfs.sh.in8 final="${1}"
18 if [ "x${final}" != "x" ]; then
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/
H A Dpoly1305_donna64.h31 unsigned char final; member
58 st->final = 0; in poly1305_init()
66 (st->final) ? 0ULL : (1ULL << 40); /* 1 << 128 */ in poly1305_blocks()
151 st->final = 1; in poly1305_finish()
H A Dpoly1305_donna32.h25 unsigned char final; member
52 st->final = 0; in poly1305_init()
59 const unsigned long hibit = (st->final) ? 0UL : (1UL << 24); /* 1 << 128 */ in poly1305_blocks()
155 st->final = 1; in poly1305_finish()
/f-stack/dpdk/kernel/freebsd/
H A DBSDmakefile.meson7 # source file is passed via KMOD_SRC as relative path, we only use final
9 # VPATH is similarly extracted from the non-final (head) portion of the
/f-stack/freebsd/security/mac_veriexec/
H A Dmac_veriexec.h100 mac_veriexec_fpop_final_t final; member
130 .final = _final, \
H A Dveriexec_fingerprint.c165 (ip->ops->final)(fingerprint, ctx); in evaluate_fingerprint()
366 fpops->update == NULL || fpops->final == NULL) in mac_veriexec_fingerprint_add_ops()
/f-stack/dpdk/drivers/net/bnxt/tf_core/
H A Dlookup3.h93 #define final(a, b, c) \ macro
152 final(a, b, c); in hashword()
/f-stack/freebsd/libkern/
H A Djenkins_hash.c126 #define final(a,b,c) \ macro
177 final(a,b,c); in jenkins_hash32()
354 final(a,b,c); in jenkins_hash()
460 final(a,b,c); in jenkins_hash()
/f-stack/dpdk/drivers/crypto/dpaa_sec/
H A Ddpaa_sec.c809 sg->final = 1; in build_auth_only_sg()
912 sg->final = 1; in build_auth_only()
988 sg->final = 1; in build_cipher_only_sg()
1022 sg->final = 1; in build_cipher_only_sg()
1079 sg->final = 1; in build_cipher_only()
1092 sg->final = 1; in build_cipher_only()
1172 sg->final = 1; in build_cipher_auth_gcm_sg()
1229 sg->final = 1; in build_cipher_auth_gcm_sg()
1336 sg->final = 1; in build_cipher_auth_gcm()
1418 sg->final = 1; in build_cipher_auth_sg()
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/arm/
H A Dcpu-capacity.txt27 final capacity should, however, be:
54 available, final capacities are calculated by directly using capacity-dmips-
65 custer1@max-freq=850, final capacities are 1024 for cluster0 and
/f-stack/freebsd/contrib/device-tree/Bindings/thermal/
H A Dnvidia,tegra124-soctherm.txt41 the final throttle settings.
150 * arbiter will select the highest priority as the final throttle
200 * arbiter will select the highest priority as the final throttle
/f-stack/freebsd/contrib/openzfs/config/
H A Dkernel.m4590 dnl # Perform a full compile excluding the final modpost phase.
623 dnl # perform the final modpost stage.
626 dnl # then invoke the final modpost step for the remaining tests.
636 dnl # Phase 1 - Compilation only, final linking is skipped.
642 dnl # final linking.
/f-stack/freebsd/contrib/device-tree/Bindings/clock/st/
H A Dst,flexgen.txt6 - a pre and final dividers (represented by a divider and gate elements)
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlcode.c395 int final; /* position after whole expression */ in exp2reg() local
404 final = luaK_getlabel(fs); in exp2reg()
405 patchlistaux(fs, e->f, final, reg, p_f); in exp2reg()
406 patchlistaux(fs, e->t, final, reg, p_t); in exp2reg()

1234