Searched refs:sticky (Results 1 - 16 of 16) sorted by relevance

/freebsd-11-stable/lib/libc/mips/gen/hardfloat/
H A Dfpsetsticky.c23 fpsetsticky(sticky)
24 fp_except sticky;
33 new |= ((sticky & 0x1f) << 2);
/freebsd-11-stable/lib/libc/sparc64/fpu/
H A Dfpu_mul.c69 * sticky |= A & 1, A >>= 1;
96 * part of the loop---setting sticky, shifting A, and not adding---will
108 int sticky; local
150 sticky = a3 = a2 = a1 = a0 = 0;
158 #define SHR1 /* A >>= 1, with sticky */ \
159 sticky |= a3 & 1, a3 = (a3 >> 1) | (a2 << 31), \
162 #define SHR32 /* A >>= 32, with sticky */ \
163 sticky |= a3, a3 = a2, a2 = a1, a1 = a0, a0 = 0
218 x->fp_sticky = sticky;
/freebsd-11-stable/sys/powerpc/fpu/
H A Dfpu_mul.c70 * sticky |= A & 1, A >>= 1;
97 * part of the loop---setting sticky, shifting A, and not adding---will
108 int sticky; local
163 sticky = a3 = a2 = a1 = a0 = 0;
171 #define SHR1 /* A >>= 1, with sticky */ \
172 sticky |= a3 & 1, a3 = (a3 >> 1) | (a2 << 31), \
175 #define SHR32 /* A >>= 32, with sticky */ \
176 sticky |= a3, a3 = a2, a2 = a1, a1 = a0, a0 = 0
231 x->fp_sticky = sticky;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/i386/
H A Dfloatundisf.S64 sticky: label
73 #define STICKY sticky-0b(%ecx,%eax,8)
/freebsd-11-stable/share/man/man7/
H A DMakefile34 sticky.7 \
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_lib.h248 const bool sticky = (*lo << (typeWidth - count)) != 0; local
249 *lo = *hi << (typeWidth - count) | *lo >> count | sticky;
252 const bool sticky = *hi << (2 * typeWidth - count) | *lo; local
253 *lo = *hi >> (count - typeWidth) | sticky;
256 const bool sticky = *hi | *lo; local
257 *lo = sticky;
H A Dfp_trunc_impl.inc112 // Right shift by the denormalization amount with sticky.
116 const bool sticky = (significand << (srcBits - shift)) != 0;
117 src_rep_t denormalizedSignificand = significand >> shift | sticky;
H A Dfp_add_impl.inc85 // Shift the significands to give us round, guard and sticky, and set the
92 // Shift the significand of b by the difference in exponents, with a sticky
97 const bool sticky = (bSignificand << (typeWidth - align)) != 0;
98 bSignificand = bSignificand >> align | sticky;
100 bSignificand = 1; // Set the sticky bit. b is known to be non-zero.
122 const bool sticky = aSignificand & 1;
123 aSignificand = aSignificand >> 1 | sticky;
136 const bool sticky = (aSignificand << (typeWidth - shift)) != 0;
137 aSignificand = aSignificand >> shift | sticky;
141 // Low three bits are round, guard, and sticky
[all...]
/freebsd-11-stable/tools/sched/
H A Dschedgraph.py241 self.label.grid(row=0, column=0, sticky=E+W)
243 self.list.grid(row=0, column=2, sticky=E+W)
282 self.items.grid(row=0, column=0, sticky=E+W)
284 self.buttons.grid(row=1, column=0, sticky=E+W)
299 item.grid(row=self.irow, column=0, sticky=E+W)
307 self.apply.grid(row=0, column=0, sticky=E+W)
308 self.default.grid(row=0, column=1, sticky=E+W)
339 self.label.grid(row=0, column=0, sticky=E+W)
367 self.iframe.grid(row=0, column=0, sticky=E+W)
371 self.items[0].grid(row=0, column=0, sticky
[all...]
/freebsd-11-stable/contrib/sendmail/src/
H A Dreadcf.c2581 ** sticky -- if set, don't let other setoptions override
3003 setoption(opt, val, safe, sticky, e)
3007 bool sticky;
3131 if (!sticky && bitnset(opt, StickyOpt))
3434 sticky = false;
3493 sticky = false;
3523 inittimeouts(val, sticky);
3525 settimeout(subopt, val, sticky);
3559 settimeout("queuewarn", p, sticky);
3561 settimeout("queuereturn", val, sticky);
[all...]
H A Dmilter.c1549 ** sticky -- if set, don't let other setoptions override
1583 milter_set_option(name, val, sticky)
1586 bool sticky;
1618 if (!sticky && bitnset(mo->mo_code, StickyMilterOpt))
1676 if (sticky)
/freebsd-11-stable/contrib/gcc/
H A Dreal.c175 unsigned long sticky = 0;
181 sticky |= a->sig[i];
187 sticky |= a->sig[ofs] & (((unsigned long)1 << n) - 1);
204 return sticky != 0;
2327 unsigned long sticky;
2418 followed by one sticky bit, followed by stuff. Fold nonzero
2419 stuff into the sticky bit. */
2421 sticky = 0;
2423 sticky |= r->sig[i];
2424 sticky |
173 unsigned long sticky = 0; local
2322 unsigned long sticky; local
[all...]
/freebsd-11-stable/sys/netinet6/
H A Dip6_output.c2613 * Set a particular packet option, as a sticky option or an ancillary data
2614 * item. "len" can be 0 only when it's a sticky option.
2615 * We have 4 cases of combination of "sticky" and "cmsg":
2616 * "sticky=0, cmsg=0": impossible
2617 * "sticky=0, cmsg=1": RFC2292 or RFC3542 ancillary data
2618 * "sticky=1, cmsg=0": RFC3542 socket option
2619 * "sticky=1, cmsg=1": RFC2292 socket option
2623 struct ucred *cred, int sticky, int cmsg, int uproto)
2628 if (!sticky && !cmsg) {
2652 if (sticky
2622 ip6_setpktopt(int optname, u_char *buf, int len, struct ip6_pktopts *opt, struct ucred *cred, int sticky, int cmsg, int uproto) argument
[all...]
/freebsd-11-stable/sys/mips/mips/
H A Dfp.S693 move t8, zero # no shifted bits (sticky reg)
701 li t8, STICKYBIT # set the sticky bit
818 move t8, zero # no shifted bits (sticky reg)
826 li t8, STICKYBIT # set the sticky bit
845 or t8, t8, t9 # save sticky bit
1859 or t8, t8, v0 # include sticky bits
2115 or t8, t8, v0 # include sticky bits
2123 or t8, t8, v0 # include sticky bits
/freebsd-11-stable/contrib/ipfilter/tools/
H A Dipnat_y.y1058 rr frag age sticky mssclamp rdrproxy nattag purge
1076 sticky: | IPNY_STICKY { if (!(nat->in_flags & IPN_ROUNDR) && label
1079 "'sticky' for use with round-robin/IP splitting only\n");
1278 { "sticky", IPNY_STICKY },
/freebsd-11-stable/sys/dev/sound/pci/hda/
H A Dhdaa.c2844 uint32_t data, wake, unsol, sticky; local
2853 sticky = hda_command(dev,
2857 (sticky & (1 << i)) ? " sticky" : "",
2870 uint32_t data, dir, enable, wake, unsol, sticky; local
2883 sticky = hda_command(dev,
2893 (sticky & (1 << i)) ? " sticky" : "",

Completed in 208 milliseconds