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

12

/freebsd-9.3-release/contrib/groff/src/utils/addftinfo/
H A Dguess.cpp35 #define HASH(c1, c2) (((unsigned char)(c1) << 8) | (unsigned char)(c2)) macro
36 switch (HASH(s[0], s[1])) {
46 case HASH('\\', '|'):
47 case HASH('\\', '^'):
48 case HASH('\\', '&'):
51 case HASH('f', 0):
56 case HASH('a', 0):
57 case HASH('c', 0):
58 case HASH('e', 0):
59 case HASH('
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/dsa/
H A Ddsa_depr.c68 # define HASH EVP_sha() macro
75 # define HASH EVP_sha1() macro
H A Ddsa_gen.c66 # define HASH EVP_sha() macro
73 # define HASH EVP_sha1() macro
191 EVP_Digest(seed, SHA_DIGEST_LENGTH, md, NULL, HASH, NULL);
192 EVP_Digest(buf, SHA_DIGEST_LENGTH, buf2, NULL, HASH, NULL);
242 EVP_Digest(buf, SHA_DIGEST_LENGTH, md, NULL, HASH, NULL);
/freebsd-9.3-release/crypto/openssl/fips/dsa/
H A Dfips_dsa_gen.c66 # define HASH EVP_sha() macro
73 # define HASH EVP_sha1() macro
202 EVP_Digest(seed, SHA_DIGEST_LENGTH, md, NULL, HASH, NULL);
203 EVP_Digest(buf, SHA_DIGEST_LENGTH, buf2, NULL, HASH, NULL);
254 EVP_Digest(buf, SHA_DIGEST_LENGTH, md, NULL, HASH, NULL);
/freebsd-9.3-release/crypto/openssh/
H A Ddeattack.c69 #define HASH(x) get_u32(x) macro
146 for (i = HASH(c) & (n - 1); h[i] != HASH_UNUSED;
/freebsd-9.3-release/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-9.3-release/contrib/cvs/diff/
H A Dio.c25 #define HASH(h, c) ((c) + ROL (h, 7)) macro
228 h = HASH (h, ISUPPER (c) ? tolower (c) : c);
243 h = HASH (h, ' ');
246 h = HASH (h, ISUPPER (c) ? tolower (c) : c);
250 h = HASH (h, ISUPPER (c) ? tolower (c) : c);
258 h = HASH (h, c);
273 h = HASH (h, ' ');
276 h = HASH (h, c);
280 h = HASH (h, c);
/freebsd-9.3-release/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-9.3-release/usr.sbin/ppp/
H A Dpred.c58 #define HASH(state, x) state->hash = (state->hash << 4) ^ (x) macro
83 HASH(state, *source++);
96 HASH(state, *source++);
120 HASH(state, *dest++);
/freebsd-9.3-release/usr.sbin/portsnap/portsnap/
H A Dportsnap.sh899 fi | tr '|' ' ' | while read FILE HASH; do
901 if ! [ -r "${WORKDIR}/files/${HASH}.gz" ]; then
902 echo "files/${HASH}.gz not found -- snapshot corrupt."
909 tar -xz --numeric-owner -f ${WORKDIR}/files/${HASH}.gz \
914 tar -xz --numeric-owner -f ${WORKDIR}/files/${HASH}.gz \
970 HASH=`echo ${LINE} | cut -f 2 -d '|'`
972 if ! [ -r "${WORKDIR}/files/${HASH}.gz" ]; then
973 echo "files/${HASH}.gz not found -- snapshot corrupt."
979 tar -xz --numeric-owner -f ${WORKDIR}/files/${HASH}.gz \
983 tar -xz --numeric-owner -f ${WORKDIR}/files/${HASH}
[all...]
/freebsd-9.3-release/lib/librt/
H A Dsigev_thread.c49 #define HASH(t, id) ((((id) << 3) + (t)) % HASH_QUEUES) macro
247 int chain = HASH(type, id);
259 int chain = HASH(sn->sn_type, sn->sn_id);
/freebsd-9.3-release/sys/netgraph/
H A Dng_etf.c139 #define HASHSIZE 16 /* Dont change this without changing HASH() */
140 #define HASH(et) ((((et)>>12)+((et)>>8)+((et)>>4)+(et)) & 0x0f) macro
158 struct filterhead *chain = etfp->hashtable + HASH(ethertype);
327 + HASH(fil->ethertype),
H A Dng_vlan.c136 #define HASH(id) ((((id) >> 8) ^ ((id) >> 4) ^ (id)) & 0x0f) macro
149 struct filterhead *chain = &priv->hashtable[HASH(vlan)];
254 &priv->hashtable[HASH(f->vlan)], f, next);
H A Dng_pred1.c67 #define HASH(x) priv->Hash = (priv->Hash << 4) ^ (x) macro
602 HASH(*source++);
644 HASH(*dest++);
662 HASH(*source++);
H A Dng_bridge.c819 HASH TABLE FUNCTIONS
825 #define HASH(addr,mask) ( (((const u_int16_t *)(addr))[0] \ macro
835 const int bucket = HASH(addr, priv->hashMask);
853 const int bucket = HASH(addr, priv->hashMask);
923 newBucket = HASH(hent->host.addr, newMask);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Basic/
H A DIdentifierTable.cpp204 #define HASH(LEN, FIRST, THIRD) \ macro
207 case HASH(LEN, FIRST, THIRD): \
213 switch (HASH(Len, Name[0], Name[2])) {
245 #undef HASH macro
/freebsd-9.3-release/usr.sbin/nscd/
H A Dhashtable.h159 #define HASHTABLE_GENERATE(name, entry_, type, field, HASH, CMP) \
163 return HASH(data, table->entries_size); \
/freebsd-9.3-release/usr.sbin/freebsd-update/
H A Dfreebsd-update.sh1760 # Reduce indices to ${PATH}|${HASH} pairs
1771 while read HASH; do
1772 if ! [ -f files/${HASH}.gz ]; then
1773 echo ${HASH}
1786 HASH=`echo "${LINE}" | cut -f 2 -d '|'`
1789 if [ -f files/${HASH}.gz ]; then
1795 if [ `sha256 -q tmpfile` != ${HASH} ]; then
1802 gzip -c < tmpfile > files/${HASH}.gz
2614 while read HASH; do
2615 if ! [ -f files/${HASH}
[all...]
/freebsd-9.3-release/sys/net/
H A Dif_vlan.c225 #define HASH(n, m) ((((n) >> 8) ^ ((n) >> 4) ^ (n)) & (m)) macro
275 i = HASH(ifv->ifv_tag, trunk->hmask);
287 i = HASH(ifv->ifv_tag, trunk->hmask);
305 i = HASH(ifv->ifv_tag, trunk->hmask);
357 j = HASH(ifv->ifv_tag, n2 - 1);
377 LIST_FOREACH(ifv, &trunk->hash[HASH(tag, trunk->hmask)], ifv_list)
/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dst_parse.c42 #define HASH(NUM) ((int)(NUM & (BUCKETS - 1))) macro
465 int bucket = HASH(h);
1082 int hash = HASH(num);
1121 return (HASH(sum));
/freebsd-9.3-release/contrib/bmake/unit-tests/
H A Dtest.exp288 HASH="#" == "#" ?
289 LIST:[${HASH}]="6"
300 LIST:[${LIST:[${HASH}]}]="six"
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dgen.c488 HASH(char *string) { function
743 hash = HASH(ttn->typename);
754 if (hash == HASH(ttn2->typename)) {
/freebsd-9.3-release/lib/libfetch/
H A Dhttp.c1116 typedef char HASH[HASHLEN]; typedef
1122 CvtHex(IN HASH Bin, OUT HASHHEX Hex)
1149 HASH HA1;
1189 HASH HA2;
1190 HASH RespHash;
/freebsd-9.3-release/contrib/gcclibs/libcpp/include/
H A Dcpplib.h102 OP(HASH, "#") /* digraphs */ \

Completed in 187 milliseconds

12