Home
last modified time | relevance | path

Searched refs:HASH (Results 1 – 25 of 34) sorted by relevance

12

/freebsd-12.1/crypto/openssl/doc/man3/
H A DEVP_BytesToKey.pod47 D_i = HASH^count(D_(i-1) || data || salt)
49 where || denotes concatenation, D_0 is empty, HASH is the digest
50 algorithm in use, HASH^1(data) is simply HASH(data), HASH^2(data)
51 is HASH(HASH(data)) and so on.
/freebsd-12.1/contrib/unbound/smallapp/
H A Dunbound-control-setup.sh.in52 HASH=sha256
112 echo "default_md=$HASH" >> request.cfg
129 echo "default_md=$HASH" >> request.cfg
139 …days $DAYS -CA $SVR_BASE"_trust.pem" -CAkey $SVR_BASE.key -CAcreateserial -$HASH -out $CTL_BASE.pem
H A Dunbound-control-setup.sh52 HASH=sha256
112 echo "default_md=$HASH" >> request.cfg
129 echo "default_md=$HASH" >> request.cfg
139 …days $DAYS -CA $SVR_BASE"_trust.pem" -CAkey $SVR_BASE.key -CAcreateserial -$HASH -out $CTL_BASE.pem
/freebsd-12.1/contrib/diff/src/
H A Dio.c33 #define HASH(h, c) ((c) + ROL (h, 7)) macro
254 h = HASH (h, tolower (c)); in find_and_hash_each_line()
267 h = HASH (h, ' '); in find_and_hash_each_line()
271 h = HASH (h, tolower (c)); in find_and_hash_each_line()
307 h = HASH (h, c); in find_and_hash_each_line()
315 h = HASH (h, tolower (c)); in find_and_hash_each_line()
324 h = HASH (h, c); in find_and_hash_each_line()
337 h = HASH (h, ' '); in find_and_hash_each_line()
341 h = HASH (h, c); in find_and_hash_each_line()
376 h = HASH (h, c); in find_and_hash_each_line()
[all …]
/freebsd-12.1/usr.sbin/portsnap/portsnap/
H A Dportsnap.sh965 fi | while read FILE HASH; do
967 if ! [ -s "${WORKDIR}/files/${HASH}.gz" ]; then
968 echo "files/${HASH}.gz not found -- snapshot corrupt."
975 tar -xz --numeric-owner -f ${WORKDIR}/files/${HASH}.gz \
980 tar -xz --numeric-owner -f ${WORKDIR}/files/${HASH}.gz \
1009 while read FILE HASH; do
1011 if ! [ -s "${WORKDIR}/files/${HASH}.gz" ]; then
1012 echo "files/${HASH}.gz not found -- snapshot corrupt."
1018 tar -xz --numeric-owner -f ${WORKDIR}/files/${HASH}.gz \
1022 tar -xz --numeric-owner -f ${WORKDIR}/files/${HASH}.gz \
/freebsd-12.1/usr.sbin/freebsd-update/
H A Dfreebsd-update.sh1849 while read HASH; do
1850 if ! [ -f files/${HASH}.gz ]; then
1851 echo ${HASH}
1867 if [ -f files/${HASH}.gz ]; then
1880 gzip -c < tmpfile > files/${HASH}.gz
2690 while read HASH; do
2691 if ! [ -f files/${HASH}.gz ]; then
2821 gunzip < files/${HASH}.gz > ${HASH}
2824 rm ${HASH}
2832 ln -sfh ${HASH} ${BASEDIR}/${FPATH}
[all …]
/freebsd-12.1/usr.sbin/ppp/
H A Dpred.c60 #define HASH(state, x) state->hash = (state->hash << 4) ^ (x) macro
85 HASH(state, *source++); in compress()
98 HASH(state, *source++); in SyncTable()
122 HASH(state, *dest++); in decompress()
/freebsd-12.1/sys/netgraph/
H A Dng_etf.c142 #define HASH(et) ((((et)>>12)+((et)>>8)+((et)>>4)+(et)) & 0x0f) macro
160 struct filterhead *chain = etfp->hashtable + HASH(ethertype); in ng_etf_findentry()
329 + HASH(fil->ethertype), in ng_etf_rcvmsg()
H A Dng_pred1.c69 #define HASH(x) priv->Hash = (priv->Hash << 4) ^ (x) macro
604 HASH(*source++); in Pred1Compress()
646 HASH(*dest++); in Pred1Decompress()
664 HASH(*source++); in Pred1SyncTable()
H A Dng_bridge.c826 #define HASH(addr,mask) ( (((const u_int16_t *)(addr))[0] \ macro
836 const int bucket = HASH(addr, priv->hashMask); in ng_bridge_get()
854 const int bucket = HASH(addr, priv->hashMask); in ng_bridge_put()
924 newBucket = HASH(hent->host.addr, newMask); in ng_bridge_rehash()
/freebsd-12.1/lib/librt/
H A Dsigev_thread.c51 #define HASH(t, id) ((((id) << 3) + (t)) % HASH_QUEUES) macro
250 int chain = HASH(type, id); in __sigev_find()
262 int chain = HASH(sn->sn_type, sn->sn_id); in __sigev_register()
/freebsd-12.1/contrib/gcc/
H A Dggc.h242 #define htab_create_ggc(SIZE, HASH, EQ, DEL) \ argument
243 htab_create_alloc (SIZE, HASH, EQ, DEL, ggc_calloc, NULL)
H A Dcse.c473 #define HASH(X, M) \ macro
1716 hash = HASH (exp, mode); in merge_equiv_classes()
1732 hash = HASH (exp, mode); in merge_equiv_classes()
2915 hash = HASH (addr, Pmode); in find_best_addr()
4668 op0_hash = HASH (op0, mode); in record_jump_cond()
4676 op1_hash = HASH (op1, mode); in record_jump_cond()
4728 op1_hash = HASH (op1,mode); in record_jump_cond()
4777 op0_hash = HASH (op0, mode); in record_jump_cond()
4789 op1_hash = HASH (op1, mode); in record_jump_cond()
6090 hash = HASH (x, mode); in cse_insn()
[all …]
/freebsd-12.1/usr.sbin/nscd/
H A Dhashtable.h159 #define HASHTABLE_GENERATE(name, entry_, type, field, HASH, CMP) \ argument
163 return HASH(data, table->entries_size); \
/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DIdentifierTable.cpp269 #define HASH(LEN, FIRST, THIRD) \ in getPPKeywordID() macro
272 case HASH(LEN, FIRST, THIRD): \ in getPPKeywordID()
278 switch (HASH(Len, Name[0], Name[2])) { in getPPKeywordID()
310 #undef HASH in getPPKeywordID()
/freebsd-12.1/usr.bin/ident/tests/
H A Dtest.in14 $Qux:: frobby zow#$ (OK -- HASH BEFORE $)' '
/freebsd-12.1/contrib/bmake/unit-tests/
H A Dmodword.mk14 HASH= \#
H A Dmodword.exp90 LIST:[${HASH}]="6"
/freebsd-12.1/sys/net/
H A Dmppcc.c48 #define HASH(x) (((40543*(((((x)[0]<<4)^(x)[1])<<4)^(x)[2]))>>4) & 0x1fff) macro
193 idx = HASH(s); in MPPC_Compress()
H A Dif_vlan.c316 #define HASH(n, m) ((((n) >> 8) ^ ((n) >> 4) ^ (n)) & (m)) macro
366 i = HASH(ifv->ifv_vid, trunk->hmask); in vlan_inshash()
378 i = HASH(ifv->ifv_vid, trunk->hmask); in vlan_inshash()
396 i = HASH(ifv->ifv_vid, trunk->hmask); in vlan_remhash()
447 j = HASH(ifv->ifv_vid, n2 - 1); in vlan_growhash()
468 CK_SLIST_FOREACH(ifv, &trunk->hash[HASH(vid, trunk->hmask)], ifv_list) in vlan_gethash()
/freebsd-12.1/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dst_parse.c42 #define HASH(NUM) ((int)(NUM & (BUCKETS - 1))) macro
469 int bucket = HASH(h); in lookup()
1086 int hash = HASH(num); in addhash()
1125 return (HASH(sum)); in compute_sum()
/freebsd-12.1/lib/libfetch/
H A Dhttp.c1120 typedef char HASH[HASHLEN]; typedef
1126 CvtHex(IN HASH Bin, OUT HASHHEX Hex) in CvtHex()
1153 HASH HA1; in DigestCalcHA1()
1194 HASH HA2; in DigestCalcResponse()
1195 HASH RespHash; in DigestCalcResponse()
/freebsd-12.1/contrib/file/magic/Magdir/
H A Dsql15 >3 byte 2 \b, type HASH
/freebsd-12.1/contrib/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp183 STRINGIFY_CODE(MODULE_CODE, HASH) in GetCodeName()
309 STRINGIFY_CODE(MST_CODE, HASH) in GetCodeName()
/freebsd-12.1/contrib/gcclibs/libcpp/include/
H A Dcpplib.h102 OP(HASH, "#") /* digraphs */ \

12