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

12

/freebsd-11-stable/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-11-stable/contrib/bmake/unit-tests/
H A Dmodword.exp89 HASH="#" == "#" ?
90 LIST:[${HASH}]="6"
101 LIST:[${LIST:[${HASH}]}]="six"
H A Dmodword.mk14 HASH= \# macro
114 @echo 'HASH="${HASH}" == "#" ?'
115 @echo 'LIST:[$${HASH}]="${LIST:[${HASH}]}"'
125 @echo 'LIST:[$${LIST:[$${HASH}]}]="${LIST:[${LIST:[${HASH}]}]}"'
/freebsd-11-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-11-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))
/freebsd-11-stable/contrib/gcc/
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...]
H A Dggc.h243 #define htab_create_ggc(SIZE, HASH, EQ, DEL) \
244 htab_create_alloc (SIZE, HASH, EQ, DEL, ggc_calloc, NULL)
/freebsd-11-stable/contrib/gcclibs/libcpp/include/
H A Dcpplib.h102 OP(HASH, "#") /* digraphs */ \
/freebsd-11-stable/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-11-stable/crypto/openssh/
H A Ddeattack.c66 #define HASH(x) PEEK_U32(x) macro
151 for (i = HASH(c) & (dctx->n - 1); dctx->h[i] != HASH_UNUSED;
/freebsd-11-stable/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
/freebsd-11-stable/lib/libfetch/
H A Dhttp.c1118 typedef char HASH[HASHLEN]; typedef
1124 CvtHex(IN HASH Bin, OUT HASHHEX Hex)
1151 HASH HA1;
1192 HASH HA2;
1193 HASH RespHash;
/freebsd-11-stable/lib/librt/
H A Dsigev_thread.c49 #define HASH(t, id) ((((id) << 3) + (t)) % HASH_QUEUES) macro
248 int chain = HASH(type, id);
260 int chain = HASH(sn->sn_type, sn->sn_id);
/freebsd-11-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);
/freebsd-11-stable/sys/netgraph/
H A Dng_bridge.c820 HASH TABLE FUNCTIONS
826 #define HASH(addr,mask) ( (((const u_int16_t *)(addr))[0] \ macro
836 const int bucket = HASH(addr, priv->hashMask);
854 const int bucket = HASH(addr, priv->hashMask);
924 newBucket = HASH(hent->host.addr, newMask);
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_pred1.c67 #define HASH(x) priv->Hash = (priv->Hash << 4) ^ (x) macro
602 HASH(*source++);
644 HASH(*dest++);
662 HASH(*source++);
/freebsd-11-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-11-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-11-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-11-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-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp141 STRINGIFY_CODE(MODULE_CODE, HASH)
278 STRINGIFY_CODE(MST_CODE, HASH)
/freebsd-11-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 \

Completed in 281 milliseconds

12