Searched refs:rd (Results 1 - 25 of 40) sorted by relevance

12

/vbox/include/iprt/nocrt/amd64/
H A Dmath.h59 DECLINLINE(double) inline_rint(double rd) argument
61 return (double)inline_rintl(rd);
78 DECLINLINE(double) inline_sqrt(double rd) argument
80 return (double)inline_sqrtl(rd);
87 # define rint(rd) inline_rint(rd)
93 # define sqrt(rd) inline_sqrt(rd)
/vbox/include/iprt/nocrt/x86/
H A Dmath.h58 DECLINLINE(double) inline_rint(double rd) argument
60 return (double)inline_rintl(rd);
77 DECLINLINE(double) inline_sqrt(double rd) argument
79 return (double)inline_sqrtl(rd);
86 # define rint(rd) inline_rint(rd)
92 # define sqrt(rd) inline_sqrt(rd)
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2poll.c69 fd_set rd, wt, ex; local
71 int rd, wt, ex;
84 FD_ZERO(&rd);
88 rd = 0;
158 FD_SET(osfd, &rd);
160 socks[rd] = osfd;
161 rd++;
178 FD_SET(osfd, &rd);
180 socks[rd] = osfd;
181 rd
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Duxwrap.c106 int wrap_select(int width, fd_set *rd, fd_set *wr, fd_set *ex,
112 int select(int width, fd_set *rd, fd_set *wr, fd_set *ex,
115 int select(int width, fd_set *rd, fd_set *wr, fd_set *ex, struct timeval *tv)
124 fd_set *rd = (fd_set*) rl; local
138 return _MD_SELECT(width, rd, wr, ex, tv);
149 return _MD_SELECT(width, rd, wr, ex, tv);
178 if ((!rd && !wr && !ex) || !width) {
203 if (rd && FD_ISSET(osfd, rd)) {
229 if (rd
[all...]
H A Duxpoll.c289 fd_set rd, wt, ex; local
297 FD_ZERO(&rd);
357 FD_SET(osfd, &rd);
367 FD_SET(osfd, &rd);
412 ready = _MD_SELECT(maxfd + 1, &rd, &wt, &ex, tvp);
448 if (FD_ISSET(osfd, &rd))
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw32poll.c52 fd_set *rd, *wt, *ex; member in struct:select_data_s
61 cd->status = select(0, cd->rd, cd->wt, cd->ex, cd->tv);
91 data.rd = readfds;
113 fd_set rd, wt, ex; local
139 FD_ZERO(&rd);
200 FD_SET(osfd, &rd);
212 FD_SET(osfd, &rd);
255 rdp = (0 == nrd) ? NULL : &rd;
297 if (FD_ISSET(osfd, &rd))
/vbox/src/VBox/Runtime/common/math/
H A Dfabs.asm32 ; Compute the absolute value of rd (|rd|).
34 ; @param rd 32-bit: [ebp + 8] 64-bit: xmm0
H A Dllrint.asm32 ; Round rd to the nearest integer value, rounding according to the current rounding direction.
34 ; @param rd 32-bit: [esp + 4h] 64-bit: xmm0
H A Dlrint.asm32 ; Round rd to the nearest integer value, rounding according to the current rounding direction.
34 ; @param rd 32-bit: [esp + 4h] 64-bit: xmm0
H A Dfloor.asm32 ; Compute the largest integral value not greater than rd.
34 ; @param rd 32-bit: [ebp + 8] 64-bit: xmm0
H A Dllrintf.asm32 ; Round rd to the nearest integer value, rounding according to the current rounding direction.
H A Dllrintl.asm32 ; Round rd to the nearest integer value, rounding according to the current rounding direction.
H A Dlrintf.asm32 ; Round rd to the nearest integer value, rounding according to the current rounding direction.
H A Dlrintl.asm32 ; Round rd to the nearest integer value, rounding according to the current rounding direction.
H A Dtruncl.asm35 ; @param rd [rbp + 8]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/
H A Dstrtodg.c187 (d, fpi, expt, bits, exact, rd, irv)
188 double d; CONST FPI *fpi; Long *expt; ULong *bits; int exact, rd, *irv;
190 (double d, CONST FPI *fpi, Long *expt, ULong *bits, int exact, int rd, int *irv)
220 switch(rd) {
341 int j, k, nbits, nd, nd0, nf, nz, nz0, rd, rvbits, rve, rve1, sign; local
522 rd = 0;
525 rd = 2 - sign;
528 rd = 1;
531 rd = 1 + sign;
548 if (rvOK(dval(rv), fpi, expt, bits, 1, rd,
[all...]
/vbox/src/libs/liblzf-3.4/
H A Dlzf.c225 int l, rd; local
284 rd = bytes - l;
285 if (rd > 0)
286 if ((rc = rread (from, p, rd)) != rd)
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/common/dtrace/
H A Ddtrace.c3228 dtrace_dif_subr(uint_t subr, uint_t rd, uint64_t *regs, argument
3250 regs[rd] = (dtrace_gethrtime() * 2416 + 374441) % 1771875;
3257 regs[rd] = NULL;
3263 regs[rd] = MUTEX_OWNER(&m.mi) != MUTEX_NO_OWNER;
3265 regs[rd] = LOCK_HELD(&m.mi.m_spin.m_spinlock);
3267 regs[rd] = 0;
3276 regs[rd] = NULL;
3283 regs[rd] = (uintptr_t)MUTEX_OWNER(&m.mi);
3285 regs[rd] = 0;
3287 regs[rd]
4779 uint_t r1, r2, rd; local
5307 dtrace_dif_subr(DIF_INSTR_SUBR(instr), rd, local
8273 uint_t rd = DIF_INSTR_RD(instr); local
8896 uint_t rd = DIF_INSTR_RD(instr); local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/arpa/
H A Dnameser_compat.h107 unsigned rd: 1; /*%< recursion desired */ member in struct:__anon12990
117 unsigned rd :1; /*%< recursion desired */ member in struct:__anon12990
/vbox/src/recompiler/
H A Dqemu-timer.h169 asm volatile("rd %%tick,%0" : "=r"(rval));
179 asm volatile("rd %%tick,%1; srlx %1,32,%0"
193 #define MIPS_RDHWR(rd, value) { \
196 "rdhwr %0, "rd"\n\t" \
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/
H A Dbfile.c563 fd_set rd, wt, ex; local
583 FD_ZERO(&rd);
641 FD_SET(osfd, &rd);
651 FD_SET(osfd, &rd);
696 ready = _MD_SELECT(maxfd + 1, &rd, &wt, &ex, tvp);
732 if (FD_ISSET(osfd, &rd))
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A Dvia-velocity.c457 struct rx_desc *rd = vptr->rd_ring + dirty; local
460 if (rd->rdesc0.owner == OWNED_BY_NIC)
464 rd->inten = 1;
465 rd->pa_high = 0;
466 rd->rdesc0.len = cpu_to_le32(vptr->rx_buf_sz);;
493 struct rx_desc *rd = &(vptr->rd_ring[rd_curr]); local
495 if (rd->rdesc0.owner == OWNED_BY_NIC)
504 if ((rd->rdesc0.RSR & RSR_RXOK)
505 || (!(rd->rdesc0.RSR & RSR_RXOK)
506 && (rd
[all...]
H A Dskge.c344 struct skge_rx_desc *rd = e->desc; local
349 rd->dma_lo = map;
350 rd->dma_hi = map >> 32;
352 rd->csum1_start = ETH_HLEN;
353 rd->csum2_start = ETH_HLEN;
354 rd->csum1 = 0;
355 rd->csum2 = 0;
359 rd->control = BMU_OWN | BMU_STF | BMU_IRQ_EOF | BMU_TCP_CHECK | bufsize;
368 struct skge_rx_desc *rd = e->desc; local
370 rd
387 struct skge_rx_desc *rd = e->desc; local
1972 struct skge_rx_desc *rd; local
2012 struct skge_rx_desc *rd; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dres_mkquery.c138 hp->rd = (_res.options & RES_RECURSE) != 0;
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_dns.c37 unsigned rd:1; member in struct:dnsmsg_header::__anon14943
106 pHdr->X.rd = 1;
184 pHdr->X.rd = 1;

Completed in 154 milliseconds

12