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

12

/freebsd-13-stable/contrib/libucl/uthash/
H A Duthash.h95 #define HASH_FIND(hh,head,keyptr,keylen,out) \
100 HASH_FCN(keyptr,keylen, (head)->hh.tbl->num_buckets, _hf_hashv, _hf_bkt); \
101 if (HASH_BLOOM_TEST((head)->hh.tbl, _hf_hashv)) { \
102 HASH_FIND_IN_BKT((head)->hh.tbl, hh, (head)->hh.tbl->buckets[ _hf_bkt ], \
142 #define HASH_MAKE_TABLE(hh,head) \
144 (head)->hh.tbl = (UT_hash_table*)uthash_malloc( \
146 if (!((head)->hh.tbl)) { uthash_fatal( "out of memory"); } \
147 memset((head)->hh
[all...]
/freebsd-13-stable/contrib/elftoolchain/common/
H A Duthash.h96 #define HASH_FIND(hh,head,keyptr,keylen,out) \
101 HASH_FCN(keyptr,keylen, (head)->hh.tbl->num_buckets, _hf_hashv, _hf_bkt); \
102 if (HASH_BLOOM_TEST((head)->hh.tbl, _hf_hashv)) { \
103 HASH_FIND_IN_BKT((head)->hh.tbl, hh, (head)->hh.tbl->buckets[ _hf_bkt ], \
142 #define HASH_MAKE_TABLE(hh,head) \
144 (head)->hh.tbl = (UT_hash_table*)uthash_malloc( \
146 if (!((head)->hh.tbl)) { uthash_fatal( "out of memory"); } \
147 memset((head)->hh
[all...]
/freebsd-13-stable/crypto/openssl/crypto/mdc2/
H A Dmdc2dgst.c35 memset(&(c->hh[0]), 0x25, MDC2_BLOCK);
86 c->hh[0] = (c->hh[0] & 0x9f) | 0x20;
92 DES_set_odd_parity(&c->hh);
93 DES_set_key_unchecked(&c->hh, &k);
104 p = c->hh;
124 memcpy(&(md[MDC2_BLOCK]), (char *)c->hh, MDC2_BLOCK);
/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dmdc2.h28 DES_cblock h, hh; member in struct:mdc2_ctx_st
/freebsd-13-stable/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_cma.c274 struct sdp_hh hh; local
320 memset(&hh, 0, sizeof hh);
321 hh.bsdh.mid = SDP_MID_HELLO;
322 hh.bsdh.len = htonl(sizeof(struct sdp_hh));
323 hh.max_adverts = 1;
324 hh.ipv_cap = 0x40;
325 hh.majv_minv = SDP_MAJV_MINV;
327 hh.bsdh.bufs = htons(rx_ring_posted(sdp_sk(sk)));
328 hh
[all...]
H A Dsdp_bcopy.c44 struct sdp_hh *hh; local
59 hh = (struct sdp_hh *)h;
63 hh->max_adverts, hh->majv_minv,
64 ntohl(hh->localrcvsz),
65 ntohl(hh->desremrcvsz));
/freebsd-13-stable/contrib/ntp/sntp/
H A Dutilities.c144 int hh, mm, lto; local
158 hh = lto / 60;
171 hh,
/freebsd-13-stable/sys/geom/
H A Dgeom_subr.c128 struct g_hh00 *hh; local
139 hh = arg;
140 mp = hh->mp;
141 hh->error = 0;
142 if (hh->post) {
143 g_free(hh);
144 hh = NULL;
153 if (hh != NULL)
154 hh->error = EEXIST;
159 if (hh !
255 struct g_hh00 *hh; local
309 struct g_hh00 *hh; local
352 struct g_hh00 *hh; local
681 struct g_hh00 *hh; local
747 struct g_hh00 *hh; local
[all...]
/freebsd-13-stable/contrib/ntp/include/
H A Dntp_types.h185 int16_t hh; uint16_t hl; uint16_t lh; uint16_t ll; member in struct:__anon5230::__anon5231
188 uint16_t hh; uint16_t hl; uint16_t lh; uint16_t ll; member in struct:__anon5230::__anon5232
198 uint16_t ll; uint16_t lh; uint16_t hl; int16_t hh;
201 uint16_t ll; uint16_t lh; uint16_t hl; uint16_t hh;
/freebsd-13-stable/contrib/tnftp/src/
H A Dprogressbar.c317 int remaining, hh, i; local
346 hh = remaining / SECSPERHOUR;
348 if (hh)
349 len += snprintf(buf + len, BUFLEFT, "%2d:", hh);
366 hh = remaining / SECSPERHOUR;
369 if (hh)
370 len += snprintf(buf + len, BUFLEFT, "%2d:", hh);
/freebsd-13-stable/usr.bin/calendar/
H A Dcalendar.c167 long utcoffset, hh, mm, ss; local
173 /* seconds -> hh:mm:ss */
174 hh = utcoffset / SECSPERHOUR;
180 /* hh:mm:ss -> hh.mmss */
183 uo = hh + uo / 100;
H A Dsunpos.c195 #define DEBUG1(y, m, d, hh, mm, pdec, dec) \
197 y, m, d, hh, mm, pdec, dec)
198 #define DEBUG2(y, m, d, hh, mm, pdec, dec, pang, ang) \
200 y, m, d, hh, mm, pdec, dec, pang, ang)
H A Dparsedata.c1032 int hh, mm, ss, i; local
1037 hh = i / SECSPERHOUR;
1043 snprintf(buf, SLEN, "%02d:%02d:%02d", hh, mm, ss);
1051 int i, m, d, hh, mm, ss; local
1061 hh = i / SECSPERHOUR;
1067 snprintf(buf, SLEN, "%02d-%02d %02d:%02d:%02d", m, d, hh, mm, ss);
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/
H A Dpoly1305_sse2.c43 uint32_t hh[10]; member in union:poly1305_state_internal_t::__anon9635
117 _mm_storeu_si128((xmmi *) (void *) &st->H.hh[0], _mm_setzero_si128());
118 _mm_storeu_si128((xmmi *) (void *) &st->H.hh[4], _mm_setzero_si128());
119 _mm_storeu_si128((xmmi *) (void *) &st->H.hh[8], _mm_setzero_si128());
239 T0 = _mm_loadu_si128((const xmmi *) (const void *) &st->H.hh[0]);
240 T1 = _mm_loadu_si128((const xmmi *) (const void *) &st->H.hh[4]);
241 T2 = _mm_loadu_si128((const xmmi *) (const void *) &st->H.hh[8]);
681 _mm_storeu_si128((xmmi *) (void *) &st->H.hh[0], T0);
682 _mm_storeu_si128((xmmi *) (void *) &st->H.hh[4], T1);
683 _mm_storel_epi64((xmmi *) (void *) &st->H.hh[
[all...]
/freebsd-13-stable/contrib/bearssl/tools/
H A Dclient.c217 print_hashes(unsigned hh, unsigned hh2) argument
225 if (((hh >> i) & 1) != 0) {
234 choose_hash(unsigned hh) argument
244 if (((hh >> f[u]) & 1) != 0) {
/freebsd-13-stable/contrib/tzcode/zic/
H A Dzic.c883 ** h -h hh:mm -hh:mm hh:mm:ss -hh:mm:ss
895 long hh; local
906 if (sscanf(string, scheck(string, "%ld"), &hh) == 1)
908 else if (sscanf(string, scheck(string, "%ld:%d"), &hh, &mm) == 2)
911 &hh, &mm, &ss) != 3) {
915 if (hh < 0 ||
921 if (LONG_MAX / SECSPERHOUR < hh) {
[all...]
/freebsd-13-stable/contrib/libucl/src/
H A Ducl_internal.h187 UT_hash_handle hh; member in struct:ucl_macro
H A Ducl_util.c200 UCL_FREE (obj->hh.keylen, obj->trash_stack[UCL_TRASH_KEY]);
627 HASH_ITER (hh, parser->macroes, macro, mtmp) {
/freebsd-13-stable/sbin/pfctl/
H A Dparse.y1259 struct node_host *h = NULL, *hh;
1301 hh = malloc(sizeof(*hh));
1302 if (hh == NULL)
1304 bcopy(h, hh, sizeof(*hh));
1309 hh = NULL;
1329 if (hh != NULL)
1330 h = hh;
1338 free(hh);
[all...]
/freebsd-13-stable/sys/sys/
H A Dqmath.h437 sizeof(q) == 1 ? Q_DEBUGFMT_(prefmt, postfmt, hh, 2) : \
/freebsd-13-stable/contrib/bmake/mk/
H A Dmeta.autodep.mk166 DEPEND_SUFFIXES += .c .h .cpp .hpp .cxx .hxx .cc .hh
/freebsd-13-stable/share/mk/
H A Dmeta.autodep.mk167 DEPEND_SUFFIXES += .c .h .cpp .hpp .cxx .hxx .cc .hh
/freebsd-13-stable/sys/ofed/drivers/infiniband/core/
H A Dib_cma.c438 static inline u8 sdp_get_ip_ver(const struct sdp_hh *hh) argument
440 return hh->ipv_cap >> 4;
443 static inline void sdp_set_ip_ver(struct sdp_hh *hh, u8 ip_ver) argument
445 hh->ipv_cap = (ip_ver << 4) | (hh->ipv_cap & 0xF);
/freebsd-13-stable/contrib/openbsm/bin/auditdistd/
H A DMakefile.in170 am__yacc_c2h = sed -e s/cc$$/hh/ -e s/cpp$$/hpp/ -e s/cxx$$/hxx/ \
/freebsd-13-stable/contrib/ntp/ntpd/
H A DMakefile.in260 am__yacc_c2h = sed -e s/cc$$/hh/ -e s/cpp$$/hpp/ -e s/cxx$$/hxx/ \

Completed in 274 milliseconds

12