| /NextBSD/contrib/groff/src/utils/addftinfo/ |
| HD | guess.cpp | 35 #define HASH(c1, c2) (((unsigned char)(c1) << 8) | (unsigned char)(c2)) in guess() macro 36 switch (HASH(s[0], s[1])) { in guess() 46 case HASH('\\', '|'): in guess() 47 case HASH('\\', '^'): in guess() 48 case HASH('\\', '&'): in guess() 51 case HASH('f', 0): in guess() 56 case HASH('a', 0): in guess() 57 case HASH('c', 0): in guess() 58 case HASH('e', 0): in guess() 59 case HASH('m', 0): in guess() [all …]
|
| /NextBSD/crypto/openssl/doc/crypto/ |
| HD | EVP_BytesToKey.pod | 47 D_i = HASH^count(D_(i-1) || data || salt) 49 where || denotes concatentaion, 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.
|
| HD | crypto.pod | 41 =item AUTHENTICATION CODES, HASH FUNCTIONS
|
| /NextBSD/contrib/unbound/smallapp/ |
| HD | unbound-control-setup.sh.in | 52 HASH=sha256 112 echo "default_md=$HASH\n" >> request.cfg 129 echo "default_md=$HASH\n" >> request.cfg 139 …days $DAYS -CA $SVR_BASE"_trust.pem" -CAkey $SVR_BASE.key -CAcreateserial -$HASH -out $CTL_BASE.pem
|
| HD | unbound-control-setup.sh | 52 HASH=sha256 112 echo "default_md=$HASH\n" >> request.cfg 129 echo "default_md=$HASH\n" >> request.cfg 139 …days $DAYS -CA $SVR_BASE"_trust.pem" -CAkey $SVR_BASE.key -CAcreateserial -$HASH -out $CTL_BASE.pem
|
| /NextBSD/contrib/diff/src/ |
| HD | io.c | 33 #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 …]
|
| /NextBSD/usr.sbin/portsnap/portsnap/ |
| HD | portsnap.sh | 953 fi | while read FILE HASH; do 955 if ! [ -s "${WORKDIR}/files/${HASH}.gz" ]; then 956 echo "files/${HASH}.gz not found -- snapshot corrupt." 963 tar -xz --numeric-owner -f ${WORKDIR}/files/${HASH}.gz \ 968 tar -xz --numeric-owner -f ${WORKDIR}/files/${HASH}.gz \ 997 while read FILE HASH; do 999 if ! [ -s "${WORKDIR}/files/${HASH}.gz" ]; then 1000 echo "files/${HASH}.gz not found -- snapshot corrupt." 1006 tar -xz --numeric-owner -f ${WORKDIR}/files/${HASH}.gz \ 1010 tar -xz --numeric-owner -f ${WORKDIR}/files/${HASH}.gz \
|
| /NextBSD/crypto/openssl/crypto/dsa/ |
| HD | dsa_depr.c | 68 # define HASH EVP_sha() macro 75 # define HASH EVP_sha1() macro
|
| /NextBSD/usr.sbin/freebsd-update/ |
| HD | freebsd-update.sh | 1792 while read HASH; do 1793 if ! [ -f files/${HASH}.gz ]; then 1794 echo ${HASH} 1807 HASH=`echo "${LINE}" | cut -f 2 -d '|'` 1810 if [ -f files/${HASH}.gz ]; then 1816 if [ `sha256 -q tmpfile` != ${HASH} ]; then 1823 gzip -c < tmpfile > files/${HASH}.gz 2635 while read HASH; do 2636 if ! [ -f files/${HASH}.gz ]; then 2756 while read FPATH TYPE OWNER GROUP PERM FLAGS HASH LINK; do [all …]
|
| /NextBSD/usr.sbin/ppp/ |
| HD | pred.c | 58 #define HASH(state, x) state->hash = (state->hash << 4) ^ (x) macro 83 HASH(state, *source++); in compress() 96 HASH(state, *source++); in SyncTable() 120 HASH(state, *dest++); in decompress()
|
| /NextBSD/crypto/openssh/ |
| HD | deattack.c | 69 #define HASH(x) get_u32(x) macro 146 for (i = HASH(c) & (n - 1); h[i] != HASH_UNUSED; in detect_attack()
|
| /NextBSD/sys/netgraph/ |
| HD | ng_etf.c | 140 #define HASH(et) ((((et)>>12)+((et)>>8)+((et)>>4)+(et)) & 0x0f) macro 158 struct filterhead *chain = etfp->hashtable + HASH(ethertype); in ng_etf_findentry() 327 + HASH(fil->ethertype), in ng_etf_rcvmsg()
|
| HD | ng_pred1.c | 67 #define HASH(x) priv->Hash = (priv->Hash << 4) ^ (x) macro 602 HASH(*source++); in Pred1Compress() 644 HASH(*dest++); in Pred1Decompress() 662 HASH(*source++); in Pred1SyncTable()
|
| HD | ng_bridge.c | 826 #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()
|
| /NextBSD/lib/librt/ |
| HD | sigev_thread.c | 49 #define HASH(t, id) ((((id) << 3) + (t)) % HASH_QUEUES) macro 248 int chain = HASH(type, id); in __sigev_find() 260 int chain = HASH(sn->sn_type, sn->sn_id); in __sigev_register()
|
| /NextBSD/contrib/gcc/ |
| HD | ggc.h | 242 #define htab_create_ggc(SIZE, HASH, EQ, DEL) \ argument 243 htab_create_alloc (SIZE, HASH, EQ, DEL, ggc_calloc, NULL)
|
| HD | cse.c | 473 #define HASH(X, M) \ macro 1716 hash = HASH (exp, mode); in merge_equiv_classes() 1732 hash = HASH (exp, mode); in merge_equiv_classes() 1807 unsigned int hash = HASH (x, GET_MODE (x)); in invalidate() 2915 hash = HASH (addr, Pmode); in find_best_addr() 2987 hash = HASH (XEXP (*loc, 0), Pmode); in find_best_addr() 3286 && (elt = lookup (SUBREG_REG (x), HASH (SUBREG_REG (x), imode), in fold_rtx_subreg() 3326 HASH (folded_arg0, GET_MODE (folded_arg0)), in fold_rtx_subreg() 4668 op0_hash = HASH (op0, mode); in record_jump_cond() 4676 op1_hash = HASH (op1, mode); in record_jump_cond() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/lib/Basic/ |
| HD | IdentifierTable.cpp | 261 #define HASH(LEN, FIRST, THIRD) \ in getPPKeywordID() macro 264 case HASH(LEN, FIRST, THIRD): \ in getPPKeywordID() 270 switch (HASH(Len, Name[0], Name[2])) { in getPPKeywordID() 302 #undef HASH in getPPKeywordID()
|
| /NextBSD/usr.sbin/nscd/ |
| HD | hashtable.h | 159 #define HASHTABLE_GENERATE(name, entry_, type, field, HASH, CMP) \ argument 163 return HASH(data, table->entries_size); \
|
| /NextBSD/usr.bin/ident/tests/ |
| HD | test.in | 14 $Qux:: frobby zow#$ (OK -- HASH BEFORE $)' '
|
| /NextBSD/contrib/bmake/unit-tests/ |
| HD | modword.mk | 14 HASH= \#
|
| HD | modword.exp | 90 LIST:[${HASH}]="6"
|
| /NextBSD/sys/net/ |
| HD | if_vlan.c | 227 #define HASH(n, m) ((((n) >> 8) ^ ((n) >> 4) ^ (n)) & (m)) macro 277 i = HASH(ifv->ifv_vid, trunk->hmask); in vlan_inshash() 289 i = HASH(ifv->ifv_vid, trunk->hmask); in vlan_inshash() 307 i = HASH(ifv->ifv_vid, trunk->hmask); in vlan_remhash() 359 j = HASH(ifv->ifv_vid, n2 - 1); in vlan_growhash() 379 LIST_FOREACH(ifv, &trunk->hash[HASH(vid, trunk->hmask)], ifv_list) in vlan_gethash()
|
| /NextBSD/cddl/contrib/opensolaris/tools/ctf/cvt/ |
| HD | st_parse.c | 42 #define HASH(NUM) ((int)(NUM & (BUCKETS - 1))) macro 465 int bucket = HASH(h); in lookup() 1082 int hash = HASH(num); in addhash() 1121 return (HASH(sum)); in compute_sum()
|
| /NextBSD/lib/libfetch/ |
| HD | http.c | 1118 typedef char HASH[HASHLEN]; typedef 1124 CvtHex(IN HASH Bin, OUT HASHHEX Hex) in CvtHex() 1151 HASH HA1; in DigestCalcHA1() 1191 HASH HA2; in DigestCalcResponse() 1192 HASH RespHash; in DigestCalcResponse()
|