Searched refs:hr (Results 1 - 25 of 83) sorted by relevance

1234

/freebsd-12-stable/lib/msun/src/
H A Ds_fmaf.c48 uint32_t hr, lr; local
52 EXTRACT_WORDS(hr, lr, result);
55 (hr & 0x7ff00000) == 0x7ff00000 || /* NaN */
/freebsd-12-stable/contrib/expat/xmlwf/
H A Dxmlwin32url.cxx135 Callback::OnStopBinding(HRESULT hr, LPCWSTR szError) argument
145 stopHandler_(stopArg_, hr);
180 HRESULT hr = pBinding_->QueryInterface(IID_IWinInetHttpInfo, local
182 if (SUCCEEDED(hr)) {
187 hr = hp->QueryInfo(HTTP_QUERY_CONTENT_TYPE, contentType,
189 if (SUCCEEDED(hr)) {
222 HRESULT hr = pstgmed->pstm->Read(buf, nToRead, &nRead); local
223 if (SUCCEEDED(hr)) {
297 HRESULT hr;
300 hr
339 HRESULT hr; member in struct:QuitInfo
344 winPerror(const XML_Char *url, HRESULT hr) argument
373 threadQuit(void *p, HRESULT hr) argument
403 HRESULT hr = openStream(parser, baseMoniker, url, threadQuit, &qi); local
[all...]
/freebsd-12-stable/contrib/wpa/src/drivers/
H A Dndis_events.c48 HRESULT hr; local
53 hr = IWbemServices_ExecQuery(pSvc, bsQueryLanguage, bsQuery, lFlags,
59 return hr;
68 HRESULT hr; local
73 hr = IWbemServices_ExecNotificationQueryAsync(pSvc, bsQueryLanguage,
80 return hr;
90 HRESULT hr; local
98 hr = IWbemLocator_ConnectServer(pLoc, bsNetworkResource, bsUser,
108 return hr;
244 HRESULT hr; local
319 HRESULT hr; local
397 HRESULT hr; local
486 HRESULT hr; local
705 HRESULT hr; local
[all...]
/freebsd-12-stable/contrib/ntp/include/
H A Dntp_datum.h22 unsigned short hr; member in struct:vmedate
/freebsd-12-stable/sys/dev/pci/
H A Dpci_subr.c166 pcib_host_res_init(device_t pcib, struct pcib_host_resources *hr) argument
169 hr->hr_pcib = pcib;
170 resource_list_init(&hr->hr_rl);
175 pcib_host_res_free(device_t pcib, struct pcib_host_resources *hr) argument
178 resource_list_free(&hr->hr_rl);
183 pcib_host_res_decodes(struct pcib_host_resources *hr, int type, rman_res_t start, argument
190 device_printf(hr->hr_pcib, "decoding %d %srange %#jx-%#jx\n",
193 rid = resource_list_add_next(&hr->hr_rl, type, start, end,
198 rle = resource_list_find(&hr->hr_rl, type, rid);
205 pcib_host_res_alloc(struct pcib_host_resources *hr, device_ argument
265 pcib_host_res_adjust(struct pcib_host_resources *hr, device_t dev, int type, struct resource *r, rman_res_t start, rman_res_t end) argument
[all...]
H A Dpcib_private.h53 struct pcib_host_resources *hr);
55 struct pcib_host_resources *hr);
56 int pcib_host_res_decodes(struct pcib_host_resources *hr, int type,
58 struct resource *pcib_host_res_alloc(struct pcib_host_resources *hr,
61 int pcib_host_res_adjust(struct pcib_host_resources *hr,
/freebsd-12-stable/contrib/subversion/subversion/libsvn_subr/
H A Dwin32_xlate.c64 HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED); local
66 if (hr == RPC_E_CHANGED_MODE)
71 hr = CoInitializeEx(NULL, COINIT_MULTITHREADED);
74 if (FAILED(hr))
90 HRESULT hr; local
141 hr = CoCreateInstance(&CLSID_CMultiLanguage, NULL, CLSCTX_INPROC_SERVER,
144 if (FAILED(hr))
151 hr = mlang->lpVtbl->GetCharsetInfo(mlang, ucs2_page_name, &page_info);
152 if (FAILED(hr))
/freebsd-12-stable/contrib/sendmail/src/
H A Dconvtime.c129 int wk, dy, hr, mi, se; local
141 hr = intvl % 24;
165 hr, mi, se);
182 if (hr > 0)
184 (void) sm_snprintf(p, SPACELEFT(buf, p), ", %d hour%s", hr,
185 PLURAL(hr));
H A Dsasl.c165 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';
/freebsd-12-stable/sys/dev/bhnd/bhndb/
H A Dbhndb_subr.c196 * @param hr The resource state to search.
205 bhndb_host_resource_for_range(struct bhndb_host_resources *hr, int type, argument
208 for (u_int i = 0; hr->resource_specs[i].type != -1; i++) {
209 struct resource *r = hr->resources[i];
211 if (hr->resource_specs[i].type != type)
230 * @param hr The resource state to search.
237 bhndb_host_resource_for_regwin(struct bhndb_host_resources *hr, argument
242 rspecs = hr->resource_specs;
251 return (hr->resources[i]);
254 device_printf(hr
656 struct bhndb_host_resources *hr; local
770 bhndb_release_host_resources(struct bhndb_host_resources *hr) argument
[all...]
H A Dbhndb_pci.c181 struct bhndb_host_resources *hr; /**< backing host resources */ member in struct:bhndb_pci_probe
1320 error = bhndb_alloc_host_resources(&p->hr, dev, parent_dev, hwcfg);
1322 p->hr = NULL;
1396 if (p->hr != NULL)
1397 bhndb_release_host_resources(p->hr);
1412 bhndb_release_host_resources(probe->hr);
1528 regwin_table = probe->hr->cfg->register_windows;
1539 regwin_res = bhndb_host_resource_for_regwin(probe->hr, regwin);
/freebsd-12-stable/stand/i386/libi386/
H A Dtime.c46 int hr, minute, sec; local
53 hr = bcd2bin((v86.ecx & 0xff00) >> 8); /* hour in %ch */
57 return (hr * 3600 + minute * 60 + sec);
/freebsd-12-stable/contrib/bearssl/src/rsa/
H A Drsa_i15_privexp.c65 uint32_t r, a, b, u0, v0, u1, v1, he, hr; local
246 hr = (r + 1) >> 1;
279 u0 ^= (u0 ^ ((u0 >> 1) + (hr & -ctl))) & -da;
285 u1 ^= (u1 ^ ((u1 >> 1) + (hr & -ctl))) & -db;
H A Drsa_i31_privexp.c65 uint32_t r, a, b, u0, v0, u1, v1, he, hr; local
246 hr = (r + 1) >> 1;
279 u0 ^= (u0 ^ ((u0 >> 1) + (hr & -ctl))) & -da;
285 u1 ^= (u1 ^ ((u1 >> 1) + (hr & -ctl))) & -db;
/freebsd-12-stable/sys/net80211/
H A Dieee80211_hwmp.c1272 struct ieee80211_hwmp_route *hr; local
1319 hr = IEEE80211_MESH_ROUTE_PRIV(rt, struct ieee80211_hwmp_route);
1323 if (HWMP_SEQ_LT(prep->prep_targetseq, hr->hr_seq)) {
1327 prep->prep_targetseq, hr->hr_seq);
1329 } else if (HWMP_SEQ_LEQ(prep->prep_targetseq, hr->hr_seq) &&
1347 hr->hr_seq = prep->prep_targetseq;
1348 hr->hr_preqretries = 0;
1503 struct ieee80211_hwmp_route *hr; local
1508 hr = IEEE80211_MESH_ROUTE_PRIV(rt, struct ieee80211_hwmp_route);
1514 if (hr
1540 struct ieee80211_hwmp_route *hr; local
1690 struct ieee80211_hwmp_route *hr = NULL; local
1739 struct ieee80211_hwmp_route *hr; local
1854 struct ieee80211_hwmp_route *hr; local
1910 struct ieee80211_hwmp_route *hr; local
[all...]
/freebsd-12-stable/sys/dev/sound/pci/
H A Dhdspe-pcm.c488 struct hdspe_rate *hr; local
498 hr = NULL;
510 hr = &rate_map[i];
514 if (hr == NULL) {
516 hr = &rate_map[i];
517 threshold = hr->speed + ((rate_map[i + 1].speed != 0) ?
518 ((rate_map[i + 1].speed - hr->speed) >> 1) : 0);
536 sc->ctrl_register |= hr->reg;
539 speed = hr->speed;
549 sc->speed = hr
[all...]
/freebsd-12-stable/usr.bin/at/
H A Dparsetime.c598 int hr = 0; local
637 * hr to zero up above, then fall into this case in such a
644 hr += 4;
647 hr += 12;
650 if (runtime.tm_hour >= hr) {
654 runtime.tm_hour = hr;
/freebsd-12-stable/contrib/ntp/ntpd/
H A Drefclock_bancomm.c125 unsigned short hr; member in struct:vmedate
444 tptr->hr,
453 pp->hour = tptr->hr;
551 time_vme->hr = (unsigned short)atoi(cbuf);
595 time_vme->hr = maj.tm_hour;
611 time_vme->hr = stfp->tm.tm_hour;
/freebsd-12-stable/sys/dev/hme/
H A Dif_hme.c618 struct hme_ring *hr = &sc->sc_rb; local
625 p = hr->rb_membase;
626 dma = hr->rb_dmabase;
631 hr->rb_txd = p;
632 hr->rb_txddma = dma;
645 hr->rb_rxd = p;
646 hr->rb_rxddma = dma;
657 HME_XD_SETADDR(sc->sc_flags & HME_PCI, hr->rb_txd, i, 0);
658 HME_XD_SETFLAGS(sc->sc_flags & HME_PCI, hr->rb_txd, i, 0);
687 hr
[all...]
/freebsd-12-stable/contrib/tcsh/
H A Dtc.prompt.c254 int hr = t->tm_hour; local
259 if (hr >= 12) {
260 if (hr > 12)
261 hr -= 12;
264 else if (hr == 0)
265 hr = 12;
277 p = Itoa(hr, adrof(STRpadhour) ? 2 : 0, attributes);
/freebsd-12-stable/sys/dev/videomode/
H A Dvideomode.c29 #define M(nm,hr,vr,clk,hs,he,ht,vs,ve,vt,f) \
30 { clk, hr, hs, he, ht, vr, vs, ve, vt, f, nm }
/freebsd-12-stable/libexec/rc/rc.d/
H A Dsyscons106 hr.iso) echo hr;;
/freebsd-12-stable/contrib/ofed/libibverbs/
H A Dmemory.c260 int hl, hr;
266 hr = verify(node->left);
268 if (!hl || !hr)
270 if (hl != hr)
/freebsd-12-stable/share/vt/keymaps/
H A DMakefile42 hr.kbd \
/freebsd-12-stable/crypto/openssh/
H A Dmoduli.c515 int day, hr, min; local
519 hr = (seconds / 60 / 60) % 24;
522 snprintf(buf, sizeof buf, "%dd %d:%02d", day, hr, min);
524 snprintf(buf, sizeof buf, "%d:%02d", hr, min);

Completed in 382 milliseconds

1234