| /freebsd/contrib/wpa/src/drivers/ |
| H A D | ndis_events.c | 48 HRESULT hr; in call_IWbemServices_ExecQuery() local 53 hr = IWbemServices_ExecQuery(pSvc, bsQueryLanguage, bsQuery, lFlags, in call_IWbemServices_ExecQuery() 59 return hr; in call_IWbemServices_ExecQuery() 68 HRESULT hr; in call_IWbemServices_ExecNotificationQueryAsync() local 73 hr = IWbemServices_ExecNotificationQueryAsync(pSvc, bsQueryLanguage, in call_IWbemServices_ExecNotificationQueryAsync() 80 return hr; in call_IWbemServices_ExecNotificationQueryAsync() 90 HRESULT hr; in call_IWbemLocator_ConnectServer() local 98 hr = IWbemLocator_ConnectServer(pLoc, bsNetworkResource, bsUser, in call_IWbemLocator_ConnectServer() 108 return hr; in call_IWbemLocator_ConnectServer() 244 HRESULT hr; in ndis_events_media_specific() local [all …]
|
| /freebsd/sys/dev/pci/ |
| H A D | pci_subr.c | 163 pcib_host_res_init(device_t pcib, struct pcib_host_resources *hr) in pcib_host_res_init() argument 166 hr->hr_pcib = pcib; in pcib_host_res_init() 167 resource_list_init(&hr->hr_rl); in pcib_host_res_init() 172 pcib_host_res_free(device_t pcib, struct pcib_host_resources *hr) in pcib_host_res_free() argument 175 resource_list_free(&hr->hr_rl); in pcib_host_res_free() 180 pcib_host_res_decodes(struct pcib_host_resources *hr, int type, rman_res_t start, in pcib_host_res_decodes() argument 187 device_printf(hr->hr_pcib, "decoding %d %srange %#jx-%#jx\n", in pcib_host_res_decodes() 190 rid = resource_list_add_next(&hr->hr_rl, type, start, end, in pcib_host_res_decodes() 195 rle = resource_list_find(&hr->hr_rl, type, rid); in pcib_host_res_decodes() 202 pcib_host_res_alloc(struct pcib_host_resources *hr, device_t dev, int type, in pcib_host_res_alloc() argument [all …]
|
| H A D | pcib_private.h | 49 struct pcib_host_resources *hr); 51 struct pcib_host_resources *hr); 52 int pcib_host_res_decodes(struct pcib_host_resources *hr, int type, 54 struct resource *pcib_host_res_alloc(struct pcib_host_resources *hr, 57 int pcib_host_res_adjust(struct pcib_host_resources *hr,
|
| /freebsd/sys/dev/bhnd/bhndb/ |
| H A D | bhndb_subr.c | 202 bhndb_host_resource_for_range(struct bhndb_host_resources *hr, int type, in bhndb_host_resource_for_range() argument 205 for (u_int i = 0; hr->resource_specs[i].type != -1; i++) { in bhndb_host_resource_for_range() 206 struct resource *r = hr->resources[i]; in bhndb_host_resource_for_range() 208 if (hr->resource_specs[i].type != type) in bhndb_host_resource_for_range() 234 bhndb_host_resource_for_regwin(struct bhndb_host_resources *hr, in bhndb_host_resource_for_regwin() argument 239 rspecs = hr->resource_specs; in bhndb_host_resource_for_regwin() 248 return (hr->resources[i]); in bhndb_host_resource_for_regwin() 251 device_printf(hr->owner, "missing regwin resource spec " in bhndb_host_resource_for_regwin() 651 struct bhndb_host_resources *hr; in bhndb_alloc_host_resources() local 659 hr = malloc(sizeof(*hr), M_BHND, M_WAITOK); in bhndb_alloc_host_resources() [all …]
|
| H A D | bhndb_pci.c | 179 struct bhndb_host_resources *hr; /**< backing host resources */ member 1316 error = bhndb_alloc_host_resources(&p->hr, dev, parent_dev, hwcfg); in bhndb_pci_probe_alloc() 1318 p->hr = NULL; in bhndb_pci_probe_alloc() 1392 if (p->hr != NULL) in bhndb_pci_probe_alloc() 1393 bhndb_release_host_resources(p->hr); in bhndb_pci_probe_alloc() 1408 bhndb_release_host_resources(probe->hr); in bhndb_pci_probe_free() 1524 regwin_table = probe->hr->cfg->register_windows; in bhndb_pci_probe_map() 1535 regwin_res = bhndb_host_resource_for_regwin(probe->hr, regwin); in bhndb_pci_probe_map()
|
| /freebsd/contrib/sendmail/src/ |
| H A D | sasl.c | 165 char *hr, *h1, *h, *res; local 179 hr = res; 195 if (hr != res) 196 *hr++ = ' '; 199 memcpy(hr, h1, l1); 202 hr += l1; 203 *hr = '\0';
|
| H A D | convtime.c | 130 int wk, dy, hr, mi, se; local 142 hr = intvl % 24; 166 hr, mi, se); 183 if (hr > 0) 185 (void) sm_snprintf(p, SPACELEFT(buf, p), ", %d hour%s", hr, 186 PLURAL(hr));
|
| /freebsd/sys/net80211/ |
| H A D | ieee80211_hwmp.c | 1274 struct ieee80211_hwmp_route *hr; in hwmp_recv_prep() local 1321 hr = IEEE80211_MESH_ROUTE_PRIV(rt, struct ieee80211_hwmp_route); in hwmp_recv_prep() 1325 if (HWMP_SEQ_LT(prep->prep_targetseq, hr->hr_seq)) { in hwmp_recv_prep() 1329 prep->prep_targetseq, hr->hr_seq); in hwmp_recv_prep() 1331 } else if (HWMP_SEQ_LEQ(prep->prep_targetseq, hr->hr_seq) && in hwmp_recv_prep() 1349 hr->hr_seq = prep->prep_targetseq; in hwmp_recv_prep() 1350 hr->hr_preqretries = 0; in hwmp_recv_prep() 1505 struct ieee80211_hwmp_route *hr; in hwmp_peerdown() local 1510 hr = IEEE80211_MESH_ROUTE_PRIV(rt, struct ieee80211_hwmp_route); in hwmp_peerdown() 1516 if (hr->hr_seq == 0) in hwmp_peerdown() [all …]
|
| /freebsd/stand/i386/libi386/ |
| H A D | time.c | 43 int hr, minute, sec; in bios_seconds() local 50 hr = bcd2bin((v86.ecx & 0xff00) >> 8); /* hour in %ch */ in bios_seconds() 54 return (hr * 3600 + minute * 60 + sec); in bios_seconds()
|
| /freebsd/contrib/bearssl/src/rsa/ |
| H A D | rsa_i15_privexp.c | 65 uint32_t r, a, b, u0, v0, u1, v1, he, hr; in br_rsa_i15_compute_privexp() local 246 hr = (r + 1) >> 1; in br_rsa_i15_compute_privexp() 279 u0 ^= (u0 ^ ((u0 >> 1) + (hr & -ctl))) & -da; in br_rsa_i15_compute_privexp() 285 u1 ^= (u1 ^ ((u1 >> 1) + (hr & -ctl))) & -db; in br_rsa_i15_compute_privexp()
|
| H A D | rsa_i31_privexp.c | 65 uint32_t r, a, b, u0, v0, u1, v1, he, hr; in br_rsa_i31_compute_privexp() local 246 hr = (r + 1) >> 1; in br_rsa_i31_compute_privexp() 279 u0 ^= (u0 ^ ((u0 >> 1) + (hr & -ctl))) & -da; in br_rsa_i31_compute_privexp() 285 u1 ^= (u1 ^ ((u1 >> 1) + (hr & -ctl))) & -db; in br_rsa_i31_compute_privexp()
|
| /freebsd/contrib/ntp/ntpd/ |
| H A D | refclock_bancomm.c | 125 unsigned short hr; member 444 tptr->hr, in vme_poll() 453 pp->hour = tptr->hr; in vme_poll() 551 time_vme->hr = (unsigned short)atoi(cbuf); in get_datumtime() 595 time_vme->hr = maj.tm_hour; in tvme_fill() 611 time_vme->hr = stfp->tm.tm_hour; in stfp_time2tvme()
|
| /freebsd/contrib/libarchive/libarchive/ |
| H A D | archive_write_set_format_xar.c | 3539 HRESULT hr; in xml_writer_create() local 3546 hr = CreateStreamOnHGlobal(NULL, TRUE, &ctx->stream); in xml_writer_create() 3547 if (FAILED(hr)) { in xml_writer_create() 3549 return (hr); in xml_writer_create() 3552 hr = CreateXmlWriter(&IID_IXmlWriter, (void **)&ctx->writer, NULL); in xml_writer_create() 3553 if (FAILED(hr)) { in xml_writer_create() 3556 return (hr); in xml_writer_create() 3559 hr = ctx->writer->lpVtbl->SetOutput(ctx->writer, in xml_writer_create() 3561 if (FAILED(hr)) { in xml_writer_create() 3565 return (hr); in xml_writer_create() [all …]
|
| /freebsd/contrib/libfido2/src/ |
| H A D | winhello.c | 189 to_fido(HRESULT hr) in to_fido() argument 191 switch (hr) { in to_fido() 205 fido_log_debug("%s: hr=0x%lx", __func__, (u_long)hr); in to_fido() 781 HRESULT hr; in winhello_get_assert() local 784 if ((hr = webauthn_get_assert(w, ctx->rp_id, &ctx->cd, &ctx->opt, in winhello_get_assert() 786 r = to_fido(hr); in winhello_get_assert() 787 fido_log_debug("%s: %ls -> %s", __func__, webauthn_strerr(hr), in winhello_get_assert() 797 HRESULT hr; in winhello_make_cred() local 800 if ((hr = webauthn_make_cred(w, &ctx->rp, &ctx->user, &ctx->cose, in winhello_make_cred() 802 r = to_fido(hr); in winhello_make_cred() [all …]
|
| /freebsd/contrib/tcsh/ |
| H A D | tc.prompt.c | 254 int hr = t->tm_hour; in tprintf() local 259 if (hr >= 12) { in tprintf() 260 if (hr > 12) in tprintf() 261 hr -= 12; in tprintf() 264 else if (hr == 0) in tprintf() 265 hr = 12; in tprintf() 277 p = Itoa(hr, adrof(STRpadhour) ? 2 : 0, attributes); in tprintf()
|
| /freebsd/usr.bin/at/ |
| H A D | parsetime.c | 596 int hr = 0; in parsetime() local 642 hr += 4; in parsetime() 645 hr += 12; in parsetime() 648 if (runtime.tm_hour >= hr) { in parsetime() 652 runtime.tm_hour = hr; in parsetime()
|
| /freebsd/tools/tools/vt/keymaps/ |
| H A D | LANG.map | 10 hr hr ISO8859-2
|
| /freebsd/contrib/bc/ |
| H A D | MAINTENANCE-TERMS.md | 22 * Compute time will be charged at \$25/hr. 23 * My time will be charged at \$100/hr. 48 day that I could be working will be charged at \$100/hr. 64 Most of that won't be at the \$100/hr rate, but some probably will be. Then
|
| /freebsd/sys/dev/sound/pci/ |
| H A D | hdspe-pcm.c | 825 struct hdspe_rate *hr; in hdspechan_setspeed() local 835 hr = NULL; in hdspechan_setspeed() 850 hr = &rate_map[i]; in hdspechan_setspeed() 854 if (hr == NULL) { in hdspechan_setspeed() 856 hr = &rate_map[i]; in hdspechan_setspeed() 857 threshold = hr->speed + ((rate_map[i + 1].speed != 0) ? in hdspechan_setspeed() 858 ((rate_map[i + 1].speed - hr->speed) >> 1) : 0); in hdspechan_setspeed() 876 sc->ctrl_register |= hr->reg; in hdspechan_setspeed() 879 speed = hr->speed; in hdspechan_setspeed() 889 sc->speed = hr in hdspechan_setspeed() [all...] |
| H A D | hdsp-pcm.c | 839 struct hdsp_rate *hr; in hdspchan_setspeed() local 848 hr = NULL; in hdspchan_setspeed() 867 hr = &rate_map[i]; in hdspchan_setspeed() 871 if (hr == NULL) { in hdspchan_setspeed() 873 hr = &rate_map[i]; in hdspchan_setspeed() 874 threshold = hr->speed + ((rate_map[i + 1].speed != 0) ? in hdspchan_setspeed() 875 ((rate_map[i + 1].speed - hr->speed) >> 1) : 0); in hdspchan_setspeed() 883 sc->ctrl_register |= hr->reg; in hdspchan_setspeed() 888 hdsp_write_4(sc, HDSP_FREQ_REG, hdsp_freq_reg_value(hr->speed)); in hdspchan_setspeed() 891 sc->speed = hr in hdspchan_setspeed() [all...] |
| /freebsd/usr.sbin/cron/doc/ |
| H A D | CONVERSION | 35 5 * * * * su uucp < /usr/lib/uucp/uudemon.hr 41 5 * * * * echo /usr/lib/uucp/uudemon.hr | su uucp 47 5 * * * * uucp /usr/lib/uucp/uudemon.hr 60 5 * * * * uudemon.hr
|
| /freebsd/crypto/krb5/src/windows/leash/ |
| H A D | MainFrm.cpp | 97 HRESULT hr; in OnCreate() local 122 hr = LeashUIApplication::CreateInstance(&pApplication, hwnd); in OnCreate() 123 if (FAILED(hr)) { in OnCreate()
|
| /freebsd/contrib/lua/doc/ |
| H A D | lua.css | 80 hr { selector 84 table hr {
|
| /freebsd/crypto/openssh/ |
| H A D | moduli.c | 475 int day, hr, min; in fmt_time() local 479 hr = (seconds / 60 / 60) % 24; in fmt_time() 482 snprintf(buf, sizeof buf, "%dd %d:%02d", day, hr, min); in fmt_time() 484 snprintf(buf, sizeof buf, "%d:%02d", hr, min); in fmt_time()
|
| /freebsd/contrib/ntp/include/ |
| H A D | ntp_datum.h | 22 unsigned short hr; member
|