Searched refs:cw (Results 1 - 25 of 45) sorted by relevance

12

/illumos-gate/usr/src/lib/libc/amd64/fp/
H A Dfpgetround.c42 struct _cw87 cw; local
44 _getcw(&cw);
45 return ((fp_rnd)cw.rnd);
H A Dfpgetmask.c42 struct _cw87 cw; local
44 _getcw(&cw);
45 return (fp_except)(~cw.mask & EXCPMASK);
H A Dfpsetmask.c44 struct _cw87 cw; local
48 _getcw(&cw);
49 oldmask = (fp_except)(~cw.mask & EXCPMASK);
50 cw.mask = ~((unsigned)newmask) & EXCPMASK;
51 _putcw(cw);
H A Dfpsetround.c44 struct _cw87 cw; local
49 _getcw(&cw);
50 oldrnd = (fp_rnd)cw.rnd;
51 cw.rnd = newrnd;
52 _putcw(cw);
H A D_xtoll.s30 .set cw,0
43 movw %ax,cw(%rsp)
44 fldcw cw(%rsp)
47 fstcw cw(%rsp) /* fetch CW in case masks changed */
48 movw cw(%rsp),%ax
51 movw %ax,cw(%rsp)
52 fldcw cw(%rsp)
67 movw %ax,cw(%rsp)
68 fldcw cw(%rsp)
71 fstcw cw(
[all...]
H A D_xtoull.s30 .set cw,0
43 movw %ax,cw(%rsp)
44 fldcw cw(%rsp)
59 fstcw cw(%rsp) /* fetch CW in case masks changed */
60 movw cw(%rsp),%dx
63 movw %dx,cw(%rsp)
64 fldcw cw(%rsp)
/illumos-gate/usr/src/lib/libc/i386/fp/
H A Dfpgetround.c42 struct _cw87 cw; local
44 _getcw(&cw);
45 return ((fp_rnd)cw.rnd);
H A Dieee.c37 int cw; local
39 _getcw(&cw);
40 b->mode = cw;
48 cw = (cw & ~0xf3f) | 0x23f;
49 _putcw(cw);
H A Dfpgetmask.c42 struct _cw87 cw; local
44 _getcw(&cw);
45 return (fp_except)(~cw.mask & EXCPMASK);
H A Dfpsetmask.c45 struct _cw87 cw; local
49 _getcw(&cw);
50 oldmask = (fp_except)(~cw.mask & EXCPMASK);
51 cw.mask = ~((unsigned)newmask) & EXCPMASK;
52 _putcw(cw);
H A Dfpsetround.c45 struct _cw87 cw; local
61 _getcw(&cw);
62 oldrnd = (fp_rnd)cw.rnd;
63 cw.rnd = newrnd;
64 _putcw(cw);
H A D_xtoll.s30 .set cw,0
44 movw %ax,cw(%esp)
45 fldcw cw(%esp)
48 fstcw cw(%esp) // fetch CW in case masks changed value
49 movw cw(%esp),%ax
52 movw %ax,cw(%esp)
53 fldcw cw(%esp)
68 movw %ax,cw(%esp)
69 fldcw cw(%esp)
72 fstcw cw(
[all...]
H A D_xtoull.s30 .set cw,0
45 movw %ax,cw(%esp)
46 fldcw cw(%esp)
64 fstcw cw(%esp) // fetch CW in case masks changed value
65 movw cw(%esp),%ax
68 movw %ax,cw(%esp)
69 fldcw cw(%esp)
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dcombined.c127 combined_walk_append(combined_walk_data_t *cwd, combined_walk_t *cw) argument
130 cwd->cwd_current_walk = cwd->cwd_final_walk = cw;
132 cwd->cwd_final_walk->cw_next = cw;
133 cwd->cwd_final_walk = cw;
140 combined_walk_t *cw = cwd->cwd_current_walk; local
141 if (cw == NULL) {
144 if (cw == cwd->cwd_final_walk) {
145 cwd->cwd_final_walk = cw->cw_next;
147 cwd->cwd_current_walk = cw->cw_next;
148 cw
159 combined_walk_t *cw; local
177 combined_walk_t *cw = cwd->cwd_current_walk; local
221 combined_walk_t *cw; local
[all...]
/illumos-gate/usr/src/lib/libm/amd64/src/
H A Dlibm_inlines.h82 uint16_t cw; local
84 __asm__ __volatile__("fstcw %0\n\t" : "=m" (cw));
86 ret = (cw >> 8) & 0x3;
87 cw = (cw & 0xfcff) | ((i & 0x3) << 8);
89 __asm__ __volatile__("fldcw %0\n\t" : : "m" (cw));
104 uint16_t cw; local
106 __asm__ __volatile__("fstcw %0\n\t" : "=m" (cw));
108 ret = (cw >> 10) & 0x3;
109 cw
[all...]
/illumos-gate/usr/src/lib/libm/i386/src/
H A Dlibm_inlines.h99 uint16_t cw; local
101 __asm__ __volatile__("fstcw %0\n\t" : "=m" (cw));
103 ret = (cw >> 8) & 0x3;
104 cw = (cw & 0xfcff) | ((i & 0x3) << 8);
106 __asm__ __volatile__("fldcw %0\n\t" : : "m" (cw));
121 uint16_t cw; local
123 __asm__ __volatile__("fstcw %0\n\t" : "=m" (cw));
125 ret = (cw >> 10) & 0x3;
126 cw
[all...]
/illumos-gate/usr/src/cmd/mdb/intel/mdb/
H A Dproc_ia32dep.c221 fpcw2str(uint32_t cw, char *buf, size_t nbytes) argument
231 if (cw & FPIM)
233 if (cw & FPDM)
235 if (cw & FPZM)
237 if (cw & FPOM)
239 if (cw & FPUM)
241 if (cw & FPPM)
243 if (cw & FPPC)
245 if (cw & FPRC)
247 if (cw
285 fpsw2str(uint32_t cw, char *buf, size_t nbytes) argument
[all...]
H A Dproc_amd64dep.c280 fpcw2str(uint32_t cw, char *buf, size_t nbytes) argument
290 if (cw & FPIM)
292 if (cw & FPDM)
294 if (cw & FPZM)
296 if (cw & FPOM)
298 if (cw & FPUM)
300 if (cw & FPPM)
302 if (cw & FPPC)
304 if (cw & FPRC)
306 if (cw
344 fpsw2str(uint32_t cw, char *buf, size_t nbytes) argument
[all...]
/illumos-gate/usr/src/cmd/krb5/kwarn/
H A Dkwarnd_proc.c114 cred_warning_list_t *cw; local
117 for (cw = cred_warning_list; cw != NULL; cw = cw->next) {
118 if (strcmp(warn_name, cw->warn_name) != 0)
120 return (cw);
871 cred_warning_list_t *cw; /* cred warning */ local
882 printf("check list: start: uid=%d, cw list=%p\n",
888 for (cw
[all...]
/illumos-gate/usr/src/tools/cw/
H A DMakefile26 PROG = cw
28 MAN1ONBLDFILES= cw.1onbld
32 # Bootstrap problem -- we have to build cw before we can use it
40 # Override CFLAGS. This is needed only for bootstrap of cw.
/illumos-gate/usr/src/cmd/fm/modules/sun4v/generic-mem/
H A Dgmem_memerr.c414 int cw; local
416 for (cw = 0; cw < GMEM_MAX_CKWDS; cw++) {
417 for (ip = gmem_list_next(&dimm->mq_root[cw]);
556 int cw = (int)ckwd; local
558 for (ip = gmem_list_next(&dimm->mq_root[cw]); ip != NULL; ) {
565 * Found a duplicate cw, unit_position, and afar.
577 jp = mq_create(hdl, ep, afar, unit_position, cw, now);
579 gmem_list_append(&dimm->mq_root[cw], j
593 int cw; local
630 int upos_pairs, curr_upos, cw, i, j; local
715 uint16_t symbol_pos, cw; local
[all...]
/illumos-gate/usr/src/lib/efcode/engine/
H A Denv.c394 fmt_args(fcode_env_t *env, int cw, int fw, char format, long *arg, argument
432 if (cw) {
445 if (ndigits > cw) {
446 cbuf[cw] = 0;
450 str[cw] = 0;
463 if (cw) {
498 if (ndigits > cw) {
499 cbuf[cw] = 0;
534 int l, cw, fw, bytes; local
547 cw
[all...]
/illumos-gate/usr/src/cmd/fgrep/
H A Dfgrep.c65 cw = ISASCII(lc = (unsigned char)*p++) ? 1 : \
68 if (--cw > --ccount) { \
69 cw -= ccount; \
99 ccount -= cw; \
100 while (cw--) \
308 int cw; local
486 int cw; local
494 cw = ISASCII(c = (wchar_t)b) ? 1 :
496 while (--cw) {
508 cw
[all...]
/illumos-gate/usr/src/common/mapfiles/gen/
H A DMakefile77 $(MACH)_gcc_map.noexeglobs := CC = $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
79 $(MACH64)_gcc_map.noexeglobs := CC = $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
/illumos-gate/usr/src/cmd/fm/modules/sun4/cpumem-diagnosis/
H A Dcmd_memerr.c268 int cw; local
270 for (cw = 0; cw < CMD_MAX_CKWDS; cw++) {
271 for (ip = cmd_list_next(&dimm->mq_root[cw]);
412 int cw, unit_position; local
414 cw = (afar & 0x30) >> 4; /* 0:3 */
418 for (ip = cmd_list_next(&dimm->mq_root[cw]); ip != NULL; ) {
425 * Found a duplicate cw, unit_position, and afar.
437 cmd_list_append(&dimm->mq_root[cw], j
451 int cw; local
488 int upos_pairs, curr_upos, cw, i, j; local
[all...]

Completed in 117 milliseconds

12