/freebsd/contrib/libucl/uthash/ |
H A D | uthash.h | 95 #define HASH_FIND(hh,head,keyptr,keylen,out) \ argument 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) \ argument 144 (head)->hh.tbl = (UT_hash_table*)uthash_malloc( \ 146 if (!((head)->hh.tbl)) { uthash_fatal( "out of memory"); } \ 147 memset((head)->hh.tbl, 0, sizeof(UT_hash_table)); \ 148 (head)->hh.tbl->tail = &((head)->hh); \ 149 (head)->hh.tbl->num_buckets = HASH_INITIAL_NUM_BUCKETS; \ [all …]
|
/freebsd/contrib/elftoolchain/common/ |
H A D | uthash.h | 96 #define HASH_FIND(hh,head,keyptr,keylen,out) \ argument 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) \ argument 144 (head)->hh.tbl = (UT_hash_table*)uthash_malloc( \ 146 if (!((head)->hh.tbl)) { uthash_fatal( "out of memory"); } \ 147 memset((head)->hh.tbl, 0, sizeof(UT_hash_table)); \ 148 (head)->hh.tbl->tail = &((head)->hh); \ 149 (head)->hh.tbl->num_buckets = HASH_INITIAL_NUM_BUCKETS; \ [all …]
|
/freebsd/sys/geom/ |
H A D | geom_subr.c | 125 struct g_hh00 *hh; in g_load_class() local 136 hh = arg; in g_load_class() 137 mp = hh->mp; in g_load_class() 138 hh->error = 0; in g_load_class() 139 if (hh->post) { in g_load_class() 140 g_free(hh); in g_load_class() 141 hh = NULL; in g_load_class() 150 if (hh != NULL) in g_load_class() 151 hh->error = EEXIST; in g_load_class() 156 if (hh != NULL) in g_load_class() [all …]
|
/freebsd/sys/ofed/drivers/infiniband/ulp/sdp/ |
H A D | sdp_cma.c | 274 struct sdp_hh hh; in sdp_cma_handler() local 320 memset(&hh, 0, sizeof hh); in sdp_cma_handler() 321 hh.bsdh.mid = SDP_MID_HELLO; in sdp_cma_handler() 322 hh.bsdh.len = htonl(sizeof(struct sdp_hh)); in sdp_cma_handler() 323 hh.max_adverts = 1; in sdp_cma_handler() 324 hh.ipv_cap = 0x40; in sdp_cma_handler() 325 hh.majv_minv = SDP_MAJV_MINV; in sdp_cma_handler() 327 hh.bsdh.bufs = htons(rx_ring_posted(sdp_sk(sk))); in sdp_cma_handler() 328 hh.localrcvsz = hh.desremrcvsz = htonl(sdp_sk(sk)->recv_bytes); in sdp_cma_handler() 329 hh.max_adverts = 0x1; in sdp_cma_handler() [all …]
|
H A D | sdp_bcopy.c | 44 struct sdp_hh *hh; in _dump_packet() local 59 hh = (struct sdp_hh *)h; in _dump_packet() 63 hh->max_adverts, hh->majv_minv, in _dump_packet() 64 ntohl(hh->localrcvsz), in _dump_packet() 65 ntohl(hh->desremrcvsz)); in _dump_packet()
|
/freebsd/crypto/openssl/crypto/mdc2/ |
H A D | mdc2dgst.c | 41 memset(&(c->hh[0]), 0x25, MDC2_BLOCK); in MDC2_Init() 92 c->hh[0] = (c->hh[0] & 0x9f) | 0x20; in mdc2_body() 98 DES_set_odd_parity(&c->hh); in mdc2_body() 99 DES_set_key_unchecked(&c->hh, &k); in mdc2_body() 110 p = c->hh; in mdc2_body() 130 memcpy(&(md[MDC2_BLOCK]), (char *)c->hh, MDC2_BLOCK); in MDC2_Final()
|
/freebsd/contrib/bsddialog/examples_library/ |
H A D | timebox.c | 18 unsigned int hh, mm, ss; in main() local 25 hh = localtm->tm_hour; in main() 35 output = bsddialog_timebox(&conf, "Example", 9, 35, &hh, &mm, &ss); in main() 41 printf("Time: %u:%u:%u\n", hh, mm, ss); in main()
|
/freebsd/contrib/ntp/scripts/stats/ |
H A D | README.timecodes | 35 "<CR><LF>i ddd hh:mm:ss TZ=zz<CR><LF>" 41 hh:mm:ss = hours, minutes, seconds 53 "<CR><LF>iqyy ddd hh:mm:ss.fff ld" 62 hh:mm:ss.fff = hours, minutes, seconds, milliseconds of day 78 "<CR><LF><^A>ddd:hh:mm:ssq<CR>" 82 hh:mm:ss = hours, minutes, seconds 95 "<CR>hh:mm:ss.f dd/mm/yy<CR>" 99 hh:mm:ss = hours, minutes, seconds 105 hh:mm:ss.? once synch is established and then lost again for about 123 hh = WWVH propagation delay (81 = 33 ms) [all …]
|
/freebsd/contrib/tnftp/src/ |
H A D | progressbar.c | 317 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/contrib/ntp/include/ |
H A D | ntp_types.h | 185 int16_t hh; uint16_t hl; uint16_t lh; uint16_t ll; member 188 uint16_t hh; uint16_t hl; uint16_t lh; uint16_t ll; member 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/contrib/tzdata/ |
H A D | ziguard.awk | 54 hh, mm, ss, seconds, dot_dddd, subseconds) 59 hh = mm = ss = timestamp 62 sub(/^[-+]?/, "", hh) 63 seconds = 3600 * hh + 60 * mm + ss
|
/freebsd/usr.bin/calendar/ |
H A D | calendar.c | 152 long utcoffset, hh, mm, ss; in main() local 159 hh = utcoffset / SECSPERHOUR; in main() 168 uo = hh + uo / 100; in main()
|
H A D | sunpos.c | 193 #define DEBUG1(y, m, d, hh, mm, pdec, dec) \ argument 195 y, m, d, hh, mm, pdec, dec) 196 #define DEBUG2(y, m, d, hh, mm, pdec, dec, pang, ang) \ argument 198 y, m, d, hh, mm, pdec, dec, pang, ang)
|
H A D | parsedata.c | 1030 int hh, mm, ss, i; in floattotime() local 1035 hh = i / SECSPERHOUR; in floattotime() 1041 snprintf(buf, SLEN, "%02d:%02d:%02d", hh, mm, ss); in floattotime() 1049 int i, m, d, hh, mm, ss; in floattoday() local 1059 hh = i / SECSPERHOUR; in floattoday() 1065 snprintf(buf, SLEN, "%02d-%02d %02d:%02d:%02d", m, d, hh, mm, ss); in floattoday()
|
/freebsd/contrib/bsddialog/lib/ |
H A D | timebox.c | 96 int cols, unsigned int *hh, unsigned int *mm, unsigned int *ss) in bsddialog_timebox() argument 103 {23, *hh, NULL}, in bsddialog_timebox() 108 CHECK_PTR(hh); in bsddialog_timebox() 231 *hh = c[0].value; in bsddialog_timebox()
|
/freebsd/contrib/ntp/sntp/ |
H A D | utilities.c | 144 int hh, mm, lto, isdst; in tv_to_str() local 163 hh = lto / 60; in tv_to_str() 176 hh, in tv_to_str()
|
/freebsd/contrib/tzcode/ |
H A D | zdump.c | 977 int ss = tm->tm_sec, mm = tm->tm_min, hh = tm->tm_hour; in format_local_time() local 979 ? my_snprintf(buf, size, "%02d:%02d:%02d", hh, mm, ss) in format_local_time() 981 ? my_snprintf(buf, size, "%02d:%02d", hh, mm) in format_local_time() 982 : my_snprintf(buf, size, "%02d", hh)); in format_local_time() 1005 long hh; in format_utc_offset() local 1015 hh = off / 60 / 60; in format_utc_offset() 1016 return (ss || 100 <= hh in format_utc_offset() 1017 ? my_snprintf(buf, size, "%c%02ld%02d%02d", sign, hh, mm, ss) in format_utc_offset() 1019 ? my_snprintf(buf, size, "%c%02ld%02d", sign, hh, mm) in format_utc_offset() 1020 : my_snprintf(buf, size, "%c%02ld", sign, hh)); in format_utc_offset() [all...] |
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/ |
H A D | poly1305_sse2.c | 43 uint32_t hh[10]; member 117 _mm_storeu_si128((xmmi *) (void *) &st->H.hh[0], _mm_setzero_si128()); in poly1305_init_ext() 118 _mm_storeu_si128((xmmi *) (void *) &st->H.hh[4], _mm_setzero_si128()); in poly1305_init_ext() 119 _mm_storeu_si128((xmmi *) (void *) &st->H.hh[8], _mm_setzero_si128()); in poly1305_init_ext() 239 T0 = _mm_loadu_si128((const xmmi *) (const void *) &st->H.hh[0]); in poly1305_blocks() 240 T1 = _mm_loadu_si128((const xmmi *) (const void *) &st->H.hh[4]); in poly1305_blocks() 241 T2 = _mm_loadu_si128((const xmmi *) (const void *) &st->H.hh[8]); in poly1305_blocks() 681 _mm_storeu_si128((xmmi *) (void *) &st->H.hh[0], T0); in poly1305_blocks() 682 _mm_storeu_si128((xmmi *) (void *) &st->H.hh[4], T1); in poly1305_blocks() 683 _mm_storel_epi64((xmmi *) (void *) &st->H.hh[8], T4); in poly1305_blocks()
|
/freebsd/contrib/bsddialog/utility/ |
H A D | util_builders.c | 248 unsigned int hh, mm, ss; in timebox_builder() 255 hh = localtm->tm_hour; in timebox_builder() 262 hh = (u_int)strtoul(argv[0], NULL, 10); in timebox_builder() 267 output = bsddialog_timebox(conf, text, rows, cols, &hh, &mm, &ss); in timebox_builder() 274 localtm->tm_hour = hh; in timebox_builder() 280 dprintf(opt->output_fd, "%u:%u:%u", hh, mm, ss); in timebox_builder() 282 dprintf(opt->output_fd, "%02u:%02u:%02u", hh, mm, ss); in timebox_builder() 247 unsigned int hh, mm, ss; timebox_builder() local
|
/freebsd/contrib/tcsh/nls/et/ |
H A D | set14 | 3 1 \nÄhh!! Liiga palju %s!!\n
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | mdc2.h | 37 DES_cblock h, hh; member
|
/freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | Types.def | 68 TYPE("c++-header", CXXHeader, PP_CXXHeader, "hh", phases::Preprocess, phase… 70 TYPE("c++-header-unit-header", CXXHUHeader, PP_CXXHeaderUnit,"hh", phases::Preprocess, phase… 71 TYPE("c++-system-header", CXXSHeader, PP_CXXHeaderUnit,"hh", phases::Preprocess, phase… 72 TYPE("c++-user-header", CXXUHeader, PP_CXXHeaderUnit,"hh", phases::Preprocess, phase…
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | BuiltinsAMDGPU.def | 216 TARGET_BUILTIN(__builtin_amdgcn_rcph, "hh", "nc", "16-bit-insts") 217 TARGET_BUILTIN(__builtin_amdgcn_sqrth, "hh", "nc", "16-bit-insts") 218 TARGET_BUILTIN(__builtin_amdgcn_rsqh, "hh", "nc", "16-bit-insts") 219 TARGET_BUILTIN(__builtin_amdgcn_sinh, "hh", "nc", "16-bit-insts") 220 TARGET_BUILTIN(__builtin_amdgcn_cosh, "hh", "nc", "16-bit-insts") 222 TARGET_BUILTIN(__builtin_amdgcn_frexp_manth, "hh", "nc", "16-bit-insts") 224 TARGET_BUILTIN(__builtin_amdgcn_fracth, "hh", "nc", "16-bit-insts")
|
/freebsd/contrib/tcsh/nls/ja/ |
H A D | set1 | 112 110 形式: sched -<項目番号>.\n形式: sched [+]hh:mm <コマンド>
|
/freebsd/contrib/bearssl/tools/ |
H A D | client.c | 217 print_hashes(unsigned hh, unsigned hh2) in print_hashes() argument 225 if (((hh >> i) & 1) != 0) { in print_hashes() 234 choose_hash(unsigned hh) in choose_hash() argument 244 if (((hh >> f[u]) & 1) != 0) { in choose_hash()
|