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

/freebsd-12-stable/contrib/unbound/smallapp/
H A Dunbound-control-setup.sh52 HASH=sha256
112 echo "default_md=$HASH" >> request.cfg
129 echo "default_md=$HASH" >> request.cfg
139 openssl req -key $CTL_BASE.key -config request.cfg -new | openssl x509 -req -days $DAYS -CA $SVR_BASE"_trust.pem" -CAkey $SVR_BASE.key -CAcreateserial -$HASH -out $CTL_BASE.pem
H A Dunbound-control-setup.sh.in52 HASH=sha256
125 default_md=$HASH
163 default_md=$HASH
192 -$HASH \
/freebsd-12-stable/contrib/bmake/unit-tests/
H A Dmodword.mk14 HASH= \# macro
114 @echo 'HASH="${HASH}" == "#" ?'
115 @echo 'LIST:[$${HASH}]="${LIST:[${HASH}]}"'
125 @echo 'LIST:[$${LIST:[$${HASH}]}]="${LIST:[${LIST:[${HASH}]}]}"'
H A Dmodword.exp89 HASH="#" == "#" ?
90 LIST:[${HASH}]="6"
101 LIST:[${LIST:[${HASH}]}]="six"
/freebsd-12-stable/contrib/diff/src/
H A Dio.c33 #define HASH(h, c) ((c) + ROL (h, 7)) macro
258 h = HASH (h, tolower (c));
271 h = HASH (h, ' ');
275 h = HASH (h, tolower (c));
311 h = HASH (h, c);
319 h = HASH (h, tolower (c));
328 h = HASH (h, c);
341 h = HASH (h, ' ');
345 h = HASH (h, c);
380 h = HASH (
[all...]
/freebsd-12-stable/contrib/gcc/
H A Dggc.h243 #define htab_create_ggc(SIZE, HASH, EQ, DEL) \
244 htab_create_alloc (SIZE, HASH, EQ, DEL, ggc_calloc, NULL)
H A Dcse.c473 #define HASH(X, M) \ macro
478 /* Like HASH, but without side-effects. */
1309 HASH is its hash code, made using the HASH macro.
1486 /* Insert X in the hash table, assuming HASH is its hash code
1721 hash = HASH (exp, mode);
1737 hash = HASH (exp, mode);
1815 unsigned int hash = HASH (x, GET_MODE (x));
2202 in HASH. */
2932 hash = HASH (add
[all...]
/freebsd-12-stable/usr.sbin/ppp/
H A Dpred.c60 #define HASH(state, x) state->hash = (state->hash << 4) ^ (x) macro
85 HASH(state, *source++);
98 HASH(state, *source++);
122 HASH(state, *dest++);
/freebsd-12-stable/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}
[all...]
/freebsd-12-stable/sys/netgraph/
H A Dng_etf.c141 #define HASHSIZE 16 /* Dont change this without changing HASH() */
142 #define HASH(et) ((((et)>>12)+((et)>>8)+((et)>>4)+(et)) & 0x0f) macro
160 struct filterhead *chain = etfp->hashtable + HASH(ethertype);
329 + HASH(fil->ethertype),
H A Dng_pred1.c69 #define HASH(x) priv->Hash = (priv->Hash << 4) ^ (x) macro
604 HASH(*source++);
646 HASH(*dest++);
664 HASH(*source++);
H A Dng_bridge.c1013 HASH TABLE FUNCTIONS
1019 #define HASH(addr,mask) ( (((const u_int16_t *)(addr))[0] \ macro
1029 const int bucket = HASH(addr, priv->hashMask);
1046 const int bucket = HASH(addr, priv->hashMask);
1139 newBucket = HASH(host->addr, newMask);
/freebsd-12-stable/lib/librt/
H A Dsigev_thread.c51 #define HASH(t, id) ((((id) << 3) + (t)) % HASH_QUEUES) macro
250 int chain = HASH(type, id);
262 int chain = HASH(sn->sn_type, sn->sn_id);
/freebsd-12-stable/usr.sbin/nscd/
H A Dhashtable.h159 #define HASHTABLE_GENERATE(name, entry_, type, field, HASH, CMP) \
163 return HASH(data, table->entries_size); \
/freebsd-12-stable/usr.sbin/freebsd-update/
H A Dfreebsd-update.sh1838 # Reduce indices to ${PATH}|${HASH} pairs
1849 while read HASH; do
1850 if ! [ -f files/${HASH}.gz ]; then
1851 echo ${HASH}
1864 HASH=`echo "${LINE}" | cut -f 2 -d '|'`
1867 if [ -f files/${HASH}.gz ]; then
1873 if [ `sha256 -q tmpfile` != ${HASH} ]; then
1880 gzip -c < tmpfile > files/${HASH}.gz
2690 while read HASH; do
2691 if ! [ -f files/${HASH}
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
H A DIdentifierTable.cpp270 #define HASH(LEN, FIRST, THIRD) \ macro
273 case HASH(LEN, FIRST, THIRD): \
279 switch (HASH(Len, Name[0], Name[2])) {
311 #undef HASH macro
/freebsd-12-stable/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);
H A Dif_vlan.c328 #define HASH(n, m) ((((n) >> 8) ^ ((n) >> 4) ^ (n)) & (m)) macro
378 i = HASH(ifv->ifv_vid, trunk->hmask);
390 i = HASH(ifv->ifv_vid, trunk->hmask);
408 i = HASH(ifv->ifv_vid, trunk->hmask);
459 j = HASH(ifv->ifv_vid, n2 - 1);
480 CK_SLIST_FOREACH(ifv, &trunk->hash[HASH(vid, trunk->hmask)], ifv_list)
/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dst_parse.c42 #define HASH(NUM) ((int)(NUM & (BUCKETS - 1))) macro
469 int bucket = HASH(h);
1086 int hash = HASH(num);
1125 return (HASH(sum));
/freebsd-12-stable/lib/libfetch/
H A Dhttp.c1121 typedef char HASH[HASHLEN]; typedef
1127 CvtHex(IN HASH Bin, OUT HASHHEX Hex)
1154 HASH HA1;
1195 HASH HA2;
1196 HASH RespHash;
/freebsd-12-stable/contrib/gcclibs/libcpp/include/
H A Dcpplib.h102 OP(HASH, "#") /* digraphs */ \
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp141 STRINGIFY_CODE(MODULE_CODE, HASH)
278 STRINGIFY_CODE(MST_CODE, HASH)
/freebsd-12-stable/sys/dev/cxgbe/crypto/
H A Dt4_crypto.c168 enum { HASH, HMAC, BLKCIPHER, AUTHENC, GCM, CCM } mode; enumerator in enum:ccr_session::__anon12707
2506 s->mode = HASH;
2591 case HASH:
2785 case HASH:
/freebsd-12-stable/crypto/openssl/
H A DConfigure1046 if ($target eq "HASH") {
1050 print_table_entry($_, "HASH");
1597 while (ref $si ne "HASH") {
1814 $template->fill_in(HASH => { config => \%config,
2402 } elsif (ref($config{$_}) eq "HASH") {
2488 } elsif (ref $_ eq "HASH") {
2990 if (ref($_[$#_]) eq "HASH") {
2999 if (ref($_[$#_]) eq "HASH") {
3054 if (ref($targets{$_}) ne "HASH") {
3384 } elsif ($type eq "HASH") {
[all...]
/freebsd-12-stable/contrib/gcc/cp/
H A Dname-lookup.c82 /* Compute the chain index of a binding_entry given the HASH value of its
86 #define ENTRY_INDEX(HASH, COUNT) (((HASH) >> 3) & ((COUNT) - 1))

Completed in 224 milliseconds